Home
last modified time | relevance | path

Searched refs:mBase (Results 1 – 18 of 18) sorted by relevance

/system/core/libpixelflinger/codeflinger/
DCodeCache.cpp108 mBase = (uint32_t*)mspace_malloc(getMspace(), size); in Assembly()
109 LOG_ALWAYS_FATAL_IF(mBase == NULL, in Assembly()
117 mspace_free(getMspace(), mBase); in ~Assembly()
134 if (!mBase) return NO_MEMORY; in size()
140 return mBase; in base()
145 mBase = (uint32_t*)mspace_realloc(getMspace(), mBase, newSize); in resize()
146 LOG_ALWAYS_FATAL_IF(mBase == NULL, in resize()
DCodeCache.h74 uint32_t* mBase; variable
DArm64Assembler.cpp169 mBase = mPC = (uint32_t *)assembly->base(); in ArmToArm64Assembler()
180 mBase = mPC = (uint32_t *)base; in ArmToArm64Assembler()
200 return mBase; in base()
206 mPC = mBase; in reset()
208 mBase = mPC = (uint32_t *)mAssembly->base(); in reset()
DARMAssembler.cpp45 mBase = mPC = (uint32_t *)assembly->base(); in ARMAssembler()
60 return mBase; in base()
65 mBase = mPC = (uint32_t *)mAssembly->base(); in reset()
DARMAssembler.h166 uint32_t* mBase; variable
DMIPSAssembler.cpp1261 mBase = mPC = (uint32_t *)assembly->base(); in MIPSAssembler()
1268 mBase = mPC = (uint32_t *)assembly; in MIPSAssembler()
1283 return mBase; in base()
1288 mBase = mPC = (uint32_t *)mAssembly->base(); in reset()
DArm64Assembler.h246 uint32_t* mBase; variable
DMIPSAssembler.h409 uint32_t* mBase; variable
DMIPS64Assembler.cpp1319 mBase = mPC = (uint32_t *)mAssembly->base(); in reset()
1321 mPC = mBase = base(); in reset()
/system/chre/util/include/chre/util/
Darray_queue.h178 : mPointer(pointer), mBase(base), mTail(tail) {} in ArrayQueueIterator()
197 if (mPointer == (mBase + mTail)) {
199 mPointer = mBase + kCapacity;
200 } else if (mPointer == (mBase + kCapacity - 1)) {
202 mPointer = mBase;
220 ValueType *mBase; variable
/system/core/libutils/
DRefBase.cpp153 RefBase* const mBase; member in android::RefBase::weakref_impl
161 , mBase(base) in weakref_impl()
180 , mBase(base) in weakref_impl()
279 mBase, this); in printRefs()
284 mBase, this); in printRefs()
353 id, mBase, this); in removeRef()
429 refs->mBase->onFirstRef(); in incStrong()
444 refs->mBase->onLastStrongRef(id); in decStrong()
486 refs->mBase->onFirstRef(); in forceIncStrong()
498 return static_cast<const weakref_impl*>(this)->mBase; in refBase()
[all …]
/system/libhidl/transport/token/1.0/utils/include/hidl/
DHybridInterface.h202 H2BConverter(const sp<HalInterface>& base) : mBase{base} {} in H2BConverter()
214 virtual HalVariant getHalVariant() const override { return { mBase }; } in getHalVariant()
215 HalInterface* getBase() { return mBase.get(); } in getBase()
218 sp<HalInterface> mBase;
283 BaseInterface* getBase() { return mBase.get(); } in getBase()
289 sp<BaseInterface> mBase; variable
328 mBase = converter; in _castFromHalBaseAndConvert()
431 result = createHalToken(mBase, &token); in onTransact()
464 if (!mBase->linkToDeath(mObituaries.back(), 0)) { in linkToDeath()
485 bool success = mBase->unlinkToDeath(*i); in unlinkToDeath()
[all …]
/system/incremental_delivery/incfs/include/
DMountRegistry.h56 Mount(std::vector<Root>::const_iterator base) : mBase(base) {} in Mount()
58 std::string_view root() const { return mBase->path; } in root()
59 std::string_view backingDir() const { return mBase->backing; } in backingDir()
63 std::vector<Root>::const_iterator mBase;
/system/netd/libnetdutils/include/netdutils/
DSlice.h45 Slice(void* base, void* limit) : mBase(toUint8(base)), mLimit(toUint8(limit)) {} in Slice()
51 uint8_t* base() const { return mBase; } in base()
65 uint8_t* mBase = nullptr; variable
/system/libhidl/transport/
DHidlBinderSupport.cpp38 mRecipient(recipient), mCookie(cookie), mBase(base) { in hidl_binder_death_recipient()
43 if (recipient != nullptr && mBase != nullptr) { in binderDied()
44 recipient->serviceDied(mCookie, mBase); in binderDied()
46 mBase = nullptr; in binderDied()
/system/libhidl/base/include/hidl/
DHidlSupport.h637 : mBase(base) {
642 &mBase[index * product<SIZES...>::value]);
653 T *mBase;
662 : mBase(base) {
666 return mBase[index];
677 T *mBase;
686 : mBase(base) {
691 &mBase[index * product<SIZES...>::value]);
703 const T *mBase;
712 : mBase(base) {
[all …]
/system/incremental_delivery/incfs/
DMountRegistry.cpp70 result.reserve(mBase->binds.size()); in binds()
71 for (auto it : mBase->binds) { in binds()
/system/libhidl/transport/include/hidl/
DHidlBinderSupport.h48 wp<::android::hidl::base::V1_0::IBase> mBase; member