/frameworks/base/libs/hwui/utils/ |
SortedList.h | 59 inline size_t capacity() const { function in class:android::uirenderer::SortedList 60 return VectorImpl::capacity();
|
/libcore/luni/src/main/java/java/nio/ |
CharToByteBufferAdapter.java | 45 super(byteBuffer.capacity() / SizeOf.CHAR); 71 limit = capacity;
|
DoubleToByteBufferAdapter.java | 45 super(byteBuffer.capacity() / SizeOf.DOUBLE); 71 limit = capacity;
|
FloatToByteBufferAdapter.java | 44 super(byteBuffer.capacity() / SizeOf.FLOAT); 70 limit = capacity;
|
IntToByteBufferAdapter.java | 45 super(byteBuffer.capacity() / SizeOf.INT); 71 limit = capacity;
|
LongToByteBufferAdapter.java | 45 super(byteBuffer.capacity() / SizeOf.LONG); 71 limit = capacity;
|
ShortToByteBufferAdapter.java | 44 super(byteBuffer.capacity() / SizeOf.SHORT); 70 limit = capacity;
|
/libcore/luni/src/main/java/java/util/ |
AbstractQueue.java | 47 * immediately without violating capacity restrictions, returning 57 * time due to capacity restrictions
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldStringBufferTest.java | 45 assertEquals("Failed to increase capacity.", 10, sb.capacity());
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum_methods.h | 108 if (__old_size + __s_size > this->capacity()) { 132 if (__old_size + __s_size > this->capacity()) {
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
stl_tempbuf.h | 76 * capacity (in the units of sizeof(Tp)), or a pair of 0 values if 77 * no storage can be obtained." Note that the capacity obtained
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_tempbuf.h | 76 * capacity (in the units of sizeof(Tp)), or a pair of 0 values if 77 * no storage can be obtained." Note that the capacity obtained
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum_methods.h | 108 if (__old_size + __s_size > this->capacity()) { 132 if (__old_size + __s_size > this->capacity()) {
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_tempbuf.h | 76 * capacity (in the units of sizeof(Tp)), or a pair of 0 values if 77 * no storage can be obtained." Note that the capacity obtained
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum_methods.h | 108 if (__old_size + __s_size > this->capacity()) { 132 if (__old_size + __s_size > this->capacity()) {
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentHashMap.java | 85 * The default initial capacity for this table, 103 * The maximum capacity, used if a higher value is implicitly 270 * (The value of this field is always <tt>(int)(capacity * 419 if (c++ > threshold) // ensure capacity 569 * capacity, load factor and concurrency level. 571 * @param initialCapacity the initial capacity. The implementation 579 * @throws IllegalArgumentException if the initial capacity is 616 * Creates a new, empty map with the specified initial capacity 624 * @throws IllegalArgumentException if the initial capacity of 634 * Creates a new, empty map with the specified initial capacity, [all...] |
/external/astl/include/ |
string | 121 // and capacity are both 0 on return. If you want to keep the 134 // Internally, the capacity of the buffer remains unchanged. If 181 // @return Number of elements for which memory has been allocated. capacity >= size(). 182 size_type capacity() const { return mCapacity; } 184 // Change the capacity to new_size. No effect if new_size < size().
|
/external/guava/src/com/google/common/collect/ |
LinkedHashMultimap.java | 92 * Constructs an empty {@code LinkedHashMultimap} with enough capacity to hold 134 Maps.capacity(multimap.keySet().size()))); 136 = new LinkedHashSet<Map.Entry<K, V>>(Maps.capacity(multimap.size())); 150 return new LinkedHashSet<V>(Maps.capacity(expectedValuesPerKey)); 367 setMap(new LinkedHashMap<K, Collection<V>>(Maps.capacity(distinctKeys)));
|
/external/icu4c/i18n/ |
msgfmt.cpp | 389 * Allocate subformats[] to at least the given capacity and return 395 UBool MessageFormat::allocateSubformats(int32_t capacity) { 397 subformats = (Subformat*) uprv_malloc(sizeof(*subformats) * capacity); 398 subformatCapacity = capacity; 404 } else if (subformatCapacity < capacity) { 405 if (capacity < 2*subformatCapacity) { 406 capacity = 2*subformatCapacity; 409 uprv_realloc(subformats, sizeof(*subformats) * capacity); 414 subformatCapacity = capacity; 420 * Allocate argTypes[] to at least the given capacity and retur [all...] |
/external/icu4c/io/ |
ustdio.c | 107 file->fTranslit->capacity = 0; 156 if(newlen > f->fTranslit->capacity) 170 f->fTranslit->capacity = newlen; 191 f->fTranslit->capacity, 211 f->fTranslit->capacity,
|
/external/icu4c/test/intltest/ |
dcfmtest.cpp | 134 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/WebCore/history/ |
PageCache.cpp | 196 PCLOG(" -The back/forward list is disabled or has 0 capacity"); 319 void PageCache::setCapacity(int capacity) 321 ASSERT(capacity >= 0); 322 m_capacity = max(capacity, 0); 448 // FIXME: <rdar://problem/5211190> This limit of 42 risks growing the page cache far beyond its nominal capacity.
|
/external/webkit/Source/WebKit/qt/Api/ |
qwebhistory.cpp | 275 int capacity = lst->capacity(); local 278 lst->setCapacity(capacity); //revert capacity 470 return d->lst->capacity();
|
/system/media/mca/filterfw/native/core/ |
shader_program.cpp | 386 GLint capacity; local 391 glGetActiveUniform(program_, i, buffer_size, NULL, &capacity, &type, &name[0]); 715 GLint capacity; local 718 glGetActiveUniform(program_, IndexOfUniform(var), 128, NULL, &capacity, &type, name); 722 if (!CheckValueCount("Uniform (int)", name, capacity, components, count) 766 GLint capacity; local 769 glGetActiveUniform(program_, IndexOfUniform(var), 128, NULL, &capacity, &type, name); 773 if (!CheckValueCount("Uniform (float)", name, capacity, components, count) 842 GLint capacity; local 844 glGetActiveUniform(program_, IndexOfUniform(var), 0, NULL, &capacity, &type, NULL) [all...] |
/external/webkit/Source/JavaScriptCore/icu/unicode/ |
ucol.h | 595 * @param resultCapacity capacity of the fillin buffer 639 * @param capacity capacity of the buffer 650 int32_t capacity, 659 * @param capacity capacity of the buffer 676 int32_t capacity, [all...] |