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

1 2 3

  /external/pdfium/xfa/src/fxbarcode/common/
BC_CommonByteArray.h 25 void Reserve(int32_t capacity);
BC_CommonByteArray.cpp 67 Reserve(newSize);
72 void CBC_CommonByteArray::Reserve(int32_t capacity) {
  /external/gemmlowp/test/
test_allocator.cc 22 auto handle_to_int32_array = a->Reserve<std::int32_t>(int32_array_size);
24 auto handle_to_int8_array = a->Reserve<std::int8_t>(int8_array_size);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_vector.cc 42 copy_to->Reserve(Size());
51 Reserve(Size() + insert_length);
67 Reserve(Size() + length);
90 Reserve(Size() + extra_length);
98 Reserve(Size() + length);
112 Reserve(Size() + length);
129 Reserve(position + length);
181 void AudioVector::Reserve(size_t n) {
audio_vector.h 101 void Reserve(size_t n);
  /external/webrtc/webrtc/base/
scopedptrcollection.h 39 void Reserve(size_t size) {
40 collection_.reserve(size);
  /external/ceres-solver/internal/ceres/
triplet_sparse_matrix.h 76 void Reserve(int new_max_num_nonzeros);
triplet_sparse_matrix_test.cc 69 EXPECT_DEATH_IF_SUPPORTED(m.Reserve(1), "Reallocation will cause data loss");
72 m.Reserve(50);
75 m.Reserve(3);
98 m.Reserve(1);
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_);
  /external/protobuf/src/google/protobuf/
repeated_field.cc 45 void RepeatedPtrFieldBase::Reserve(int new_size) {
repeated_field.h 135 // Reserve space to expand the field to at least the given size. If the
137 void Reserve(int new_size);
301 void Reserve(int new_size);
461 // Reserve space to expand the field to at least the given size. This only
464 void Reserve(int new_size);
600 int reserve = internal::CalculateReserve(begin, end); local
601 if (reserve != -1) {
602 Reserve(reserve);
657 Reserve(new_size)
1080 int reserve = internal::CalculateReserve(begin, end); local
    [all...]
repeated_field_unittest.cc 203 // Reserve more than double the previous space in the field and expect the
204 // field to reserve exactly the amount specified.
206 field.Reserve(20);
212 // Reserve less than double the previous space in the field and expect the
215 field.Reserve(20);
216 field.Reserve(30);
222 // Reserve less than the previous space in the field and expect the
225 field.Reserve(20);
227 field.Reserve(10);
573 field.Reserve(20)
    [all...]
  /external/v8/src/
small-pointer-list.h 25 Reserve(capacity, zone);
28 void Reserve(int capacity, Zone* zone) {
  /ndk/sources/android/support/tests/minitest/
minitest.cc 111 Reserve(new_capacity);
117 void String::Reserve(size_t new_capacity) {
  /external/v8/src/interpreter/
constant-array-builder.h 71 void Reserve();
constant-array-builder.cc 22 void ConstantArrayBuilder::ConstantArraySlice::Reserve() {
148 idx_slice_[i]->Reserve();
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/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...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/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...]
  /prebuilts/misc/windows/protobuf2.5/include/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...]
  /prebuilts/tools/linux-x86_64/protoc/include/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...]
  /external/llvm/lib/Target/Hexagon/
HexagonVLIWPacketizer.h 104 bool tryAllocateResourcesForConstExt(bool Reserve);
  /external/lzma/CPP/Common/
MyVector.h 59 void Reserve(unsigned newCapacity)
184 Reserve(_size + size);
411 // void Reserve(unsigned newCapacity) { _v.Reserve(newCapacity); }
426 _v.Reserve(size);
435 _v.Reserve(Size() + size);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndr64types.h 263 NDR64_UINT8 Reserve;
271 NDR64_UINT8 Reserve;
280 NDR64_UINT8 Reserve;
  /external/gemmlowp/internal/
allocator.h 29 // 1. Reserve blocks by calling Reserve(), which returns a Handle.
135 // one by calling Reserve() and, after committing,
148 Handle Reserve(std::size_t n) {
149 assert(!committed_ && "can't reserve blocks while committed");
197 // The number of blocks that have been reserved by Reserve().
199 // The number of bytes that have been reserved by Reserve().
  /external/libchrome/base/
pickle.h 211 // Reserve() before calling WriteFoo() multiple times.
212 void Reserve(size_t additional_capacity);
262 // Claims |num_bytes| bytes of payload. This is similar to Reserve() in that

Completed in 858 milliseconds

1 2 3