HomeSort by relevance Sort by last modified time
    Searched defs:isAllocated (Results 1 - 8 of 8) sorted by null

  /external/antlr/runtime/C/include/
antlr3input.h 77 int isAllocated;
  /device/generic/goldfish-opengl/android-emu/android/base/containers/
SmallVector.h 153 bool isAllocated() const { return this->cbegin() != smallBufferStart(); }
164 if (isAllocated()) {
326 if (other.isAllocated()) {
351 if (other.isAllocated()) {
361 if (this->isAllocated() && this->mCapacity < other.size()) {
  /external/icu/icu4c/source/common/
utrie.h 563 UBool isAllocated, isDataAllocated;
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
CallingConvLower.h 188 /// isAllocated - Return true if the specified register (or an alias) is
190 bool isAllocated(unsigned Reg) const {
234 if (!isAllocated(Regs[i]))
243 if (isAllocated(Reg)) return 0;
250 if (isAllocated(Reg)) return 0;
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 288 /// isAllocated - Return true if the specified register (or an alias) is
290 bool isAllocated(unsigned Reg) const {
334 if (!isAllocated(Regs[i]))
343 if (isAllocated(Reg)) return 0;
350 if (isAllocated(Reg)) return 0;
382 if (isAllocated(Regs[StartIdx + BlockIdx])) {
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
Asset.java 140 abstract boolean isAllocated(); // { return false; }
312 if (cur.isAllocated()) {
608 boolean isAllocated() { return mBuf != null; }
1098 boolean isAllocated() { return mBuf != null; }
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
CallingConvLower.h 282 /// isAllocated - Return true if the specified register (or an alias) is
284 bool isAllocated(unsigned Reg) const {
345 if (!isAllocated(Regs[i]))
354 if (isAllocated(Reg)) return 0;
361 if (isAllocated(Reg)) return 0;
393 if (isAllocated(Regs[StartIdx + BlockIdx])) {
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp 77 bool isAllocated() const { return K == Allocated; }
427 inline bool isAllocated(const RefState *S, const RefState *SPrev,
431 (S && (S->isAllocated() || S->isAllocatedOfSizeZero())) &&
432 (!SPrev || !(SPrev->isAllocated() ||
459 (S && (S->isAllocated() || S->isAllocatedOfSizeZero())) &&
460 (SPrev && !(SPrev->isAllocated() ||
    [all...]

Completed in 475 milliseconds