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

12 3

  /external/open-vcdiff/src/
output_string_test.cc 57 TEST_F(OutputStringTest, Reserve) {
  /external/ceres-solver/internal/ceres/
triplet_sparse_matrix.cc 105 void TripletSparseMatrix::Reserve(int new_max_num_nonzeros) {
193 Reserve(num_nonzeros_ + B.num_nonzeros_);
204 Reserve(num_nonzeros_ + B.num_nonzeros_);
block_sparse_matrix.cc 188 matrix->Reserve(num_nonzeros_);
  /external/lzma/CPP/Common/
MyVector.h 27 void Reserve(int newCapacity);
49 Reserve(Size() + size);
194 Reserve(Size() + size);
  /external/protobuf/src/google/protobuf/
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/chromium_org/third_party/protobuf/src/google/protobuf/
repeated_field.h 113 // Reserve space to expand the field to at least the given size. If the
115 void Reserve(int new_size);
273 void Reserve(int new_size);
432 // Reserve space to expand the field to at least the given size. This only
435 void Reserve(int new_size);
631 if (current_size_ == total_size_) Reserve(total_size_ + 1);
637 if (current_size_ == total_size_) Reserve(total_size_ + 1);
676 Reserve(current_size_ + other.current_size_);
746 // Avoid inlining of Reserve(): new, copy, and delete[] lead to a significant
749 void RepeatedField<Element>::Reserve(int new_size)
    [all...]
repeated_field_unittest.cc 185 // Reserve more than double the previous space in the field and expect the
186 // field to reserve exactly the amount specified.
188 field.Reserve(20);
194 // Reserve less than double the previous space in the field and expect the
197 field.Reserve(20);
198 field.Reserve(30);
204 // Reserve less than the previous space in the field and expect the
207 field.Reserve(20);
209 field.Reserve(10);
502 field.Reserve(20)
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zDecode.cpp 286 packSizesPointers.Reserve(numInStreams);
287 unpackSizesPointers.Reserve(numOutStreams);
324 inStreamPointers.Reserve(inStreams.Size());
7zExtract.cpp 40 ExtractStatuses.Reserve(1);
7zOut.cpp 623 emptyStreamVector.Reserve(db.Files.Size());
640 emptyFileVector.Reserve(numEmptyStreams);
641 antiVector.Reserve(numEmptyStreams);
717 boolVector.Reserve(db.Files.Size());
7zUpdate.cpp 717 fileIndexToUpdateIndexMap.Reserve(db->Files.Size());
1016 refItems.Reserve(numFiles);
1023 indices.Reserve(numFiles);
  /external/chromium_org/courgette/
streams.h 152 CheckBool Reserve(size_t length) WARN_UNUSED_RESULT {
153 return buffer_.reserve(length + buffer_.size());
ensemble_apply.cc 234 if (!basic_elements->Reserve(final_patch_input_size_prediction_)) {
streams.cc 351 // Reserve the correct amount of storage.
356 ret = combined_stream->Reserve(length);
  /external/chromium/net/tools/flip_server/
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...]
  /external/chromium_org/courgette/third_party/
bsdiff_apply.cc 83 if (header->dlen && !new_stream->Reserve(header->dlen))
  /external/chromium_org/net/tools/flip_server/
ring_buffer.cc 184 bool RingBuffer::Reserve(int size) {
balsa_headers.cc 140 char* storage = Reserve(sp.size(), block_buffer_idx);
145 char* BalsaBuffer::Reserve(size_t size,
388 char* storage = balsa_buffer_.Reserve(line_size, &block_buffer_idx);
411 // Figure out how much space we need to reserve for the new header size.
423 char* storage = balsa_buffer_.Reserve(new_size, &block_buffer_idx);
767 str->reserve(str->size() + GetSizeForWriteBuffer());
863 char* storage = balsa_buffer_.Reserve(line_size, &firstline_buffer_base_idx_);
    [all...]
  /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...]
  /ndk/sources/android/support/tests/minitest/
minitest.h 193 void Reserve(size_t new_capacity);
  /external/libffi/src/sparc/
v8.S 119 ! Reserve frame space for all arguments in case
  /external/v8/src/
ast.cc 426 receiver_types_.Reserve(kMaxKeyedPolymorphism);
446 receiver_types_.Reserve(kMaxKeyedPolymorphism);
459 receiver_types_.Reserve(kMaxKeyedPolymorphism);
    [all...]
  /external/chromium_org/v8/src/
ast.cc 480 receiver_types_.Reserve(kMaxKeyedPolymorphism, zone);
505 receiver_types_.Reserve(kMaxKeyedPolymorphism, zone);
522 receiver_types_.Reserve(kMaxKeyedPolymorphism, zone);
    [all...]

Completed in 2065 milliseconds

12 3