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

<<11121314151617181920>>

  /bootable/recovery/minzip/
Hash.h 6 * When the number of elements reaches 3/4 of the table's capacity, the
71 * a basis for the initial capacity of the table. (The actual initial
80 * Compute the capacity needed for a table to hold "size" elements. Use
  /dalvik/vm/
Hash.h 20 * capacity, the table will be resized.
84 * a basis for the initial capacity of the table. (The actual initial
93 * Compute the capacity needed for a table to hold "size" elements. Use
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionOutputBuffer.java 105 if (len > MAX_CHUNK || len > this.buffer.capacity()) {
113 int freecapacity = this.buffer.capacity() - this.buffer.length();
155 int chunk = this.buffer.capacity() - this.buffer.length();
  /external/chromium/googleurl/src/
url_canon_icu.cc 114 int dest_capacity = output->capacity() - begin_offset;
150 output->capacity(),
160 output->Resize(output->capacity() * 2);
  /external/emma/core/java12/com/vladium/jcd/cls/
FieldCollection.java 126 FieldCollection (final int capacity)
128 m_fields = capacity < 0 ? new ArrayList () : new ArrayList (capacity);
InterfaceCollection.java 99 InterfaceCollection (final int capacity)
101 m_interfaces = capacity < 0 ? new IntVector () : new IntVector (capacity);
MethodCollection.java 131 MethodCollection (final int capacity)
133 m_methods = capacity < 0 ? new ArrayList () : new ArrayList (capacity);
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
DeclaredExceptionTable.java 97 DeclaredExceptionTable (final int capacity)
99 m_exceptions = capacity < 0 ? new IntVector () : new IntVector (capacity);
ExceptionHandlerTable.java 103 ExceptionHandlerTable (final int capacity)
105 m_exceptions = capacity < 0 ? new ArrayList () : new ArrayList (capacity);
  /external/llvm/lib/Support/
IntervalMap.cpp 120 IdxPair distribute(unsigned Nodes, unsigned Elements, unsigned Capacity,
123 assert(Elements + Grow <= Nodes * Capacity && "Not enough room for elements");
150 assert(NewSize[n] <= Capacity && "Overallocated node");
  /external/webkit/Source/JavaScriptCore/heap/
MarkedSpace.cpp 81 m_waterMark += block->capacity();
142 size_t MarkedSpace::capacity() const function in class:JSC::MarkedSpace
147 result += (*it)->capacity();
  /external/webkit/Source/JavaScriptCore/wtf/
HashCountedSet.h 43 int capacity() const;
85 inline int HashCountedSet<Value, HashFunctions, Traits>::capacity() const function in class:WTF::HashCountedSet
87 return m_impl.capacity();
  /external/webkit/Source/WebKit/win/Interfaces/
IWebBackForwardList.idl 128 @method capacity
131 - (int)capacity;
133 HRESULT capacity([out, retval] int* result);
  /libcore/luni/src/test/java/libcore/java/io/
OldFileWriterTest.java 118 int capacity = 65536; local
119 byte[] bytes = new byte[capacity];
135 char[] outChars = new char[capacity];
  /external/v8/src/
spaces.h 509 // Max capacity of the total space and executable memory limit.
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ExpandedNameTable.java 80 * The initial capacity of the hash table. Use a bigger number
86 * The capacity of the hash table, i.e. the size of the
92 * The threshold of the hash table, which is equal to capacity * loadFactor.
240 * Increases the capacity of and internally reorganizes the hashtable,
243 * this hashtable's capacity and load factor.
  /external/icu4c/common/unicode/
strenum.h 222 * Capacity of chars, for use with default implementations and subclasses.
234 * Ensures that chars is at least as large as the requested capacity.
237 * @param capacity Requested capacity.
241 void ensureCharsCapacity(int32_t capacity, UErrorCode &status);
  /external/icu4c/common/
uvectr32.h 63 int32_t capacity; member in class:UVector32
65 int32_t maxCapacity; // Limit beyond which capacity is not permitted to grow.
167 * Set the maximum allowed buffer capacity for this vector/stack.
169 * A Limit of zero means unlimited capacity.
214 if ((minimumCapacity >= 0) && (capacity >= minimumCapacity)) {
normalizer2.cpp 647 UChar *dest, int32_t capacity,
653 (dest==NULL ? capacity!=0 : capacity<0) ||
659 UnicodeString destString(dest, 0, capacity);
675 return destString.extract(dest, capacity, *pErrorCode);
743 UChar32 c, UChar *decomposition, int32_t capacity,
748 if(decomposition==NULL ? capacity!=0 : capacity<0) {
752 UnicodeString destString(decomposition, 0, capacity);
754 return destString.extract(decomposition, capacity, *pErrorCode)
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_settings.cpp 357 * Sets capacity of memory cache of WebCore.
361 * @param capacity the maximum number of bytes that the cache should consume overall
363 void ewk_settings_cache_capacity_set(unsigned capacity)
366 cache->setCapacities(0, capacity, capacity);
  /external/webkit/Tools/gdb/
webkit.py 195 $3 = WTF::Vector of length 7, capacity 16 = {7, 17, 27, 37, 47, 57, 67}
198 $6 = WTF::Vector of length 7, capacity 16 = {7, 17, 27...}
201 $7 = WTF::Vector of length 7, capacity 16 = {
209 $8 = WTF::Vector of length 7, capacity 16 = {
246 return ('%s of length %d, capacity %d'
  /libcore/luni/src/main/java/java/lang/
StringBuilder.java 50 * Constructs an instance with an initial capacity of {@code 16}.
52 * @see #capacity()
58 * Constructs an instance with the specified capacity.
60 * @param capacity
61 * the initial capacity to use.
63 * if the specified {@code capacity} is negative.
64 * @see #capacity()
66 public StringBuilder(int capacity) {
67 super(capacity);
72 * specified {@code CharSequence}. The capacity of the new builder will b
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/
OldAndroidNIOTest.java 37 assertTrue(b.limit() <= b.capacity());
127 for (int i = 0; i < b.capacity(); i++) {
206 assertEquals(4, bb.capacity());
221 b.limit(b.capacity());
342 assertEquals(4, bb.capacity());
352 assertEquals(2, sb.capacity());
360 assertEquals(2, sb.capacity());
368 assertEquals(1, ib.capacity());
375 assertEquals(1, ib.capacity());
382 assertEquals(1, fb.capacity());
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeTypeAndValue.java 133 /** pool's capacity */
134 private static final int CAPACITY = 10;
140 private static final ObjectIdentifier[][] KNOWN_OIDS = new ObjectIdentifier[SIZE][CAPACITY];
411 int index = hashIntArray(oid) % CAPACITY;
429 int index = hashIntArray(newOid) % CAPACITY;
443 if (i == (CAPACITY - 1)) {
445 "small OID pool capacity");
  /external/icu4c/layoutex/layout/
RunArrays.h 171 * @param capacity is the initial size of the data array.
177 virtual void init(le_int32 capacity);
185 * @param capacity is the initial size of the data array.
191 virtual void grow(le_int32 capacity);
365 virtual void init(le_int32 capacity);
366 virtual void grow(le_int32 capacity);
502 virtual void init(le_int32 capacity);
503 virtual void grow(le_int32 capacity);
639 virtual void init(le_int32 capacity);
640 virtual void grow(le_int32 capacity);
    [all...]

Completed in 415 milliseconds

<<11121314151617181920>>