HomeSort by relevance Sort by last modified time
    Searched defs:grow (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/llvm/lib/Support/
IntEqClasses.cpp 25 void IntEqClasses::grow(unsigned N) { function in class:IntEqClasses
26 assert(NumClasses == 0 && "grow() called after compress().");
  /external/swiftshader/third_party/LLVM/lib/Support/
IntEqClasses.cpp 25 void IntEqClasses::grow(unsigned N) { function in class:IntEqClasses
26 assert(NumClasses == 0 && "grow() called after compress().");
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
IntEqClasses.cpp 25 void IntEqClasses::grow(unsigned N) { function in class:IntEqClasses
26 assert(NumClasses == 0 && "grow() called after compress().");
  /external/skia/src/core/
SkRecord.cpp 19 void SkRecord::grow() { function in class:SkRecord
  /external/skqp/src/core/
SkRecord.cpp 19 void SkRecord::grow() { function in class:SkRecord
  /external/clang/lib/Sema/
TypeLocBuilder.cpp 45 void TypeLocBuilder::grow(size_t NewCapacity) { function in class:TypeLocBuilder
73 // If we need to grow, grow by a factor of 2.
79 grow(NewCapacity);
  /external/llvm/include/llvm/ADT/
IndexedMap.h 14 // map. A member function grow() is provided that given the value of
34 // can grow very large and SmallVector grows more efficiently as long as T
68 void grow(IndexT n) { function in class:llvm::IndexedMap
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
IndexedMap.h 14 // map. A member function grow() is provided that given the value of
33 // can grow very large and SmallVector grows more efficiently as long as T
68 void grow(IndexT n) { function in class:llvm::IndexedMap
  /device/google/contexthub/lib/nanohub/
nanoapp.c 72 uint32_t len = 0, grow = 16384, total = 0; local
81 len += grow; dst = reallocOrDie(dst, len);
83 block = fread(dst + total, 1, grow, f);
85 } while (block == grow);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
IndexedMap.h 14 // map. A member function grow() is provided that given the value of
70 void grow(IndexT n) { function in class:llvm::IndexedMap
  /external/antlr/runtime/C/include/
antlr3bitset.h 98 void (*grow) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_INT32 newSize); member in struct:ANTLR3_BITSET_struct
  /external/antlr/tool/src/main/java/org/antlr/misc/
IntArrayList.java 61 grow(); method
75 protected void grow() { method in class:IntArrayList
  /external/apache-xml/src/main/java/org/apache/xml/utils/
BoolStack.java 92 grow(); method
184 private void grow() method in class:BoolStack
  /external/icu/icu4c/source/layoutex/
RunArrays.cpp 45 grow(fCapacity);
57 void RunArray::grow(le_int32 newCapacity) function in class:RunArray
100 void FontRuns::grow(le_int32 capacity) function in class:FontRuns
102 RunArray::grow(capacity);
152 void LocaleRuns::grow(le_int32 capacity) function in class:LocaleRuns
154 RunArray::grow(capacity);
204 void ValueRuns::grow(le_int32 capacity) function in class:ValueRuns
206 RunArray::grow(capacity);
  /external/libchrome/mojo/public/js/lib/
buffer.js 37 this.grow(newSize);
46 Buffer.prototype.grow = function(size) { method in class:Buffer
  /external/libdrm/etnaviv/
etnaviv_cmd_stream.c 34 static void *grow(void *ptr, uint32_t nr, uint32_t *max, uint32_t sz) function
48 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \
  /external/v8/src/builtins/
growable-fixed-array-gen.cc 16 Label grow(this), store(this);
17 Branch(IntPtrEqual(capacity, length), &grow, &store); local
19 BIND(&grow);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DictionaryBreakEngine.java 112 private void grow() { method in class:DictionaryBreakEngine.DequeI
127 grow(); method
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DictionaryBreakEngine.java 111 private void grow() { method in class:DictionaryBreakEngine.DequeI
126 grow(); method
  /external/libcxxabi/src/demangle/
Utility.h 32 void grow(size_t N) { function in class:__anon27996::OutputStream
83 grow(Size);
90 grow(1);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
VirtRegMap.cpp 87 grow();
92 void VirtRegMap::grow() { function in class:VirtRegMap
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Demangle/
Utility.h 31 void grow(size_t N) { function in class:OutputStream
98 grow(Size);
105 grow(1);
  /external/syzkaller/vendor/golang.org/x/text/transform/
transform.go 548 // grow returns a new []byte that is longer than b, and copies the first n bytes
550 func grow(b []byte, n int) []byte { func
655 // If we got ErrShortDst or ErrShortSrc, do not grow as long as we can
659 dst = grow(dst, pDst)
663 src = grow(src, 0)
699 // Grow the destination buffer, but do not grow as long as we can make
702 dst = grow(dst, pDst)
  /device/google/contexthub/util/nanoapp_sign/
nanoapp_sign.c 328 uint32_t grow = sizeof(*secHdr); local
331 buf = reallocOrDie(buf, bufUsed + grow);
338 memmove((uint8_t*)&image[1] + grow, &image[1], bufUsed - sizeof(*image));
340 bufUsed += grow;
  /external/antlr/runtime/C/src/
antlr3bitset.c 56 static void grow (pANTLR3_BITSET bitset, ANTLR3_INT32 newSize);
128 bitset->grow = grow;
282 bitset->grow(bitset, count+1);
394 grow(pANTLR3_BITSET bitset, ANTLR3_INT32 newSize) function
430 bitset->grow(bitset, bl);
434 bitset->grow(bitset, nw);

Completed in 2387 milliseconds

1 2 3