HomeSort by relevance Sort by last modified time
    Searched refs:grow (Results 1 - 25 of 134) 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 40 /// grow_pod - This is an implementation of the grow() method which only works
228 /// grow - Grow the allocated memory (without initializing new
232 void grow(size_t MinSize = 0);
242 this->grow();
254 this->grow();
267 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) { function in class:llvm::SmallVectorTemplateBase
270 size_t NewCapacity = 2*CurCapacity + 1; // Always grow, even from zero.
342 /// grow - double the size of the allocated memory, guaranteeing space for at
344 void grow(size_t MinSize = 0) function in class:llvm::SmallVectorTemplateBase
    [all...]
  /external/webkit/Source/JavaScriptCore/heap/
HandleStack.cpp 39 grow();
56 void HandleStack::grow() function in class:JSC::HandleStack
58 HandleSlot block = m_blockStack.grow();
ConservativeRoots.h 55 void grow();
84 grow();
ConservativeRoots.cpp 36 void ConservativeRoots::grow() function in class:JSC::ConservativeRoots
HandleStack.h 58 void grow();
123 grow();
HandleHeap.cpp 50 grow();
53 void HandleHeap::grow() function in class:JSC::HandleHeap
55 Node* block = m_blockStack.grow();
  /external/webkit/Source/JavaScriptCore/assembler/
AssemblerBuffer.h 60 grow();
78 grow();
92 grow();
113 grow();
121 grow();
171 grow(size);
177 void grow(int extraCapacity = 0) function in class:JSC::AssemblerBuffer
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
ArgumentEncoder.cpp 66 uint8_t* ArgumentEncoder::grow(unsigned alignment, size_t size) function in class:CoreIPC::ArgumentEncoder
93 uint8_t* buffer = grow(1, size);
100 uint8_t* buffer = grow(sizeof(n), sizeof(n));
107 uint8_t* buffer = grow(sizeof(n), sizeof(n));
114 uint8_t* buffer = grow(sizeof(n), sizeof(n));
121 uint8_t* buffer = grow(sizeof(n), sizeof(n));
128 uint8_t* buffer = grow(sizeof(n), sizeof(n));
135 uint8_t* buffer = grow(sizeof(n), sizeof(n));
142 uint8_t* buffer = grow(sizeof(n), sizeof(n));
  /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/webkit/Source/JavaScriptCore/wtf/url/src/
URLBuffer.h 96 if (!grow(1))
106 if (!grow(m_length + strLength - m_capacity))
116 bool grow(int minimumAdditionalCapacity) function in class:WTF::URLBuffer
  /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/webkit/Source/JavaScriptCore/wtf/
BlockStack.h 42 T* grow();
70 template <typename T> T* BlockStack<T>::grow() function in class:WTF::BlockStack
  /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/webkit/Source/WebCore/platform/posix/
SharedBufferPOSIX.cpp 61 result->m_buffer.grow(bytesToRead);
  /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/clang/lib/Sema/
TypeLocBuilder.h 57 grow(Requested);
138 // If we need to grow, grow by a factor of 2.
144 grow(NewCapacity);
152 /// Grow to the given capacity.
153 void grow(size_t NewCapacity) { function in class:clang::TypeLocBuilder
  /external/v8/src/
string-stream.h 44 virtual char* grow(unsigned* bytes) = 0;
53 char* grow(unsigned* bytes);
66 char* grow(unsigned* bytes);
  /external/webkit/Source/WebCore/platform/text/brew/
TextCodecBrew.cpp 90 prefixedBytes.grow(srcSize);
119 dstBuffer.grow(dstBuffer.size() * 2);
189 dstBuffer.grow(dstBuffer.size() * 2);

Completed in 1618 milliseconds

1 2 3 4 5 6