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

1234567891011>>

/external/webkit/Source/WebCore/history/
H A DBackForwardListImpl.cpp179 int BackForwardListImpl::capacity() function in class:BackForwardListImpl
212 int capacity = m_capacity; local
214 setCapacity(capacity);
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_settings.cpp357 * 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) argument
366 cache->setCapacities(0, capacity, capacity);
/external/icu4c/test/intltest/
H A Ddcfmtest.cpp134 int32_t capacity = buf.getCapacity(); local
135 int32_t requiredCapacity = s.extract(0, len, buf.getAlias(), capacity) + 1;
136 if (capacity < requiredCapacity) {
138 capacity = requiredCapacity;
139 s.extract(0, len, buf.getAlias(), capacity);
/external/webkit/Source/JavaScriptCore/runtime/
H A DPropertyMapHashTable.h144 // Constructor is passed an initial capacity, a PropertyTable to copy, or both.
179 // Copy this PropertyTable, ensuring the copy has at least the capacity provided.
189 // Used to insert a value known not to be in the table, and where we know capacity to be available.
195 // The capacity of the table of values is half of the size of the index.
222 static unsigned sizeForCapacity(unsigned capacity);
224 // Check if capacity is available.
365 // ensure capacity is available.
467 result += (m_deletedOffsets->capacity() * sizeof(unsigned));
475 // we know capacity to be available.
543 inline unsigned PropertyTable::sizeForCapacity(unsigned capacity) argument
[all...]
/external/llvm/include/llvm/ADT/
H A DSmallVector.h50 /// capacity_in_bytes - This returns capacity()*sizeof(T).
129 /// capacity - Return the total number of elements in the currently allocated
131 size_t capacity() const { return capacity_ptr() - begin(); } function in class:llvm::SmallVectorTemplateCommon
268 size_t CurCapacity = this->capacity();
404 if (this->capacity() < N)
416 if (this->capacity() < N)
424 if (this->capacity() < N)
470 if (this->capacity() < NumElts)
692 /// capacity for.
696 /// Clients can use this in conjunction with capacity() t
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DBufferUtils.java82 * Creates a clone of the given buffer. The clone's capacity is
116 int allocated = buffer.capacity();
1110 totalHeld += b.capacity();
1111 bBufsM += b.capacity();
1114 totalHeld += b.capacity() * 4;
1115 fBufsM += b.capacity() * 4;
1118 totalHeld += b.capacity() * 4;
1119 iBufsM += b.capacity() * 4;
1122 totalHeld += b.capacity() * 2;
1123 sBufsM += b.capacity() *
[all...]
/external/icu4c/common/
H A Duniset.cpp146 len(1), capacity(1 + START_EXTRA), list(0), bmpSet(0), buffer(0),
155 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity);
173 len(1), capacity(1 + START_EXTRA), list(0), bmpSet(0), buffer(0),
182 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity);
198 len(0), capacity(o.isFrozen() ? o.len : o.len + GROW_EXTRA), list(0),
209 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity);
222 len(0), capacity(o.len + GROW_EXTRA), list(0),
233 list = (UChar32*) uprv_malloc(sizeof(UChar32) * capacity);
1456 if (len < capacity) {
1457 // Make the capacity equa
[all...]
H A Duchar.c598 UScriptCode *scripts, int32_t capacity,
607 if(capacity<0 || (capacity>0 && scripts==NULL)) {
613 if(capacity==0) {
628 if(length<capacity) {
633 if(length>capacity) {
597 uscript_getScriptExtensions(UChar32 c, UScriptCode *scripts, int32_t capacity, UErrorCode *pErrorCode) argument
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DGeometryBatchFactory.java32 for (int i = 0; i < inBuf.capacity() / 3; i++) {
52 for (int i = 0; i < inBuf.capacity() / 3; i++) {
72 for (int i = 0; i < inBuf.capacity() / components; i++) {
239 lodSize[i] += g.getMesh().getLodLevel(i).getData().capacity();
259 //System.out.println("buffer: " + buffer.capacity() + " limit: " + lodSize[i] + " " + index);
260 for (int j = 0; j < buffer.capacity(); j++) {
264 bufferPos[i] += buffer.capacity();
/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.h866 * @param resultCapacity capacity of the fillin buffer
910 * @param capacity capacity of the buffer
921 int32_t capacity,
930 * @param capacity capacity of the buffer
947 int32_t capacity,
957 * is undefined if the buffer capacity (resultLength parameter) is too small.
1376 * @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.h474 * @param capacity the length of the supplied vector. A length of zero causes
483 ubrk_getRuleStatusVec(UBreakIterator *bi, int32_t *fillInVec, int32_t capacity, UErrorCode *status);
/external/icu4c/i18n/
H A Dtblcoll.cpp463 int32_t RuleBasedCollator::cloneBinary(uint8_t *buffer, int32_t capacity, UErrorCode &status) argument
465 return ucol_cloneBinary(ucollator, buffer, capacity, &status);
669 int32_t capacity,
672 return ucol_getShortDefinitionString(ucollator, locale, buffer, capacity, &status);
667 internalGetShortDefinitionString(const char *locale, char *buffer, int32_t capacity, UErrorCode &status) const argument
H A Ducol_cnt.h55 int32_t capacity; member in struct:CntTable
/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);

Completed in 3004 milliseconds

1234567891011>>