HomeSort by relevance Sort by last modified time
    Searched refs:grow (Results 1 - 25 of 138) 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 42 /// grow_pod - This is an implementation of the grow() method which only works
218 /// grow - Grow the allocated memory (without initializing new
222 void grow(size_t MinSize = 0);
227 this->grow();
234 this->grow();
247 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) { function in class:llvm::SmallVectorTemplateBase
250 // Always grow, even from zero.
323 /// grow - double the size of the allocated memory, guaranteeing space for at
325 void grow(size_t MinSize = 0) function in class:llvm::SmallVectorTemplateBase
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
BoolStack.java 92 grow(); method
184 private void grow() method in class:BoolStack
  /external/chromium_org/third_party/skia/src/core/
SkTObjectPool.h 37 * destroyed, at that point all memory allocated by grow will have been
43 grow();
99 void grow() { function in class:SkTObjectPool
  /external/icu/icu4c/source/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);
  /external/skia/src/core/
SkTObjectPool.h 37 * destroyed, at that point all memory allocated by grow will have been
43 grow();
99 void grow() { function in class:SkTObjectPool
  /hardware/ti/omap4-aah/libtiutils/
DebugUtils.cpp 50 grow();
54 void Debug::grow() function in class:Ti::Debug
  /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 53 matchedProperties.grow(matchedProperties.size() + 1);
  /frameworks/base/core/jni/
com_android_internal_net_NetworkStatsFactory.cpp 63 static jobjectArray get_string_array(JNIEnv* env, jobject obj, jfieldID field, int size, bool grow)
65 if (!grow) {
74 static jintArray get_int_array(JNIEnv* env, jobject obj, jfieldID field, int size, bool grow)
76 if (!grow) {
85 static jlongArray get_long_array(JNIEnv* env, jobject obj, jfieldID field, int size, bool grow)
87 if (!grow) {
226 bool grow = size > env->GetIntField(stats, gNetworkStatsClassInfo.capacity); local
229 gNetworkStatsClassInfo.iface, size, grow));
232 gNetworkStatsClassInfo.uid, size, grow));
235 gNetworkStatsClassInfo.set, size, grow));
    [all...]
  /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/v8/test/mjsunit/
array-store-and-grow.js 31 // to an array that grow it by a single element. Test functions are
178 // Grow the empty array with a double store.
191 // Verify that a grow store will deoptimize if the max gap (difference between
212 // Verify that a polymorphic store and grow IC when crankshafted is still
213 // a grow IC (earlier it would revert to a standard store in the polymorphic
221 f(a, 1, "hi"); // DOUBLE packed array -> tagged packed grow
228 // Should be a polymorphic grow stub. If not a grow stub it will deopt.
243 f(a, 0, "hi"); // DOUBLE packed array -> tagged packed grow
252 // An attempt to grow should cause deop
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
PurgeableVector.h 69 void grow(size_t);
  /external/icu/icu4c/source/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 164 grow(C);
170 grow(C, N);
186 // Grow allocated space if needed.
188 this->grow(C, this->size()+NumInputs);
200 // Grow allocated space if needed.
202 this->grow(C, this->size()+NumInputs);
232 this->grow(C);
343 this->grow(C, N);
350 /// grow - double the size of the allocated memory, guaranteeing space for at
352 void grow(const ASTContext &C, size_type MinSize = 1)
375 void ASTVector<T>::grow(const 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/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 179 LiveOutRegInfo.grow(Reg);
199 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

Completed in 561 milliseconds

1 2 3 4 5 6