HomeSort by relevance Sort by last modified time
    Searched refs:SetCapacity (Results 1 - 25 of 50) sorted by null

1 2

  /external/lzma/CPP/Common/
DynamicBuffer.h 23 SetCapacity(newCap);
34 SetCapacity(buffer._capacity);
Buffer.h 22 CBuffer(size_t size): _items(0), _capacity(0) { SetCapacity(size); }
27 void SetCapacity(size_t newCapacity)
49 SetCapacity(buffer._capacity);
MyString.h 162 void SetCapacity(int newCapacity)
198 SetCapacity(_capacity + delta);
208 CStringBase(): _chars(0), _length(0), _capacity(0) { SetCapacity(3); }
211 SetCapacity(1);
219 SetCapacity(length);
225 SetCapacity(s._length);
240 SetCapacity(minBufLength);
257 SetCapacity(1);
267 SetCapacity(length);
277 SetCapacity(s._length);
    [all...]
  /external/chromium_org/net/socket/
buffered_write_stream_socket.cc 19 dst->SetCapacity(old_capacity + src_len);
146 backup_buffer_->SetCapacity(0);
150 io_buffer_->SetCapacity(0);
156 io_buffer_->SetCapacity(0);
  /external/chromium_org/device/bluetooth/
bluetooth_socket_chromeos.cc 88 buffer->SetCapacity(count);
90 buffer->SetCapacity(1024);
96 buffer->SetCapacity(buffer->capacity() * 2);
bluetooth_socket_win.cc 77 buffer->SetCapacity(1024);
81 buffer->SetCapacity(buffer->capacity() * 2);
  /external/chromium/third_party/libjingle/source/talk/base/
buffer.h 86 SetCapacity(length);
89 void SetCapacity(size_t capacity) {
  /external/chromium_org/third_party/libjingle/source/talk/base/
buffer.h 86 SetCapacity(length);
89 void SetCapacity(size_t capacity) {
buffer_unittest.cc 124 buf.SetCapacity(sizeof(kTestData) / 2); // should be ignored
132 buf.SetCapacity(sizeof(kTestData) * 2);
140 buf.SetCapacity(sizeof(kTestData) * 4);
  /external/chromium/net/base/
io_buffer.h 105 void SetCapacity(int capacity);
io_buffer.cc 86 void GrowableIOBuffer::SetCapacity(int capacity) {
  /external/chromium_org/net/base/
io_buffer.h 178 // buf->SetCapacity(1024); // Initial capacity.
183 // buf->SetCapacity(buf->capacity() * 2);
193 void SetCapacity(int capacity);
io_buffer.cc 93 void GrowableIOBuffer::SetCapacity(int capacity) {
  /external/chromium_org/net/tools/quic/
quic_spdy_client_stream.cc 36 read_buf_->SetCapacity(read_buf_->capacity() + kHeaderBufInitialSize);
quic_spdy_server_stream.cc 35 read_buf_->SetCapacity(read_buf_->capacity() + kHeaderBufInitialSize);
  /external/chromium_org/content/browser/devtools/
tethering_handler.cc 70 wire_buffer_->SetCapacity(kBufferSize);
87 wire_buffer_->SetCapacity(wire_buffer_->capacity() * 2);
  /external/chromium/net/http/
http_stream_parser.cc 348 read_buf_->SetCapacity(read_buf_->capacity() + kHeaderBufInitialSize);
448 read_buf_->SetCapacity(extra_bytes);
471 read_buf_->SetCapacity(0);
476 read_buf_->SetCapacity(0);
535 read_buf_->SetCapacity(save_amount + additional_save_amount);
  /external/chromium_org/net/http/
http_stream_parser.cc 510 read_buf_->SetCapacity(read_buf_->capacity() + kHeaderBufInitialSize);
603 read_buf_->SetCapacity(extra_bytes);
641 read_buf_->SetCapacity(0);
646 read_buf_->SetCapacity(0);
733 read_buf_->SetCapacity(save_amount + additional_save_amount);
    [all...]
  /external/chromium_org/content/browser/loader/
redirect_to_file_resource_handler.cc 114 buf_->SetCapacity(next_buffer_size_);
  /external/chromium_org/third_party/leveldatabase/src/util/
cache.cc 141 void SetCapacity(size_t capacity) { capacity_ = capacity; }
289 shard_[s].SetCapacity(per_shard);
  /external/chromium_org/webkit/browser/appcache/
appcache_url_request_job.cc 187 handler_source_buffer_->SetCapacity(kLimit);
205 handler_source_buffer_->SetCapacity(result); // Free up some memory.
  /external/lzma/CPP/7zip/UI/Common/
OpenArchive.cpp 149 byteBuffer.SetCapacity(kBufferSize);
159 hashBuffer.SetCapacity(kNumVals);
217 byteBuffer.SetCapacity(kBufferSize);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tools.pas 132 procedure SetCapacity(Value: Integer);
179 property Capacity: Integer read GetCapacity write SetCapacity;
221 procedure SetCapacity(Value: Integer);
253 procedure SetCapacity(ACapacity: Integer);
517 procedure TList<T>.SetCapacity(Value: Integer);
571 procedure TDictionary<TKey,TValue>.SetCapacity(ACapacity: Integer);
715 SetCapacity(ACapacity);
828 SetCapacity(0);
833 SetCapacity(FCount);
  /external/chromium/net/websockets/
websocket.cc 152 current_read_buf_->SetCapacity(max_pending_send_allowed_);
388 current_read_buf_->SetCapacity(
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host_tcp.cc 223 read_buffer_->SetCapacity(kReadBufferSize);
229 read_buffer_->SetCapacity(read_buffer_->capacity() + kReadBufferSize -

Completed in 486 milliseconds

1 2