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

<<21222324252627282930>>

  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
array 130 // Capacity.
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
array 130 // Capacity.
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HandleProfiling.java 218 byte[] stuff = new byte[data.capacity()];
  /system/media/mca/filterfw/jni/
jni_native_frame.cpp 270 return frame ? frame->Capacity() : -1;
  /dalvik/vm/
CheckJni.cpp     [all...]
  /external/chromium/net/http/
http_stream_parser.cc 348 read_buf_->SetCapacity(read_buf_->capacity() + kHeaderBufInitialSize);
405 DCHECK_LE(read_buf_->offset(), read_buf_->capacity());
534 if (read_buf_->capacity() < save_amount + additional_save_amount) {
  /external/chromium/third_party/libjingle/source/talk/base/
stream.h 141 // The buffer has a capacity of buf_len bytes. NULL is returned if there is
556 // Creates a FIFO buffer with the specified capacity.
561 // Resizes the buffer to the specified capacity. Fails if data_length_ > size
  /external/guava/src/com/google/common/collect/
LinkedListMultimap.java 131 * capacity.
138 * Constructs an empty {@code LinkedListMultimap} with enough capacity to hold
295 final Set<K> seenKeys = new HashSet<K>(Maps.capacity(keySet().size()));
  /external/icu4c/tools/icuswap/
icuswap.cpp 290 char pkg[], int32_t capacity,
309 if(len>=capacity) {
311 (long)capacity);
  /external/v8/src/
scanner-base.h 208 int capacity = Max(min_capacity, backing_store_.length()); local
209 int new_capacity = Min(capacity * kGrowthFactory, capacity + kMaxGrowth);
  /external/webkit/Source/JavaScriptCore/icu/unicode/
utf16.h 296 * @param capacity size of the string buffer
302 #define U16_APPEND(s, i, capacity, c, isError) { \
305 } else if((uint32_t)(c)<=0x10ffff && (i)+1<(capacity)) { \
  /external/webkit/Source/JavaScriptCore/wtf/
ListHashSet.h 86 int capacity() const;
424 inline int ListHashSet<T, inlineCapacity, U>::capacity() const function in class:WTF::ListHashSet
426 return m_impl.capacity();
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
utf16.h 296 * @param capacity size of the string buffer
302 #define U16_APPEND(s, i, capacity, c, isError) { \
305 } else if((uint32_t)(c)<=0x10ffff && (i)+1<(capacity)) { \
  /external/webkit/Source/WebCore/icu/unicode/
utf16.h 296 * @param capacity size of the string buffer
302 #define U16_APPEND(s, i, capacity, c, isError) { \
305 } else if((uint32_t)(c)<=0x10ffff && (i)+1<(capacity)) { \
  /external/webkit/Source/WebKit/efl/ewk/
ewk_history.cpp 382 * Get maximum capacity of given history.
391 return core->capacity();
395 * Set maximum capacity of given history.
ewk_tiled_model.c 635 * Change cache capacity, in bytes.
647 * Retrieve maximum cache capacity, in bytes.
656 * Retrieve the used cache capacity, in bytes.
  /external/webkit/Source/WebKit/mac/icu/unicode/
utf16.h 296 * @param capacity size of the string buffer
302 #define U16_APPEND(s, i, capacity, c, isError) { \
305 } else if((uint32_t)(c)<=0x10ffff && (i)+1<(capacity)) { \
  /frameworks/base/media/libstagefright/
MPEG2TSWriter.cpp 211 CHECK_LE(out->size() + 4 + length, out->capacity());
234 CHECK_LE(out->size() + 4 + length, out->capacity());
282 > mAACBuffer->capacity()) {
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoder.java 233 if (output.capacity() == 0) {
236 CharBuffer result = CharBuffer.allocate(output.capacity() * 2);
255 * output is being written to has reached its capacity. In the event of this
  /libcore/luni/src/main/java/java/util/
BitSet.java 333 * Clears all the bits in this {@code BitSet}. This method does not change the capacity.
334 * Use {@code clear} if you want to reuse this {@code BitSet} with the same capacity, but
517 * Returns the capacity in bits of the array implementing this {@code BitSet}. This is
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
vstring.tcc 66 if (__len <= this->capacity() && !this->_M_is_shared())
104 if (__new_size <= this->capacity() && !this->_M_is_shared())
134 if (__new_size <= this->capacity() && !this->_M_is_shared())
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring.tcc 66 if (__len <= this->capacity() && !this->_M_is_shared())
104 if (__new_size <= this->capacity() && !this->_M_is_shared())
134 if (__new_size <= this->capacity() && !this->_M_is_shared())
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
vstring.tcc 66 if (__len <= this->capacity() && !this->_M_is_shared())
104 if (__new_size <= this->capacity() && !this->_M_is_shared())
134 if (__new_size <= this->capacity() && !this->_M_is_shared())
  /external/chromium/googleurl/src/
url_canon.h 83 // Returns the current capacity of the buffer. The length() is the number of
84 // characters that have been declared to be written, but the capacity() is
86 // write many characters at once, it can make sure there is enough capacity,
88 int capacity() const { function in class:url_canon::CanonOutputT
107 // This MUST NOT be used to expand the size of the buffer beyond capacity().
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 93 unsigned Capacity = 1024;
94 while (Capacity < Size) Capacity *= 2;
95 StartOfBuffer = new char[Capacity];
96 StartOfData = EndOfBuffer = StartOfBuffer + Capacity;
    [all...]

Completed in 638 milliseconds

<<21222324252627282930>>