Searched refs:capacity (Results 201 - 225 of 443) sorted by relevance

1234567891011>>

/external/chromium/base/
H A Dpickle_unittest.cc222 EXPECT_EQ(unit, pickle.capacity());
228 EXPECT_EQ(unit * 2, pickle.capacity());
231 // one more byte should double the capacity
234 EXPECT_EQ(unit * 4, pickle.capacity());
H A Dstack_container_unittest.cc38 EXPECT_EQ(static_cast<size_t>(stack_size), vect.container().capacity());
/external/chromium/chrome/common/
H A Dtime_format.cc298 int capacity = time_string.length() + 1; local
301 WriteInto(&result, capacity)),
302 capacity, error);
/external/emma/core/java12/com/vladium/emma/rt/
H A DClassPathProcessorST.java365 private void ensureReadCapacity (final int capacity) argument
367 if (m_readbuf.length < capacity)
371 m_readbuf = new byte [Math.max (readbuflen << 1, capacity)];
/external/icu4c/i18n/unicode/
H A Ducol.h786 * @param resultCapacity capacity of the fillin buffer
830 * @param capacity capacity of the buffer
841 int32_t capacity,
850 * @param capacity capacity of the buffer
867 int32_t capacity,
877 * is undefined if the buffer capacity (resultLength parameter) is too small.
1289 * @param capacity capacity o
[all...]
/external/kernel-headers/original/linux/
H A Dgenhd.h112 sector_t capacity; member in struct:gendisk
243 return disk->capacity;
247 disk->capacity = size;
/external/replicaisland/src/com/replica/replicaisland/
H A DGrid.java346 final int vertexSize = mVertexBuffer.capacity() * mCoordinateSize;
359 mTexCoordBuffer.capacity() * mCoordinateSize;
373 final int indexSize = mIndexBuffer.capacity() * 2;
/external/stlport/stlport/stl/
H A D_vector.c63 if (capacity() < __n) {
187 if (__xlen > capacity()) {
211 if (__n > capacity()) {
/external/v8/src/
H A Delements.cc458 int capacity,
462 capacity,
467 int capacity,
760 uint32_t capacity,
766 return obj->SetFastElementsCapacityAndLength(capacity,
795 uint32_t capacity,
797 return obj->SetFastDoubleElementsCapacityAndLength(capacity, length);
898 uint32_t capacity = local
900 return key < capacity;
1023 int capacity local
457 SetCapacityAndLength(JSArray* array, int capacity, int length) argument
466 SetFastElementsCapacityAndLength(JSObject* obj, int capacity, int length) argument
759 SetFastElementsCapacityAndLength(JSObject* obj, uint32_t capacity, uint32_t length) argument
794 SetFastElementsCapacityAndLength(JSObject* obj, uint32_t capacity, uint32_t length) argument
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DHashSet.h58 int capacity() const;
125 inline int HashSet<T, U, V>::capacity() const function in class:WTF::HashSet
127 return m_impl.capacity();
/external/chromium/chrome/browser/resources/net_internals/
H A Ddnsview.js12 * - Shows the parameters used to construct the host cache (capacity, ttl).
69 addTextNode(this.capacitySpan_, hostResolverCache.capacity);
/external/icu4c/common/unicode/
H A Dubrk.h475 * @param capacity the length of the supplied vector. A length of zero causes
484 ubrk_getRuleStatusVec(UBreakIterator *bi, int32_t *fillInVec, int32_t capacity, UErrorCode *status);
H A Dutf16.h304 * @param i string offset, must be i<capacity
305 * @param capacity size of the string buffer
311 #define U16_APPEND(s, i, capacity, c, isError) { \
314 } else if((uint32_t)(c)<=0x10ffff && (i)+1<(capacity)) { \
/external/icu4c/i18n/
H A Ducol_cnt.h55 int32_t capacity; member in struct:CntTable
H A Dsortkey.cpp99 void CollationKey::adopt(uint8_t *values, int32_t capacity, int32_t count) { argument
104 fCapacity = capacity;
/external/stlport/test/eh/
H A Dtest_bit_vector.cpp117 StrongCheck(testVector, test_BitVector_reserve( testVector.capacity() + random_number(50)));
/external/webkit/Source/WebCore/icu/unicode/
H A Dubrk.h537 * @param capacity the length of the supplied vector. A length of zero causes
546 ubrk_getRuleStatusVec(UBreakIterator *bi, int32_t *fillInVec, int32_t capacity, UErrorCode *status);
/external/icu4c/tools/genrb/
H A Dwrtxml.cpp414 int32_t capacity = 0; local
423 capacity = src->fLength;
424 note = (UChar*) uprv_malloc(U_SIZEOF_UCHAR * capacity);
432 noteLen = getAt(src->fChars,src->fLength, &note, capacity, i, UPC_NOTE, status);
478 int32_t capacity = src->fLength + 1; local
481 UChar* desc = (UChar*) uprv_malloc(U_SIZEOF_UCHAR * capacity);
482 UChar* trans = (UChar*) uprv_malloc(U_SIZEOF_UCHAR * capacity);
492 descLen = getDescription(src->fChars,src->fLength, &desc, capacity, status);
493 transLen = getTranslate(src->fChars,src->fLength, &trans, capacity, status);
/external/icu4c/common/
H A Duresbund.c861 int32_t capacity; local
878 capacity = (int32_t)uprv_strlen(parent->fResPath) + 1;
880 capacity = 0;
882 if(capacity < len) {
883 capacity = len;
885 if(capacity <= sizeof(stackAlias)) {
886 capacity = sizeof(stackAlias);
889 chAlias = (char *)uprv_malloc(capacity);
966 if(len > capacity) {
967 capacity
1195 int32_t capacity; local
[all...]
H A Dubrk.cpp282 ubrk_getRuleStatusVec(UBreakIterator *bi, int32_t *fillInVec, int32_t capacity, UErrorCode *status) argument
284 return ((RuleBasedBreakIterator *)bi)->RuleBasedBreakIterator::getRuleStatusVec(fillInVec, capacity, *status);
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
H A DMappedByteBufferTest.java40 * A regression test for failing to correctly set capacity of underlying
49 int len = mmb.capacity();
83 // check capacity is 0
84 int len = mmb.capacity();
85 assertEquals("MappedByteBuffer created from empty file should have 0 capacity",
/external/clang/test/Analysis/
H A Dsystem-header-simulator-objc.h112 extern CFMutableDictionaryRef CFDictionaryCreateMutable(CFAllocatorRef allocator, CFIndex capacity, const CFDictionaryKeyCallBacks *keyCallBacks, const CFDictionaryValueCallBacks *valueCallBacks);
118 extern CFMutableStringRef CFStringCreateMutableWithExternalCharactersNoCopy(CFAllocatorRef alloc, UniChar *chars, CFIndex numChars, CFIndex capacity, CFAllocatorRef externalCharactersAllocator);
/external/clang/test/SemaTemplate/
H A Dexample-dynarray.cpp49 unsigned capacity() const { return End - Start; } function in class:dynarray
97 unsigned NewCapacity = capacity() * 2;
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
H A DTextureUtil.java242 mipSizes = new int[]{ data.capacity() };
257 data.capacity(),
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSkyFactory.java120 int size = data != null ? data.capacity() : 0;
135 if (data2.capacity() != size) {

Completed in 3624 milliseconds

1234567891011>>