HomeSort by relevance Sort by last modified time
    Searched refs:capacity (Results 176 - 200 of 1183) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu4c/i18n/
udatpg.cpp 59 UChar *bestPattern, int32_t capacity,
63 bestPattern, capacity, pErrorCode);
70 UChar *bestPattern, int32_t capacity,
81 return result.extract(bestPattern, capacity, *pErrorCode);
87 UChar *skeleton, int32_t capacity,
98 return result.extract(skeleton, capacity, *pErrorCode);
104 UChar *skeleton, int32_t capacity,
115 return result.extract(skeleton, capacity, *pErrorCode);
122 UChar *conflictingPattern, int32_t capacity, int32_t *pLength,
135 int32_t length=conflictingPatternString.extract(conflictingPattern, capacity, *pErrorCode)
    [all...]
  /external/srec/portable/src/
phashtable.c 91 tmp->args.capacity = PHASH_TABLE_DEFAULT_CAPACITY;
106 tmp->entries = NEW_ARRAY(PHashTableEntry *, tmp->args.capacity, memTag);
114 for (i = tmp->args.capacity; i > 0;)
121 tmp->threshold = (unsigned int)(tmp->args.capacity * tmp->args.maxLoadFactor);
218 idx = hashCode % table->args.capacity;
265 idx = hashCode % table->args.capacity;
277 unsigned int oldCapacity = table->args.capacity;
290 table->args.capacity = newCapacity;
349 idx = hashCode % table->args.capacity;
365 idx = hashCode % table->args.capacity;
    [all...]
  /external/chromium_org/third_party/icu/source/common/
uts46.cpp 600 int32_t capacity=dest.getCapacity(); local
612 if(length==capacity) {
619 capacity=dest.getCapacity();
693 UChar *unicodeBuffer=fromPunycode.getBuffer(-1); // capacity==-1: most labels should fit
695 // Should never occur if we used capacity==-1 which uses the internal buffer.
    [all...]
  /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...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/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/chromium_org/v8/src/
hashmap.h 43 // The default capacity. This is used by the call sites which want
45 // default value of capacity specified by the implementation.
51 uint32_t capacity = kDefaultHashMapCapacity,
85 // The capacity of the table. The implementation
87 // the table capacity.
88 uint32_t capacity() const { return capacity_; } function in class:v8::internal::TemplateHashMapImpl
109 void Initialize(uint32_t capacity, AllocationPolicy allocator);
279 uint32_t capacity, AllocationPolicy allocator) {
280 ASSERT(IsPowerOf2(capacity));
281 map_ = reinterpret_cast<Entry*>(allocator.New(capacity * sizeof(Entry)))
    [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/chromium_org/chrome/browser/renderer_host/
web_cache_manager.cc 137 entry->second.capacity = stats.capacity;
205 stats->capacity += elmt->second.capacity;
315 // This is the capacity this renderer has been allocated.
316 size_t capacity = allocation->second; local
323 // We allow the dead objects to consume up to half of the cache capacity.
324 size_t max_dead_capacity = capacity / 2;
328 capacity));
362 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;
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
StrictLineReader.java 63 * Constructs a new {@code LineReader} with the specified charset and the default capacity.
76 * Constructs a new {@code LineReader} with the specified capacity and charset.
79 * @param capacity the capacity of the buffer.
83 * @throws IllegalArgumentException if {@code capacity} is negative or zero
86 public StrictLineReader(InputStream in, int capacity, Charset charset) {
90 if (capacity < 0) {
91 throw new IllegalArgumentException("capacity <= 0");
99 buf = new byte[capacity];
  /libcore/crypto/src/main/java/org/conscrypt/
SSLEngineImpl.java 442 // check the destination buffers and count their capacity
443 int capacity = 0; local
452 capacity += dsts[i].remaining();
454 if (capacity < recordProtocol.getDataSize(src.remaining())) {
602 int capacity = dst.remaining(); local
607 if (capacity < recordProtocol.getRecordSize(2)) {
642 if (capacity < recordProtocol.getMinRecordSize()) {
644 logger.println("Capacity of the destination("
645 +capacity+") < MIN_PACKET_SIZE("
657 if ((capacity < SSLRecordProtocol.MAX_SSL_PACKET_SIZE) &
    [all...]
  /art/runtime/gc/accounting/
atomic_stack.h 36 // Capacity is how many elements we can store in the stack.
37 static AtomicStack* Create(const std::string& name, size_t capacity) {
38 UniquePtr<AtomicStack> mark_stack(new AtomicStack(name, capacity));
124 size_t Capacity() const {
155 AtomicStack(const std::string& name, const size_t capacity)
160 capacity_(capacity),
  /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/chromium_org/chrome/browser/extensions/api/system_memory/
memory_info_provider.cc 32 info_.capacity = static_cast<double>(base::SysInfo::AmountOfPhysicalMemory());
  /external/chromium_org/chrome/renderer/
chrome_render_process_observer.h 63 size_t capacity);
  /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/net/http/
http_pipelined_host_impl.cc 149 int capacity = 0; local
153 capacity = max_pipeline_depth();
160 capacity = 1;
166 return capacity;
197 pipeline_dict->SetInteger("capacity", GetPipelineCapacity());

Completed in 932 milliseconds

1 2 3 4 5 6 78 91011>>