HomeSort by relevance Sort by last modified time
    Searched defs:capacity (Results 1 - 25 of 228) sorted by null

1 2 3 4 5 6 7 8 910

  /external/flac/libFLAC/include/private/
md5.h 36 size_t capacity; member in struct:__anon1073
  /external/chromium_org/chrome/browser/extensions/api/system_storage/
storage_api_test_util.h 20 double capacity; member in struct:extensions::test::TestStorageUnitInfo
  /external/chromium_org/net/quic/
quic_data_writer.h 58 // offset must be within the writer's capacity.
64 size_t capacity() const { function in class:net::QuicDataWriter
  /external/chromium_org/third_party/icu/source/test/intltest/
textfile.h 57 UBool ensureCapacity(int32_t capacity);
64 int32_t capacity; member in class:TextFile
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/
single_rw_fifo.h 26 explicit SingleRwFifo(int capacity);
35 int capacity() const { return capacity_; } function in class:webrtc::SingleRwFifo
  /external/icu/icu4c/source/i18n/
bocsu.cpp 101 int32_t capacity; local
105 char *buffer=sink.GetAppendBuffer(1, length*2, scratch, (int32_t)sizeof(scratch), &capacity);
107 // We must have capacity>=SLOPE_MAX_BYTES in case u_writeDiff() writes that much,
110 if(capacity<16) {
112 capacity=(int32_t)sizeof(scratch);
115 uint8_t *lastSafe=p+capacity-SLOPE_MAX_BYTES;
  /external/icu/icu4c/source/test/intltest/
textfile.h 57 UBool ensureCapacity(int32_t capacity);
64 int32_t capacity; member in class:TextFile
  /external/bluetooth/bluedroid/osi/src/
fixed_queue.c 33 size_t capacity; member in struct:fixed_queue_t
36 fixed_queue_t *fixed_queue_new(size_t capacity) {
45 ret->enqueue_sem = semaphore_new(capacity);
54 ret->capacity = capacity;
  /external/chromium_org/chrome/installer/mini_installer/
mini_string.h 85 size_t capacity() const { function in class:mini_installer::StackString
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
inode_pool.h 49 size_t capacity() const { return max_nodes_; } function in class:nacl_io::INodePool
  /external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBufferBuilder.h 49 // Creates an ArrayBufferBuilder using the default capacity.
52 ArrayBufferBuilder(unsigned capacity)
56 m_buffer = ArrayBuffer::create(capacity, 1);
83 unsigned capacity() const function in class:WTF::ArrayBufferBuilder
95 // If set to false, the capacity won't be expanded and when appended data
SizeLimits.cpp 69 unsigned capacity; member in struct:WTF::SameSizeAsVectorWithInlineCapacity
  /external/chromium_org/third_party/icu/source/i18n/
bocsu.cpp 101 int32_t capacity; local
106 char *buffer=sink.GetAppendBuffer(1, length*2, scratch, (int32_t)sizeof(scratch), &capacity);
108 // We must have capacity>=SLOPE_MAX_BYTES in case u_writeDiff() writes that much,
111 if(capacity<16) {
113 capacity=(int32_t)sizeof(scratch);
116 uint8_t *lastSafe=p+capacity-SLOPE_MAX_BYTES;
ucol_cnt.h 55 int32_t capacity; member in struct:CntTable
  /external/deqp/framework/delibs/depool/
dePoolArray.h 44 int capacity; /*!< Number of allocated elements in the array. */ member in struct:dePoolArray_s
53 deBool dePoolArray_reserve (dePoolArray* arr, int capacity);
100 int capacity; \
108 DE_INLINE deBool TYPENAME##_reserve (TYPENAME* arr, int capacity) DE_UNUSED_FUNCTION; \
128 DE_INLINE deBool TYPENAME##_reserve (TYPENAME* arr, int capacity) \
130 if (capacity > arr->capacity) \
131 return dePoolArray_reserve((dePoolArray*)arr, capacity); \
137 if (size > arr->capacity) \
171 if ((arr->numElements + 1 >= arr->capacity) && !TYPENAME##_reserve(arr, arr->numElements + 1))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
VideoRenderer.java 128 yuvPlanes[i].limit(yuvPlanes[i].capacity());
143 src.position(0).limit(src.capacity());
145 dst.position(0).limit(dst.capacity());
  /external/chromium_org/third_party/WebKit/public/web/
WebCache.h 45 size_t capacity; member in struct:blink::WebCache::UsageStats
72 size_t capacity);
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_system.cpp 62 size_t capacity = 128; local
64 result.Resize(capacity);
65 if (getcwd(&result[0], capacity))
67 capacity *= 2;
  /external/chromium_org/third_party/icu/source/common/
unistr_case.cpp 113 int32_t capacity; local
115 capacity = US_STACKBUF_SIZE;
117 capacity = oldLength + 20;
120 if(!cloneArrayIfNeeded(capacity, capacity, FALSE, &bufferToDelete, TRUE)) {
uvector.h 84 int32_t capacity; member in class:UVector
uvectr64.h 62 int32_t capacity; member in class:UVector64
64 int32_t maxCapacity; // Limit beyond which capacity is not permitted to grow.
156 * Set the maximum allowed buffer capacity for this vector/stack.
158 * A Limit of zero means unlimited capacity.
203 if ((minimumCapacity >= 0) && (capacity >= minimumCapacity)) {
  /external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinystr.h 142 // Return capacity of string
143 size_type capacity () const { return rep_->capacity; } function in class:TiXmlString
213 size_type size, capacity;
231 rep_->capacity = cap;
  /external/chromium_org/third_party/skia/tests/
DynamicHashTest.cpp 27 int capacity() const { return this->INHERITED::capacity(); } function in class:__anon19996::Hash
46 ASSERT(hash.capacity() == 0);
49 ASSERT(hash.capacity() == 4);
52 ASSERT(hash.capacity() == 4);
55 ASSERT(hash.capacity() == 4);
58 ASSERT(hash.capacity() == 8);
61 ASSERT(hash.capacity() == 8);
197 ASSERT(hash.capacity() == 0);
201 ASSERT(hash.capacity() == 4)
    [all...]
  /external/chromium_org/third_party/webrtc/base/
atomicops.h 61 // Constructs an empty queue, with capacity 0.
66 // Constructs an empty queue with the given capacity.
67 FixedSizeLockFreeQueue(size_t capacity) : pushed_count_(0),
69 capacity_(capacity),
70 data_(new T[capacity]) {}
77 LOG(LS_WARNING) << "Queue capacity is 0.";
97 LOG(LS_WARNING) << "Queue capacity is 0.";
133 // range [0, capacity]
136 // Returns the capacity of the queue (max size).
137 size_t capacity() const { return capacity_; function in class:rtc::FixedSizeLockFreeQueue
    [all...]
buffer.h 21 // Unlike std::string/vector, does not initialize data when expanding capacity.
30 Buffer(const void* data, size_t length, size_t capacity) {
31 Construct(data, length, capacity);
41 size_t capacity() const { return capacity_; } function in class:rtc::Buffer
72 void SetCapacity(size_t capacity) {
73 if (capacity > capacity_) {
74 rtc::scoped_ptr<char[]> data(new char[capacity]);
77 capacity_ = capacity;
90 void Construct(const void* data, size_t length, size_t capacity) {
91 data_.reset(new char[capacity_ = capacity]);
    [all...]

Completed in 1324 milliseconds

1 2 3 4 5 6 7 8 910