/external/v8/src/ |
bignum.h | 118 // Requires this to have enough capacity (no tests done).
|
/external/v8/test/cctest/ |
test-list.cc | 57 // Add elements to the list to grow it to its capacity.
|
/external/valgrind/main/callgrind/ |
events.h | 121 Int capacity; member in struct:_EventMapping
|
/external/valgrind/main/drd/ |
drd_vc.h | 67 unsigned capacity; /**< number of elements allocated for array vc. */ member in struct:__anon12446
|
/external/webkit/Source/WebCore/bindings/objc/ |
DOMInternal.mm | 48 return [[NSMapTable alloc] initWithKeyOptions:keyOptions valueOptions:valueOptions capacity:0];
|
/external/webkit/Source/WebKit2/Shared/mac/ |
WebMemorySampler.mac.mm | 120 size_t jscHeapBytesCommitted = JSDOMWindow::commonJSGlobalData()->heap.capacity();
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
WebBackForwardListProxy.cpp | 216 // FIXME: Should check the the list is enabled and has non-zero capacity.
|
/external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/ |
WebKitSystemInterface.h | 146 CAImageQueueRef wkCAImageQueueCreate(uint32_t width, uint32_t height, uint32_t capacity);
|
/frameworks/base/include/utils/ |
GenerationCache.h | 59 enum Capacity {
|
/hardware/ti/omap4xxx/hwc/ |
hal_public.h | 92 * capacity, these are the "real" values for the backing allocation.
|
/libcore/luni/src/main/native/ |
libcore_icu_ICU.cpp | 293 static jobjectArray toStringArray(JNIEnv* env, UResourceBundle* rb, size_t size, int capacity, size_t offset) { 294 if (capacity == -1) { 295 capacity = size; 297 jobjectArray result = env->NewObjectArray(capacity, JniConstants::stringClass, NULL); [all...] |
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
TestSSLEnginePair.java | 153 if (output.remaining() != output.capacity()) {
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_string.c | 153 // Change the string's capacity so that it is large enough to hold 155 // if __res_arg < capacity(), this member function may actually decrease 156 // the string's capacity. 228 if (__n < capacity()) {
|
/packages/apps/Mms/src/com/android/mms/util/ |
SmileyParser.java | 159 // Set the StringBuilder capacity with the assumption that the average
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_string.c | 153 // Change the string's capacity so that it is large enough to hold 155 // if __res_arg < capacity(), this member function may actually decrease 156 // the string's capacity. 228 if (__n < capacity()) {
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_string.c | 153 // Change the string's capacity so that it is large enough to hold 155 // if __res_arg < capacity(), this member function may actually decrease 156 // the string's capacity. 228 if (__n < capacity()) {
|
/system/core/libpixelflinger/tinyutils/ |
VectorImpl.h | 57 size_t capacity() const;
|
/system/media/mca/filterfw/java/android/filterfw/core/ |
SerializedFrame.java | 46 * The initial capacity of the serialized data stream.
|
/external/webkit/Tools/DumpRenderTree/win/ |
LayoutTestControllerWin.cpp | 101 // We clear the history by setting the back/forward list's capacity to 0 103 int capacity; local 104 if (FAILED(backForwardList->capacity(&capacity))) 108 backForwardList->setCapacity(capacity); [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
Exchanger.java | 187 * The capacity of the arena. Set to a value that provides more 197 private static final int CAPACITY = 32; 201 * contention. When this value is less than CAPACITY, some 205 Math.max(0, Math.min(CAPACITY, NCPU / 2) - 1); 286 private volatile Slot[] arena = new Slot[CAPACITY];
|
ThreadPoolExecutor.java | 134 * capacity) will cause new tasks to wait in the queue when all 167 * work queue capacity, and is saturated. In either case, the {@code 197 * capacity or queuing policies. </dd> 341 private static final int CAPACITY = (1 << COUNT_BITS) - 1; 351 private static int runStateOf(int c) { return c & ~CAPACITY; } 352 private static int workerCountOf(int c) { return c & CAPACITY; } 496 * bounded by CAPACITY. [all...] |
/external/icu4c/i18n/unicode/ |
uregex.h | 568 * @param destCapacity Capacity of the dest buffer. [all...] |
/development/tools/glesv2debugger/src/com/android/glesv2debugger/ |
CodeGen.java | 243 bfr = ByteBuffer.allocate(buffer.capacity()); 285 buffer.data.capacity(), buffer.usage); 543 indexData.capacity()); 545 code.format(" fread(indexData, %d, 1, attribFile);\n", indexData.capacity()); 621 code.format(" char * const attribData = (char *)malloc(%d);\n", attribData.capacity()); 623 code.format(" fread(attribData, %d, 1, attribFile);\n", attribData.capacity()); [all...] |
/external/chromium/net/disk_cache/ |
entry_impl.cc | 99 backend_->BufferDeleted(capacity() - kMaxBlockSize); 129 int capacity() { return static_cast<int>(buffer_.capacity()); } function in class:disk_cache::EntryImpl::UserBuffer 149 if (offset + len <= capacity()) 256 backend_->BufferDeleted(capacity() - kMaxBlockSize); 268 int current_size = capacity(); [all...] |
/external/icu4c/common/unicode/ |
uloc.h | 475 * @param nameCapacity capacity of the fill in buffer. 812 * @param nameCapacity capacity of the fill in buffer [all...] |