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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/linux/
mremap.stderr.exp 2 mremap(grow, nomove, constrained): Cannot allocate memory
mremap.stderr.exp-glibc27 2 mremap(grow, fixed): Cannot allocate memory
3 grow, nomove: p=0x........ np=0x........: shrink moved?!
4 grow, maymove: p=0x........ np=0x........: shrink moved?!
5 mremap(grow, nomove, constrained): Cannot allocate memory
mremap.c 55 np = mremap(p, 1024*1024, 2048*1024, 0); /* grow, fixed */
57 perror("mremap(grow, fixed)");
59 fprintf(stderr, "grow, nomove: p=%p np=%p: shrink moved?!\n",
65 np = mremap(p, 1024*1024, 2048*1024, MREMAP_MAYMOVE); /* grow, maymove */
67 perror("mremap(grow, maymove)");
69 fprintf(stderr, "grow, maymove: p=%p np=%p: shrink moved?!\n",
76 np = mremap(p, 512*1024, 1024*1024, 0); /* grow, nomove, constrained */
78 perror("mremap(grow, nomove, constrained)");
80 fprintf(stderr, "grow, maymove, constrained: p=%p np=%p (managed to grow without moving?!)\n"
    [all...]
  /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/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);
  /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/JavaScriptCore/heap/
HandleStack.cpp 39 grow();
56 void HandleStack::grow() function in class:JSC::HandleStack
58 HandleSlot block = m_blockStack.grow();
  /external/guava/guava/src/com/google/common/base/
Platform.java 42 * The starting size is 1024 characters. If we grow past this we don't
43 * put it back in the threadlocal, we just keep going and grow as needed.
  /external/llvm/lib/Support/
IntervalMap.cpp 122 unsigned Position, bool Grow) {
123 assert(Elements + Grow <= Nodes * Capacity && "Not enough room for elements");
129 const unsigned PerNode = (Elements + Grow) / Nodes;
130 const unsigned Extra = (Elements + Grow) % Nodes;
138 assert(Sum == Elements + Grow && "Bad distribution sum");
140 // Subtract the Grow element that was added.
141 if (Grow) {
143 assert(NewSize[PosPair.first] && "Too few elements to need Grow");
SmallVector.cpp 17 /// grow_pod - This is an implementation of the grow() method which only works
22 size_t NewCapacityInBytes = 2 * capacity_in_bytes() + TSize; // Always grow.
33 // If this wasn't grown from the inline copy, grow the allocated space.
  /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/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/iptables/extensions/
libxt_quota2.man 10 \fB\-\-grow\fP
27 negation has no effect when \fB\-\-grow\fP is used.
36 \-A INPUT \-p tcp \-\-dport 6881 \-m quota \-\-name bt \-\-grow;
libxt_quota2.c 37 {.name = "grow", .id = O_GROW, .type = XTTYPE_NONE},
52 " --grow provide an increasing counter\n"
92 printf(" --grow ");
  /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...]
  /cts/tests/res/anim/
lineartest.xml 29 <animate target="paint" id="grow" field="textSize" from="12" to="15" dur=".25"/>
32 <event kind="onEnd" target="grow">
  /packages/apps/Settings/src/com/android/settings/widget/
ChartAxis.java 48 * Test if given raw value should cause the axis to grow or shrink;
49 * returning positive value to grow and negative to shrink.
  /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
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cif-code.def 70 DEFCIFCODE(UNLIKELY_CALL, N_("call is unlikely and code size would grow"))
74 N_("function not declared inline and code size would grow"))
78 N_("optimizing for size and code size would grow"))
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cif-code.def 70 DEFCIFCODE(UNLIKELY_CALL, N_("call is unlikely and code size would grow"))
74 N_("function not declared inline and code size would grow"))
78 N_("optimizing for size and code size would grow"))
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
cif-code.def 70 DEFCIFCODE(UNLIKELY_CALL, N_("call is unlikely and code size would grow"))
74 N_("function not declared inline and code size would grow"))
78 N_("optimizing for size and code size would grow"))
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
cif-code.def 70 DEFCIFCODE(UNLIKELY_CALL, N_("call is unlikely and code size would grow"))
74 N_("function not declared inline and code size would grow"))
78 N_("optimizing for size and code size would grow"))
  /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

Completed in 1962 milliseconds

1 2 3 4 5 6 7 8 91011>>