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

1 2

  /external/chromium/net/tools/flip_server/
buffer_interface.h 95 virtual bool Reserve(int size) = 0;
ring_buffer.h 70 // not to inadvertently resize the buffer using Reserve(). If the reserve
79 virtual bool Reserve(int size);
simple_buffer.cc 88 (void)Reserve(size);
139 // Attempts to reserve a contiguous block of buffer space by either reclaiming
141 bool SimpleBuffer::Reserve(int size) {
simple_buffer.h 58 virtual bool Reserve(int size);
ring_buffer.cc 184 bool RingBuffer::Reserve(int size) {
balsa_headers.cc 126 char* storage = Reserve(sp.size(), block_buffer_idx);
131 char* BalsaBuffer::Reserve(size_t size,
354 char* storage = balsa_buffer_.Reserve(line_size, &block_buffer_idx);
377 // Figure out how much space we need to reserve for the new header size.
389 char* storage = balsa_buffer_.Reserve(new_size, &block_buffer_idx);
733 str->reserve(str->size() + GetSizeForWriteBuffer());
829 char* storage = balsa_buffer_.Reserve(line_size, &firstline_buffer_base_idx_);
    [all...]
balsa_headers.h 157 char* Reserve(size_t size, Blocks::size_type* block_buffer_idx);
    [all...]
  /external/ceres-solver/internal/ceres/
triplet_sparse_matrix.h 84 void Reserve(int new_max_num_nonzeros);
triplet_sparse_matrix.cc 99 Reserve(proto.num_nonzeros());
132 void TripletSparseMatrix::Reserve(int new_max_num_nonzeros) {
236 Reserve(num_nonzeros_ + B.num_nonzeros_);
247 Reserve(num_nonzeros_ + B.num_nonzeros_);
triplet_sparse_matrix_test.cc 70 EXPECT_DEATH_IF_SUPPORTED(m.Reserve(1), "Reallocation will cause data loss");
73 m.Reserve(50);
76 m.Reserve(3);
99 m.Reserve(1);
block_sparse_matrix.cc 215 matrix->Reserve(num_nonzeros_);
  /external/protobuf/src/google/protobuf/
repeated_field.cc 42 void RepeatedPtrFieldBase::Reserve(int new_size) {
repeated_field.h 94 // Reserve space to expand the field to at least the given size. If the
96 void Reserve(int new_size);
207 void Reserve(int new_size);
331 // Reserve space to expand the field to at least the given size. This only
334 void Reserve(int new_size);
476 if (current_size_ == total_size_) Reserve(total_size_ + 1);
482 if (current_size_ == total_size_) Reserve(total_size_ + 1);
499 Reserve(current_size_ + other.current_size_);
574 // Avoid inlining of Reserve(): new, memcpy, and delete[] lead to a significant
577 void RepeatedField<Element>::Reserve(int new_size)
    [all...]
repeated_field_unittest.cc 184 // Reserve more than double the previous space in the field and expect the
185 // field to reserve exactly the amount specified.
187 field.Reserve(20);
193 // Reserve less than double the previous space in the field and expect the
196 field.Reserve(20);
197 field.Reserve(30);
203 // Reserve less than the previous space in the field and expect the
206 field.Reserve(20);
208 field.Reserve(10);
396 field.Reserve(20)
    [all...]
  /external/v8/src/
small-pointer-list.h 48 Reserve(capacity);
51 void Reserve(int capacity) {
ast.cc 426 receiver_types_.Reserve(kMaxKeyedPolymorphism);
446 receiver_types_.Reserve(kMaxKeyedPolymorphism);
459 receiver_types_.Reserve(kMaxKeyedPolymorphism);
    [all...]
type-info.cc 507 types->Reserve(4);
ast.h 271 void Reserve(int capacity) { list_.Reserve(capacity); }
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
output_string_test.cc 57 TEST_F(OutputStringTest, Reserve) {
  /external/open-vcdiff/src/
output_string_test.cc 57 TEST_F(OutputStringTest, Reserve) {
  /external/open-vcdiff/gtest/src/
gtest-internal-inl.h 446 clone->Reserve(size_);
455 void Reserve(int new_capacity) {
475 Reserve(new_capacity);
    [all...]
  /external/protobuf/gtest/src/
gtest-internal-inl.h 442 clone->Reserve(size_);
451 void Reserve(int new_capacity) {
471 Reserve(new_capacity);
    [all...]
  /external/libffi/src/sparc/
v8.S 119 ! Reserve frame space for all arguments in case
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3d.h 251 STDMETHOD_(HRESULT, Reserve) (THIS) PURE;
263 #define IDirect3DMaterial_Reserve(p) (p)->lpVtbl->Reserve(p)
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3D.H 251 STDMETHOD_(HRESULT, Reserve) (THIS) PURE;
263 #define IDirect3DMaterial_Reserve(p) (p)->lpVtbl->Reserve(p)

Completed in 460 milliseconds

1 2