HomeSort by relevance Sort by last modified time
    Searched full:grow (Results 1 - 25 of 1221) 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/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/chromium_org/ash/wm/gestures/
long_press_affordance_handler.h 27 // The first part is a grow animation that starts at semi-long-press and
29 // during grow animation.
30 // The second part is a shrink animation that start after grow and shrinks the
  /external/chromium_org/chrome/browser/resources/chromeos/first_run/app/
style.css 36 flex-grow: 1;
40 flex-grow: 8;
44 flex-grow: 5;
  /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);
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Platform.java 44 * The starting size is 1024 characters. If we grow past this we don't
45 * put it back in the threadlocal, we just keep going and grow as needed.
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Platform.java 44 * The starting size is 1024 characters. If we grow past this we don't
45 * put it back in the threadlocal, we just keep going and grow as needed.
  /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/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/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/chromium_org/tools/gyp/data/win/
large-pdb-shim.cc 10 // grow to 2GB.
  /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...]
  /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">
  /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
  /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/chromium_org/native_client_sdk/src/build_tools/tests/
easy_template_test.py 84 template = "{{', '.join(growing[0:-1]) + ' and ' + growing[-1]}} grow..."
85 self._RunTest(template, "Oats, peas, beans and barley grow...",
87 self._RunTest(template, "Love and laughter grow...",
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderLoader.h 84 // This value doesn't grow more than numeric_limits<unsigned> when
133 // dynamically grow. Otherwise, m_totalBytes is set to the total size and
134 // the buffer for receiving data of m_totalBytes is allocated and never grow

Completed in 1068 milliseconds

1 2 3 4 5 6 7 8 91011>>