HomeSort by relevance Sort by last modified time
    Searched refs:capacity (Results 151 - 175 of 902) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/stlport/stlport/stl/debug/
_string.h 76 if (this->capacity() > __old_capacity) {
193 // Size, capacity, etc.
199 if (__n > capacity())
206 size_type capacity() const { return _M_non_dbg_impl.capacity(); } function in class:basic_string
209 if (__s > capacity()) _Invalidate_all();
246 size_type __old_capacity = capacity();
258 size_type __old_capacity = capacity();
266 size_type __old_capacity = capacity();
274 size_type __old_capacity = capacity();
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 76 if (this->capacity() > __old_capacity) {
193 // Size, capacity, etc.
199 if (__n > capacity())
206 size_type capacity() const { return _M_non_dbg_impl.capacity(); } function in class:basic_string
209 if (__s > capacity()) _Invalidate_all();
246 size_type __old_capacity = capacity();
258 size_type __old_capacity = capacity();
266 size_type __old_capacity = capacity();
274 size_type __old_capacity = capacity();
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 76 if (this->capacity() > __old_capacity) {
193 // Size, capacity, etc.
199 if (__n > capacity())
206 size_type capacity() const { return _M_non_dbg_impl.capacity(); } function in class:basic_string
209 if (__s > capacity()) _Invalidate_all();
246 size_type __old_capacity = capacity();
258 size_type __old_capacity = capacity();
266 size_type __old_capacity = capacity();
274 size_type __old_capacity = capacity();
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 76 if (this->capacity() > __old_capacity) {
193 // Size, capacity, etc.
199 if (__n > capacity())
206 size_type capacity() const { return _M_non_dbg_impl.capacity(); } function in class:basic_string
209 if (__s > capacity()) _Invalidate_all();
246 size_type __old_capacity = capacity();
258 size_type __old_capacity = capacity();
266 size_type __old_capacity = capacity();
274 size_type __old_capacity = capacity();
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 76 if (this->capacity() > __old_capacity) {
193 // Size, capacity, etc.
199 if (__n > capacity())
206 size_type capacity() const { return _M_non_dbg_impl.capacity(); } function in class:basic_string
209 if (__s > capacity()) _Invalidate_all();
246 size_type __old_capacity = capacity();
258 size_type __old_capacity = capacity();
266 size_type __old_capacity = capacity();
274 size_type __old_capacity = capacity();
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 76 if (this->capacity() > __old_capacity) {
193 // Size, capacity, etc.
199 if (__n > capacity())
206 size_type capacity() const { return _M_non_dbg_impl.capacity(); } function in class:basic_string
209 if (__s > capacity()) _Invalidate_all();
246 size_type __old_capacity = capacity();
258 size_type __old_capacity = capacity();
266 size_type __old_capacity = capacity();
274 size_type __old_capacity = capacity();
    [all...]
  /external/v8/src/
unicode-inl.h 161 unsigned capacity, unsigned& offset) {
162 if (offset >= capacity) return false;
169 unsigned capacity, unsigned& offset) {
171 if ((aligned + sizeof(uchar)) > capacity)
185 bool CharacterStream::EncodeCharacter(uchar c, byte* buffer, unsigned capacity,
188 return EncodeAsciiCharacter(c, buffer, capacity, offset);
190 return EncodeNonAsciiCharacter(c, buffer, capacity, offset);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
AbstractDirectory.java 48 private int capacity; field in class:AbstractDirectory
54 * @param capacity the initial capacity of the new instance
60 int capacity, boolean readOnly, boolean isRoot) {
63 this.capacity = capacity;
117 if (newEntries.size() > capacity)
135 this.capacity = (int) newCount;
143 * Returns the current capacity of this {@code AbstractDirectory}.
150 return this.capacity;
    [all...]
  /external/chromium/chrome/browser/renderer_host/
web_cache_manager.cc 129 entry->second.capacity = stats.capacity;
177 stats->capacity += elmt->second.capacity;
286 // This is the capacity this renderer has been allocated.
287 size_t capacity = allocation->second; local
296 // capacity lower.
297 size_t max_dead_capacity = capacity;
301 capacity));
332 active.capacity / 1024 / 1024)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
WriterTest.java 107 MockWriter(int capacity) {
108 contents = new char[capacity];
109 length = capacity;
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLEngineImpl.java 443 // check the destination buffers and count their capacity
444 int capacity = 0; local
453 capacity += dsts[i].remaining();
455 if (capacity < recordProtocol.getDataSize(src.remaining())) {
603 int capacity = dst.remaining(); local
608 if (capacity < recordProtocol.getRecordSize(2)) {
643 if (capacity < recordProtocol.getMinRecordSize()) {
645 logger.println("Capacity of the destination("
646 +capacity+") < MIN_PACKET_SIZE("
658 if ((capacity < SSLRecordProtocol.MAX_SSL_PACKET_SIZE) &
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
Vector.h 313 size_t capacity() const { return m_capacity; } function in class:WTF::VectorBufferBase
330 VectorBufferBase(T* buffer, size_t capacity)
332 , m_capacity(capacity)
357 VectorBuffer(size_t capacity)
361 if (capacity)
362 allocateBuffer(capacity);
384 using Base::capacity;
403 VectorBuffer(size_t capacity)
406 if (capacity > inlineCapacity)
407 Base::allocateBuffer(capacity);
532 size_t capacity() const { return m_buffer.capacity(); } function in class:WTF::Vector
    [all...]
  /cts/suite/audio_quality/lib/src/audio/
Buffer.cpp 24 Buffer::Buffer(size_t capacity, size_t size, bool stereo)
25 : mCapacity(capacity),
30 mData = new char[capacity];
31 //LOGV("Buffer %d data %x", capacity, (unsigned int)mData);
36 memset(mData, capacity, 0);
  /external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java 50 public CharArrayBuffer(int capacity) {
52 if (capacity < 0) {
53 throw new IllegalArgumentException("Buffer capacity may not be negative");
55 this.buffer = new char[capacity];
176 public int capacity() { method in class:CharArrayBuffer
  /external/clang/test/SemaCXX/
flexible-array-test.cpp 62 unsigned capacity; member in struct:rdar9065507::StorageBase
  /external/guava/guava/src/com/google/common/collect/
Queues.java 52 public static <E> ArrayBlockingQueue<E> newArrayBlockingQueue(int capacity) {
53 return new ArrayBlockingQueue<E>(capacity);
99 * Creates a {@code LinkedBlockingQueue} with the given (fixed) capacity.
101 * @param capacity the capacity of this queue
103 * @throws IllegalArgumentException if {@code capacity} is less than 1
105 public static <E> LinkedBlockingQueue<E> newLinkedBlockingQueue(int capacity) {
106 return new LinkedBlockingQueue<E>(capacity);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedHashMultiset.java 41 * capacity.
80 super(new LinkedHashMap<E, Count>(Maps.capacity(distinctElements)));
  /external/icu4c/common/unicode/
strenum.h 227 * Capacity of chars, for use with default implementations and subclasses.
239 * Ensures that chars is at least as large as the requested capacity.
242 * @param capacity Requested capacity.
246 void ensureCharsCapacity(int32_t capacity, UErrorCode &status);
  /external/javassist/src/main/javassist/bytecode/
LongVector.java 38 public int capacity() { return objects.length * ASIZE; } method in class:LongVector
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioBuffer.java 73 return (float) audioData.capacity() / bytesPerSec;
  /external/tinyxml/
tinystr.h 34 * - added swap(), clear(), size(), capacity(), operator+().
141 // Return capacity of string
142 size_type capacity () const { return rep_->capacity; } function in class:TiXmlString
212 size_type size, capacity;
222 rep_->capacity = cap;
  /external/webkit/Source/WebCore/history/
PageCache.h 50 int capacity() { return m_capacity; } function in class:WebCore::PageCache
52 void add(PassRefPtr<HistoryItem>, Page*); // Prunes if capacity() is exceeded.
  /external/webkit/Source/WebKit/efl/ewk/
ewk_settings.h 59 EAPI void ewk_settings_cache_capacity_set(unsigned capacity);
  /external/webkit/Source/WebKit/mac/History/
WebBackForwardList.h 122 @method capacity
126 - (int)capacity;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 40 int capacity = format.getSize(); local
41 nativeAllocate(capacity);
42 setReusable(capacity != 0);
234 private native boolean nativeAllocate(int capacity);

Completed in 2586 milliseconds

1 2 3 4 5 67 8 91011>>