Searched defs:grow (Results 1 - 25 of 47) sorted by relevance

12

/external/skia/src/core/
H A DSkRecord.cpp18 void SkRecord::grow() { function in class:SkRecord
H A DSkTextBlob.cpp175 void grow(uint32_t count) { function in namespace:__anon16861
539 run->grow(count);
/external/llvm/lib/Support/
H A DIntEqClasses.cpp25 void IntEqClasses::grow(unsigned N) { function in class:IntEqClasses
26 assert(NumClasses == 0 && "grow() called after compress().");
/external/clang/lib/Sema/
H A DTypeLocBuilder.cpp45 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/
H A DIndexedMap.h14 // 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/valgrind/none/tests/
H A Dthread-exits.c13 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/
H A Dantlr3bitset.h98 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/
H A DIntArrayList.java61 grow();
75 protected void grow() { method in class:IntArrayList
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DBoolStack.java92 grow();
184 private void grow() method in class:BoolStack
/external/icu/icu4c/source/layoutex/
H A DRunArrays.cpp43 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);
H A Dplruns.cpp269 * <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);
376 void ULocRuns::grow(le_int32 capacity) function in class:ULocRuns
378 LocaleRuns::grow(capacity);
/external/jetty/src/java/org/eclipse/jetty/util/
H A DArrayQueue.java102 if (_size == _elements.length && !grow())
313 if (_size == _elements.length && !grow())
358 protected boolean grow() method in class:ArrayQueue
H A DBlockingArrayQueue.java40 * able to grow and provides a blocking put call.
189 _tailLock.lock(); // size cannot grow... only shrink
198 _headLock.lock(); // Need to grow array
201 if (!grow())
557 if (!grow())
598 private boolean grow() method in class:BlockingArrayQueue
/external/lzma/CPP/Windows/Control/
H A DImageList.h34 bool Create(int width, int height, UINT flags, int initialNumber, int grow) argument
37 initialNumber, grow);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3bitset.c56 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-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
H A Dvolume.py400 def grow(self, size): member in class:Volume
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h161 grow(C);
178 grow(C, size() + Cnt);
185 grow(C, N);
193 /// grow - double the size of the allocated memory, guaranteeing space for at
195 void grow(BumpVectorContext &C, size_type MinSize = 1);
220 void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) { function in class:clang::BumpVector
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DDictionaryBreakEngine.java104 private void grow() { method in class:DictionaryBreakEngine.DequeI
119 grow();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DDictionaryBreakEngine.java103 private void grow() { method in class:DictionaryBreakEngine.DequeI
118 grow();
/external/libevent/
H A Devport.c49 * Helper functions are used: grow() grows the file descriptor array as
81 * grow the array of file descriptors, doubling its size.
211 grow(struct evport_data *epdp, int factor) function
385 * If necessary, grow the file descriptor info table
393 if (-1 == grow(evpd, factor)) {
/external/llvm/lib/CodeGen/
H A DVirtRegMap.cpp66 grow();
70 void VirtRegMap::grow() { function in class:VirtRegMap
/external/clang/include/clang/AST/
H A DASTVector.h164 grow(C);
170 grow(C, N);
188 this->grow(C, this->size()+NumInputs);
202 this->grow(C, this->size()+NumInputs);
232 this->grow(C);
344 this->grow(C, N);
351 /// grow - double the size of the allocated memory, guaranteeing space for at
353 void grow(const ASTContext &C, size_type MinSize = 1);
376 void ASTVector<T>::grow(const ASTContext &C, size_t MinSize) { function in class:clang::ASTVector
/external/libdrm/freedreno/msm/
H A Dmsm_ringbuffer.c69 static void *grow(void *ptr, uint32_t nr, uint32_t *max, uint32_t sz) function
82 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \
/external/v8/src/heap/
H A Dstore-buffer.cc127 size_t grow = old_limit_ - old_start_; // Double size. local
129 grow * kPointerSize, false)) {
130 old_limit_ += grow;
/external/v8/src/
H A Dstring-stream.cc27 char* FixedStringAllocator::grow(unsigned* old) { function in class:v8::internal::FixedStringAllocator
38 // reaching a difference of 2 we need to grow the buffer.
41 char* new_buffer = allocator_->grow(&new_capacity);
561 char* HeapStringAllocator::grow(unsigned* bytes) { function in class:v8::HeapStringAllocator

Completed in 1803 milliseconds

12