/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/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);
|
/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/chromium_org/ash/wm/gestures/ |
long_press_affordance_handler.h | 25 // The first part is a grow animation that starts at semi-long-press and 27 // during grow animation. 28 // The second part is a shrink animation that start after grow and shrinks the
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-358088.js | 13 f([]); // f KeyedStoreIC goes to 1.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);
|
/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;
|
/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 | 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...] |
/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
|
/hardware/ti/omap4-aah/libtiutils/ |
DebugUtils.cpp | 50 grow(); 54 void Debug::grow() function in class:Ti::Debug
|
/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
|