/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | CallingConvLower.h | 277 bool isAllocated(MCRegister Reg) const { in isAllocated() function 338 if (!isAllocated(Regs[i])) in getFirstUnallocated() 344 assert(isAllocated(Reg) && "Trying to deallocate an unallocated register"); in DeallocateReg() 352 if (isAllocated(Reg)) in AllocateReg() 360 if (isAllocated(Reg)) in AllocateReg() 393 if (isAllocated(Regs[StartIdx + BlockIdx])) { in AllocateRegBlock()
|
/external/llvm/include/llvm/CodeGen/ |
D | CallingConvLower.h | 290 bool isAllocated(unsigned Reg) const { in isAllocated() function 334 if (!isAllocated(Regs[i])) in getFirstUnallocated() 343 if (isAllocated(Reg)) return 0; in AllocateReg() 350 if (isAllocated(Reg)) return 0; in AllocateReg() 382 if (isAllocated(Regs[StartIdx + BlockIdx])) { in AllocateRegBlock()
|
/external/clang/include/clang/StaticAnalyzer/Checkers/ |
D | ObjCRetainCount.h | 182 static RetEffect MakeOwned(ObjKind o, bool isAllocated = false) { 183 return RetEffect(isAllocated ? OwnedAllocatedSymbol : OwnedSymbol, o);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | CallingConvLower.h | 285 bool isAllocated(unsigned Reg) const { in isAllocated() function 346 if (!isAllocated(Regs[i])) in getFirstUnallocated() 355 if (isAllocated(Reg)) return 0; in AllocateReg() 362 if (isAllocated(Reg)) return 0; in AllocateReg() 394 if (isAllocated(Regs[StartIdx + BlockIdx])) { in AllocateRegBlock()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86CallingConv.cpp | 41 if (!State.isAllocated(Reg)) in CC_X86_32_RegCall_Assign2Regs() 103 if (!State.isAllocated(Reg)) { in CC_X86_VectorCallAssignRegister() 147 if (State.isAllocated(X86::R9)) { in CC_X86_64_VectorCall()
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86CallingConv.cpp | 41 if (!State.isAllocated(Reg)) in CC_X86_32_RegCall_Assign2Regs() 103 if (!State.isAllocated(Reg)) { in CC_X86_VectorCallAssignRegister() 147 if (State.isAllocated(X86::R9)) { in CC_X86_64_VectorCall()
|
/external/scudo/standalone/ |
D | release.h | 89 if (!isAllocated()) in ~PackedCounterArray() 98 bool isAllocated() const { return !!Buffer; } in isAllocated() function 232 if (!Counters.isAllocated()) in releaseFreeMemoryToOS()
|
/external/llvm-project/compiler-rt/lib/scudo/standalone/ |
D | release.h | 86 if (!isAllocated()) in ~PackedCounterArray() 94 bool isAllocated() const { return !!Buffer; } in isAllocated() function 226 if (!Counters.isAllocated()) in releaseFreeMemoryToOS()
|
/external/jsoncpp/src/lib_json/ |
D | json_value.cpp | 513 decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, in operator <() 515 decodePrefixedString(other.isAllocated(), other.value_.string_, &other_len, in operator <() 568 decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, in operator ==() 570 decodePrefixedString(other.isAllocated(), other.value_.string_, &other_len, in operator ==() 597 decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, in asCString() 610 decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, in getCStringLength() 622 decodePrefixedString(this->isAllocated(), this->value_.string_, &length, in getString() 637 decodePrefixedString(this->isAllocated(), this->value_.string_, &this_len, in asString() 987 if (other.value_.string_ && other.isAllocated()) { in dupPayload() 990 decodePrefixedString(other.isAllocated(), other.value_.string_, &len, in dupPayload() [all …]
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/ |
D | Asset.java | 140 abstract boolean isAllocated(); // { return false; } in isAllocated() method in Asset 312 if (cur.isAllocated()) { in getAssetAllocations() 608 boolean isAllocated() { return mBuf != null; } in isAllocated() method in Asset._FileAsset 1098 boolean isAllocated() { return mBuf != null; } in isAllocated() method in Asset._CompressedAsset
|
/external/antlr/runtime/C/src/ |
D | antlr3filestream.c | 383 input->isAllocated = ANTLR3_TRUE; in antlr3read8Bit() 466 input->isAllocated = ANTLR3_FALSE; in antlr3CreateStringStream()
|
D | antlr3inputstream.c | 222 if (input->isAllocated && input->data != NULL) in antlr3InputClose() 290 input->isAllocated = ANTLR3_FALSE; in antlr38BitReuse()
|
/external/antlr/runtime/C/include/ |
D | antlr3input.h | 77 int isAllocated; member
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3input.hpp | 157 void set_isAllocated( bool isAllocated );
|
D | antlr3input.inl | 198 ANTLR_INLINE void InputStream<ImplTraits>::set_isAllocated( bool isAllocated ) argument 200 m_isAllocated = isAllocated;
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | MallocChecker.cpp | 77 bool isAllocated() const { return K == Allocated; } in isAllocated() function in __anond5670e240111::RefState 427 inline bool isAllocated(const RefState *S, const RefState *SPrev, in isAllocated() function in __anond5670e240111::MallocChecker::MallocBugVisitor 431 (S && (S->isAllocated() || S->isAllocatedOfSizeZero())) && in isAllocated() 432 (!SPrev || !(SPrev->isAllocated() || in isAllocated() 459 (S && (S->isAllocated() || S->isAllocatedOfSizeZero())) && in isReallocFailedCheck() 460 (SPrev && !(SPrev->isAllocated() || in isReallocFailedCheck() 907 if (RS->isAllocated()) in ProcessZeroAllocation() 1406 } else if (RsBase->isAllocated() || RsBase->isAllocatedOfSizeZero() || in FreeMemAux() 1432 ReleasedAllocated = (RsBase != nullptr) && (RsBase->isAllocated() || in FreeMemAux() 2139 if (I->second.isAllocated() || I->second.isAllocatedOfSizeZero()) in checkDeadSymbols() [all …]
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | FuchsiaHandleChecker.cpp | 113 bool isAllocated() const { return K == Kind::Allocated; } in isAllocated() function in __anonab3099690111::HandleState 220 if (HState && (HState->isAllocated() || HState->maybeAllocated())) in REGISTER_MAP_WITH_PROGRAMSTATE() 463 if (CurItem.second.isAllocated() || CurItem.second.maybeAllocated()) in checkDeadSymbols()
|
D | MallocChecker.cpp | 154 bool isAllocated() const { return K == Allocated; } in isAllocated() function in __anon59cbc8120211::RefState 772 static inline bool isAllocated(const RefState *RSCurr, const RefState *RSPrev, in isAllocated() function in __anon59cbc8120411::MallocBugVisitor 776 (RSCurr->isAllocated() || RSCurr->isAllocatedOfSizeZero())) && in isAllocated() 778 !(RSPrev->isAllocated() || RSPrev->isAllocatedOfSizeZero()))); in isAllocated() 812 (RSCurr->isAllocated() || RSCurr->isAllocatedOfSizeZero())) && in hasReallocFailed() 814 !(RSPrev->isAllocated() || RSPrev->isAllocatedOfSizeZero()))); in hasReallocFailed() 1346 if (RS->isAllocated()) in ProcessZeroAllocCheck() 1848 RsBase && (RsBase->isAllocated() || RsBase->isAllocatedOfSizeZero()); in FreeMemAux() 1867 } else if (RsBase->isAllocated() || RsBase->isAllocatedOfSizeZero() || in FreeMemAux() 2659 if (I->second.isAllocated() || I->second.isAllocatedOfSizeZero()) in checkDeadSymbols() [all …]
|
/external/llvm-project/llvm/lib/Target/AArch64/ |
D | AArch64CallingConvention.cpp | 64 RegsAllocated[I] = State.isAllocated(ZRegList[I]); in finishStackBlock()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | CallingConvLower.cpp | 68 if (!isAllocated(Reg)) in IsShadowAllocatedReg()
|
/external/icu/libicu/cts_headers/ |
D | utrie.h | 564 UBool isAllocated, isDataAllocated; member
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | CallingConvLower.cpp | 72 if (!isAllocated(Reg)) in IsShadowAllocatedReg()
|
/external/icu/icu4c/source/common/ |
D | utrie.h | 564 UBool isAllocated, isDataAllocated; member
|
D | utrie.cpp | 71 trie->isAllocated= (UBool)(fillIn==NULL); in utrie_open() 159 if(trie->isAllocated) { in utrie_close()
|
/external/jsoncpp/include/json/ |
D | value.h | 598 bool isAllocated() const { return bits_.allocated_; } in isAllocated() function
|