HomeSort by relevance Sort by last modified time
    Searched full:capacity (Results 651 - 675 of 1135) sorted by null

<<21222324252627282930>>

  /external/guava/src/com/google/common/collect/
Maps.java 80 * Creates a {@code HashMap} instance with enough capacity to hold the
85 * capacity to hold {@code expectedSize} elements without rehashing
95 return new HashMap<K, V>(capacity(expectedSize));
99 * Returns an appropriate value for the "capacity" (in reality, "minimum
106 static int capacity(int expectedSize) { method in class:Maps
    [all...]
  /external/icu4c/i18n/unicode/
tblcoll.h 526 * @param capacity capacity of the destination buffer
532 int32_t cloneBinary(uint8_t *buffer, int32_t capacity, UErrorCode &status);
627 * buffer will be filled to capacity.
642 * buffer will be filled to capacity.
    [all...]
  /external/stlport/etc/
autoexp.dat 35 capacity: #if($c._M_start_of_storage._M_data == $c._M_buffers._M_static_buf)
69 capacity: #if($c._M_start_of_storage._M_data == $c._M_buffers._M_static_buf)
177 capacity : $c._M_end_of_storage._M_data - $c._M_start,
247 capacity : ($c._M_finish._M_node - $c._M_start._M_node + 1) * (_MAX_BYTES / sizeof($T1)) - 1,
262 capacity : $c._M_finish._M_node - $c._M_start._M_node,
  /external/v8/src/
objects.h     [all...]
heap.cc 162 intptr_t Heap::Capacity() {
165 return new_space_.Capacity() +
166 old_pointer_space_->Capacity() +
167 old_data_space_->Capacity() +
168 code_space_->Capacity() +
169 map_space_->Capacity() +
170 cell_space_->Capacity();
435 symbol_table()->Capacity());
928 if (new_space_.Capacity() < new_space_.MaximumCapacity() &&
929 survived_since_last_expansion_ > new_space_.Capacity()) {
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSArray.cpp 398 size_t capacity = map->capacity();
399 if (capacity != storage->reportedMapCapacity) {
400 Heap::heap(this)->reportExtraMemoryCost((capacity - storage->reportedMapCapacity) * (sizeof(unsigned) + sizeof(JSValue)));
401 storage->reportedMapCapacity = capacity;
    [all...]
  /external/icu4c/test/intltest/
ustrtest.cpp 203 errln("UnicodeString.setTo(buffer, length, capacity) does not work with length==-1");
206 errln("UnicodeString(buffer, length, capacity) does not work with length==-1");
219 errln("UnicodeString.setTo(buffer without NUL, length, capacity) does not work with length==-1");
222 errln("UnicodeString(buffer without NUL, length, capacity) does not work with length==-1");
    [all...]
  /external/qemu/
vnc-android.c 318 if ((buffer->capacity - buffer->offset) < len) {
319 buffer->capacity += (len + 1024);
320 buffer->buffer = qemu_realloc(buffer->buffer, buffer->capacity);
605 zstream->avail_out = vs->output.capacity - vs->output.offset;
615 vs->output.offset = vs->output.capacity - zstream->avail_out;
1015 vs->output.buffer, vs->output.capacity, vs->output.offset,
1116 vs->input.buffer, vs->input.capacity, vs->input.offset);
    [all...]
vnc.c 312 if ((buffer->capacity - buffer->offset) < len) {
313 buffer->capacity += (len + 1024);
314 buffer->buffer = qemu_realloc(buffer->buffer, buffer->capacity);
599 zstream->avail_out = vs->output.capacity - vs->output.offset;
609 vs->output.offset = vs->output.capacity - zstream->avail_out;
1009 vs->output.buffer, vs->output.capacity, vs->output.offset,
1110 vs->input.buffer, vs->input.capacity, vs->input.offset);
    [all...]
  /external/v8/src/arm/
ic-arm.cc 121 // Compute the capacity mask.
188 // scratch1: Used as temporary and to hold the capacity of the property
237 // scratch1: Used as temporary and to hold the capacity of the property
300 // t1 - used to hold the capacity mask of the dictionary
323 // Compute the capacity mask.
    [all...]
  /external/v8/src/ia32/
ic-ia32.cc 114 // Compute the capacity mask.
179 // r1 - used to hold the capacity of the property dictionary.
236 // r1 - used to hold the capacity of the property dictionary and is clobbered.
293 // r1 - used to hold the capacity mask of the dictionary
326 // Compute capacity mask.
803 // Extra capacity case: Check if there is extra capacity to
    [all...]
  /external/v8/src/x64/
ic-x64.cc 114 // Compute the capacity mask.
173 // r0 - used to hold the capacity of the property dictionary.
235 // scratch1 - used to hold the capacity of the property dictionary and is
300 // r1 - used to hold the capacity mask of the dictionary
336 // Compute capacity mask.
816 // Extra capacity case: Check if there is extra capacity to
    [all...]
  /external/icu4c/common/unicode/
ucnv.h 554 * @param len on input the capacity of subChars, on output the number
633 * @param len on input the capacity of errBytes, on output the number of
652 * @param len on input the capacity of errUChars, on output the number of
    [all...]
rbbi.h 513 * If the capacity of the output array is insufficient to hold the data,
518 * @param capacity the length of the supplied vector. A length of zero causes
530 virtual int32_t getRuleStatusVec(int32_t *fillInVec, int32_t capacity, UErrorCode &status);
  /external/qemu/android/
console.c 1794 int capacity; local
    [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
ucnv.h 484 * @param len on input the capacity of subChars, on output the number
522 * @param len on input the capacity of errBytes, on output the number of
541 * @param len on input the capacity of errUChars, on output the number of
    [all...]
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
ucnv.h 484 * @param len on input the capacity of subChars, on output the number
522 * @param len on input the capacity of errBytes, on output the number of
541 * @param len on input the capacity of errUChars, on output the number of
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
ucnv.h 484 * @param len on input the capacity of subChars, on output the number
522 * @param len on input the capacity of errBytes, on output the number of
541 * @param len on input the capacity of errUChars, on output the number of
    [all...]
  /external/iptables/libiptc/
libiptc.c 2234 int capacity; local
    [all...]
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java     [all...]
  /external/icu4c/i18n/
digitlst.cpp 567 int32_t capacity = 0;
568 char *buffer = str.clear().getAppendBuffer(maxLength, 0, capacity, status);
572 U_ASSERT(capacity >= maxLength);
  /external/qemu/hw/
scsi-disk.c 750 DPRINTF("Read Capacity\n");
760 /* Clip to 2TB, instead of returning capacity modulo 2TB. */
860 DPRINTF("SAI READ CAPACITY(16)\n");
  /bootable/recovery/minzip/
Hash.c 24 * Compute the capacity needed for a table to hold "size" elements.
  /dalvik/vm/
Hash.cpp 34 * Compute the capacity needed for a table to hold "size" elements.
IndirectRefTable.cpp 324 dvmDumpReferenceTableContents(table_, capacity(), descr);

Completed in 918 milliseconds

<<21222324252627282930>>