HomeSort by relevance Sort by last modified time
    Searched full:capacity (Results 226 - 250 of 925) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/test/intltest/
nptrans.h 78 * @param destCapacity The capacity of destination array
100 * @param destCapacity The capacity of destination array
  /external/webkit/WebCore/dom/
NamedAttrMap.h 76 void reserveInitialCapacity(unsigned capacity) { m_attributes.reserveInitialCapacity(capacity); }
  /frameworks/base/core/java/com/google/android/collect/
Sets.java 65 int capacity = elements.length * 4 / 3 + 1; local
66 HashSet<E> set = new HashSet<E>(capacity);
  /frameworks/base/opengl/java/android/opengl/
Group.java 110 numTriangles += indexBuffer.capacity()/3;
144 indexBuffer.capacity(),
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeTypeAndValue.java 109 // pool's capacity
110 private static final int CAPACITY;
134 CAPACITY = 10;
136 KNOWN_OIDS = new ObjectIdentifier[SIZE][CAPACITY];
497 int index = hashIntArray(oid) % CAPACITY;
514 int index = hashIntArray(newOid) % CAPACITY;
529 if (i == (CAPACITY - 1)) {
531 "small OID pool capacity");
  /development/samples/GlobalTime/src/com/android/globaltime/
PointCloud.java 54 this.mNumIndices = mIndexBuffer.capacity();
  /external/chromium/base/
pickle_unittest.cc 172 EXPECT_EQ(unit, pickle.capacity());
178 EXPECT_EQ(unit * 2, pickle.capacity());
181 // one more byte should double the capacity
184 EXPECT_EQ(unit * 4, pickle.capacity());
  /external/v8/src/
hashmap.cc 194 void HashMap::Initialize(uint32_t capacity) {
195 ASSERT(IsPowerOf2(capacity));
196 map_ = reinterpret_cast<Entry*>(allocator_->New(capacity * sizeof(Entry)));
201 capacity_ = capacity;
unicode.h 122 unsigned capacity, unsigned* chars_read, unsigned* offset);
151 static inline bool EncodeCharacter(uchar c, byte* buffer, unsigned capacity,
154 unsigned capacity, unsigned& offset);
156 unsigned capacity, unsigned& offset);
  /external/webkit/WebCore/manual-tests/
array-out-of-memory.html 11 // the array an additional 50% capacity will be allocated, plus the storage object header, taking the size of the allocation over UINT32_MAX.
  /frameworks/base/core/java/com/android/internal/os/
PowerProfile.java 139 * Battery capacity in milliAmpHour (mAh).
141 public static final String POWER_BATTERY_CAPACITY = "battery.capacity";
261 * Returns the battery capacity, if available, in milli Amp Hours. If not available,
263 * @return the battery capacity in mAh
  /frameworks/base/include/utils/
KeyedVector.h 56 inline size_t capacity() const { return mVector.capacity(); } function in class:android::KeyedVector
57 //! setst the capacity. capacity can never be reduced less than size()
  /libcore/include/
LocalArray.h 57 // Capacity.
  /system/core/include/cutils/
array.h 18 * A pointer array which intelligently expands its capacity ad needed.
  /system/core/libpixelflinger/tinyutils/
KeyedVector.h 48 inline size_t capacity() const { return mVector.capacity(); } function in class:android::KeyedVector
49 //! setst the capacity. capacity can never be reduced less than size()
  /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/chromium/net/base/
io_buffer.h 116 // realloc memory to the specified capacity.
117 void SetCapacity(int capacity);
118 int capacity() { return capacity_; } function in class:net::GrowableIOBuffer
  /external/chromium/third_party/icu/source/io/
ufile.c 137 int32_t capacity,
142 if (capacity < 0) {
154 result->str.fLimit = stringBuf+capacity;
  /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);

Completed in 2117 milliseconds

1 2 3 4 5 6 7 8 91011>>