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

1 2 3 4 5 6

  /external/valgrind/main/none/tests/linux/
mremap.stderr.exp 2 mremap(grow, nomove, constrained): Cannot allocate memory
  /external/llvm/include/llvm/ADT/
IntEqClasses.h 42 IntEqClasses(unsigned N = 0) : NumClasses(0) { grow(N); }
44 /// grow - Increase capacity to hold 0 .. N-1, putting new integers in unique
47 void grow(unsigned N);
49 /// clear - Clear all classes so that grow() will assign a unique class to
SmallVector.h 41 /// grow_pod - This is an implementation of the grow() method which only works
229 /// grow - Grow the allocated memory (without initializing new
233 void grow(size_t MinSize = 0);
243 this->grow();
255 this->grow();
268 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) { function in class:llvm::SmallVectorTemplateBase
271 // Always grow, even from zero.
344 /// grow - double the size of the allocated memory, guaranteeing space for at
346 void grow(size_t MinSize = 0) function in class:llvm::SmallVectorTemplateBase
    [all...]
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/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);
  /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/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchResult.cpp 48 matchedProperties.grow(matchedProperties.size() + 1);
  /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);
  /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/chromium_org/third_party/WebKit/Source/wtf/
ParallelJobs.h 80 m_parameters.grow(m_parallelEnvironment.numberOfJobs());
  /external/icu4c/layoutex/layout/
RunArrays.h 33 * When an array needs to grow, it will double in size until
34 * it becomes this large, then it will grow by this amount.
128 * calling the <code>grow</code> method.
136 * first call this method to grow the data arrays, and use the return value
144 * @see grow
180 * Grow a data array to the given initial size. This method will be
183 * the overriding method to grow the limit indices array.
191 virtual void grow(le_int32 capacity);
329 * <code>RunArray::add(limit)</code> which will create or grow the arrays as needed.
336 * The new <code>add</code> method should first call this method to grow the font and limit indice
    [all...]
  /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/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/chromium_org/v8/src/
string-stream.h 44 virtual char* grow(unsigned* bytes) = 0;
53 char* grow(unsigned* bytes);
66 char* grow(unsigned* bytes);
  /external/v8/src/
string-stream.h 44 virtual char* grow(unsigned* bytes) = 0;
53 char* grow(unsigned* bytes);
66 char* grow(unsigned* bytes);
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
LineEnding.cpp 84 m_buffer.grow(oldSize + size);
175 // Grow the result buffer.
178 result.grow(oldResultSize + newLen);
  /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);
TypeLocBuilder.h 62 grow(Requested);
132 /// Grow to the given capacity.
133 void grow(size_t NewCapacity);
  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 178 LiveOutRegInfo.grow(Reg);
198 LiveOutRegInfo.grow(Reg);
VirtRegMap.h 88 void grow();
126 grow();
  /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/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketDeflater.cpp 93 m_buffer.grow(writePosition + maxLength);
116 m_buffer.grow(writePosition + bufferIncrementUnit);
179 m_buffer.grow(writePosition + bufferIncrementUnit);
211 m_buffer.grow(writePosition + bufferIncrementUnit);

Completed in 562 milliseconds

1 2 3 4 5 6