Searched refs:mBase (Results 1 – 9 of 9) sorted by relevance
/system/core/libpixelflinger/codeflinger/ |
D | CodeCache.cpp | 106 mBase = (uint32_t*)mspace_malloc(getMspace(), size); in Assembly() 107 LOG_ALWAYS_FATAL_IF(mBase == NULL, in Assembly() 115 mspace_free(getMspace(), mBase); in ~Assembly() 132 if (!mBase) return NO_MEMORY; in size() 138 return mBase; in base() 143 mBase = (uint32_t*)mspace_realloc(getMspace(), mBase, newSize); in resize() 144 LOG_ALWAYS_FATAL_IF(mBase == NULL, in resize()
|
D | CodeCache.h | 73 uint32_t* mBase; variable
|
D | Arm64Assembler.cpp | 170 mBase = mPC = (uint32_t *)assembly->base(); in ArmToArm64Assembler() 181 mBase = mPC = (uint32_t *)base; in ArmToArm64Assembler() 201 return mBase; in base() 207 mPC = mBase; in reset() 209 mBase = mPC = (uint32_t *)mAssembly->base(); in reset()
|
D | ARMAssembler.cpp | 49 mBase = mPC = (uint32_t *)assembly->base(); in ARMAssembler() 67 return mBase; in base() 72 mBase = mPC = (uint32_t *)mAssembly->base(); in reset()
|
D | ARMAssembler.h | 166 uint32_t* mBase; variable
|
D | Arm64Assembler.h | 246 uint32_t* mBase; variable
|
D | MIPSAssembler.cpp | 1255 mBase = mPC = (uint32_t *)assembly->base(); in MIPSAssembler() 1271 return mBase; in base() 1276 mBase = mPC = (uint32_t *)mAssembly->base(); in reset()
|
D | MIPSAssembler.h | 408 uint32_t* mBase; variable
|
/system/core/libutils/ |
D | RefBase.cpp | 69 RefBase* const mBase; member in android::RefBase::weakref_impl 77 , mBase(base) in weakref_impl() 96 , mBase(base) in weakref_impl() 193 sprintf(buf, "Strong references on RefBase %p (weakref_type %p):\n", mBase, this); in printRefs() 196 sprintf(buf, "Weak references on RefBase %p (weakref_type %p):\n", mBase, this); in printRefs() 264 id, mBase, this); in removeRef() 338 refs->mBase->onFirstRef(); in incStrong() 351 refs->mBase->onLastStrongRef(id); in decStrong() 377 refs->mBase->onFirstRef(); in forceIncStrong() 388 return static_cast<const weakref_impl*>(this)->mBase; in refBase() [all …]
|