HomeSort by relevance Sort by last modified time
    Searched defs:grow (Results 1 - 25 of 51) 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().");
  /ndk/tests/device/test-stlport_shared-exception/jni/
p11667.cpp 19 void grow(int n) { function in class:LIST
53 mylist.grow(20);
  /ndk/tests/device/test-stlport_static-exception/jni/
p11667.cpp 19 void grow(int n) { function in class:LIST
53 mylist.grow(20);
  /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
65 void grow(IndexT n) { function in class:llvm::IndexedMap
  /external/valgrind/main/none/tests/
thread-exits.c 13 grow the stack. If we don't get the siginfo, then it just looks
19 attempts to grow the stack once all the threads have been created
47 static void grow(int depth) function
54 grow(depth-1);
115 grow(10);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3bitset.h 98 void (*grow) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_INT32 newSize); member in struct:ANTLR3_BITSET_struct
  /external/antlr/antlr-3.4/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/icu4c/layoutex/
RunArrays.cpp 43 grow(fCapacity);
55 void RunArray::grow(le_int32 newCapacity) function in class:RunArray
98 void FontRuns::grow(le_int32 capacity) function in class:FontRuns
100 RunArray::grow(capacity);
150 void LocaleRuns::grow(le_int32 capacity) function in class:LocaleRuns
152 RunArray::grow(capacity);
202 void ValueRuns::grow(le_int32 capacity) function in class:ValueRuns
204 RunArray::grow(capacity);
plruns.cpp 269 * <code>RunArray::add(limit)</code> which will create or grow the arrays as needed.
276 * The new <code>add</code> method should first call this method to grow the font and limit indices
306 virtual void grow(le_int32 capacity);
377 void ULocRuns::grow(le_int32 capacity) function in class:ULocRuns
379 LocaleRuns::grow(capacity);
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
BufferPool.java 43 return grow(mBuffers[mAvailable], needed);
67 public ByteBuffer grow(ByteBuffer buffer, int needed) { method in class:BufferPool
  /external/llvm/lib/CodeGen/
VirtRegMap.cpp 62 grow();
66 void VirtRegMap::grow() { function in class:VirtRegMap
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3bitset.c 56 static void grow (pANTLR3_BITSET bitset, ANTLR3_INT32 newSize);
129 bitset->grow = grow;
283 bitset->grow(bitset, count+1);
395 grow(pANTLR3_BITSET bitset, ANTLR3_INT32 newSize) function
431 bitset->grow(bitset, bl);
435 bitset->grow(bitset, nw);
  /external/chromium/third_party/libevent/
evport.c 46 * Helper functions are used: grow() grows the file descriptor array as
82 * grow the array of file descriptors, doubling its size.
235 grow(struct evport_data *epdp, int factor) function
415 * If necessary, grow the file descriptor info table
423 if (-1 == grow(evpd, factor)) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
RuleSet.cpp 140 void grow(size_t count) function in class:WebCore::__anon10632::TerminatedArrayBuilder
426 builder.grow(pendingRules->size());
  /external/chromium_org/third_party/libevent/
evport.c 46 * Helper functions are used: grow() grows the file descriptor array as
82 * grow the array of file descriptors, doubling its size.
235 grow(struct evport_data *epdp, int factor) function
415 * If necessary, grow the file descriptor info table
423 if (-1 == grow(evpd, factor)) {
  /external/clang/include/clang/AST/
ASTVector.h 165 grow(C);
171 grow(C, N);
187 // Grow allocated space if needed.
189 this->grow(C, this->size()+NumInputs);
201 // Grow allocated space if needed.
203 this->grow(C, this->size()+NumInputs);
233 this->grow(C);
344 this->grow(C, N);
351 /// grow - double the size of the allocated memory, guaranteeing space for at
353 void grow(ASTContext &C, size_type MinSize = 1)
373 void ASTVector<T>::grow(ASTContext &C, size_t MinSize) { function in class:clang::ASTVector
    [all...]
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 156 grow(C);
173 grow(C, size() + Cnt);
180 grow(C, N);
188 /// grow - double the size of the allocated memory, guaranteeing space for at
190 void grow(BumpVectorContext &C, size_type MinSize = 1);
215 void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) { function in class:clang::BumpVector
  /external/v8/src/
string-stream.cc 58 // reaching a difference of 2 we need to grow the buffer.
61 char* new_buffer = allocator_->grow(&new_capacity);
563 char* HeapStringAllocator::grow(unsigned* bytes) { function in class:v8::HeapStringAllocator
581 // Only grow once to the maximum allowable size.
582 char* NoAllocationStringAllocator::grow(unsigned* bytes) { function in class:v8::NoAllocationStringAllocator
store-buffer.cc 173 size_t grow = old_limit_ - old_start_; // Double size. local
175 grow * kPointerSize,
177 old_limit_ += grow;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 239 * Grow the Quad outwards by the specified factor.
248 public Quad grow(float factor) { method in class:Quad
  /external/chromium_org/v8/src/
store-buffer.cc 154 size_t grow = old_limit_ - old_start_; // Double size. local
156 grow * kPointerSize,
158 old_limit_ += grow;
string-stream.cc 56 // reaching a difference of 2 we need to grow the buffer.
59 char* new_buffer = allocator_->grow(&new_capacity);
563 char* HeapStringAllocator::grow(unsigned* bytes) { function in class:v8::HeapStringAllocator
581 // Only grow once to the maximum allowable size.
582 char* NoAllocationStringAllocator::grow(unsigned* bytes) { function in class:v8::NoAllocationStringAllocator
  /libcore/luni/src/main/java/java/util/
Vector.java 56 * it needs to grow to accommodate extra entries. If this value is zero or
373 grow(minimumCapacity > next ? minimumCapacity : next);
445 private void grow(int newCapacity) { method
    [all...]

Completed in 1701 milliseconds

1 2 3