Searched refs:Reserve (Results 1 - 25 of 62) sorted by path

123

/external/ceres-solver/internal/ceres/
H A Dblock_sparse_matrix.cc188 matrix->Reserve(num_nonzeros_);
H A Dprogram.cc410 tsm->Reserve(2 * num_nonzeros);
H A Dtriplet_sparse_matrix.cc105 void TripletSparseMatrix::Reserve(int new_max_num_nonzeros) { function in class:ceres::internal::TripletSparseMatrix
193 Reserve(num_nonzeros_ + B.num_nonzeros_);
204 Reserve(num_nonzeros_ + B.num_nonzeros_);
H A Dtriplet_sparse_matrix.h76 void Reserve(int new_max_num_nonzeros);
H A Dtriplet_sparse_matrix_test.cc69 EXPECT_DEATH_IF_SUPPORTED(m.Reserve(1), "Reallocation will cause data loss");
72 m.Reserve(50);
75 m.Reserve(3);
98 m.Reserve(1);
/external/chromium_org/base/
H A Dpickle.cc296 void Pickle::Reserve(size_t length) { function in class:Pickle
H A Dpickle.h270 // Reserve() before calling WriteFoo() multiple times.
271 void Reserve(size_t additional_capacity);
/external/chromium_org/chrome/test/chromedriver/net/
H A Dport_server_unittest.cc138 TEST_F(PortServerTest, Reserve) {
/external/chromium_org/content/common/
H A Dcc_messages.cc724 m->Reserve(to_reserve);
773 m->Reserve(sizeof(cc::SoftwareFrameData));
/external/chromium_org/courgette/
H A Dencoded_program.cc347 success &= streams->stream(kStreamOps)->Reserve(ops_.size() + 5);
H A Densemble_apply.cc237 if (!basic_elements->Reserve(final_patch_input_size_prediction_)) {
H A Dstreams.cc351 // Reserve the correct amount of storage.
356 ret = combined_stream->Reserve(length);
H A Dstreams.h152 CheckBool Reserve(size_t length) WARN_UNUSED_RESULT {
/external/chromium_org/courgette/third_party/
H A Dbsdiff_apply.cc83 if (header->dlen && !new_stream->Reserve(header->dlen))
/external/chromium_org/net/tools/balsa/
H A Dbalsa_headers.cc149 char* storage = Reserve(sp.size(), block_buffer_idx);
154 char* BalsaBuffer::Reserve(size_t size, function in class:net::BalsaBuffer
397 char* storage = balsa_buffer_.Reserve(line_size, &block_buffer_idx);
432 char* storage = balsa_buffer_.Reserve(new_size, &block_buffer_idx);
872 char* storage = balsa_buffer_.Reserve(line_size, &firstline_buffer_base_idx_);
H A Dbalsa_headers.h157 char* Reserve(size_t size, Blocks::size_type* block_buffer_idx);
H A Dbuffer_interface.h94 virtual bool Reserve(int size) = 0;
H A Dsimple_buffer.cc93 (void)Reserve(size);
146 bool SimpleBuffer::Reserve(int size) { function in class:net::SimpleBuffer
H A Dsimple_buffer.h56 virtual bool Reserve(int size) OVERRIDE;
/external/chromium_org/net/tools/flip_server/
H A Dring_buffer.cc151 bool RingBuffer::Reserve(int size) { function in class:net::RingBuffer
H A Dring_buffer.h70 // not to inadvertently resize the buffer using Reserve(). If the reserve
79 virtual bool Reserve(int size) OVERRIDE;
/external/chromium_org/sdch/open-vcdiff/src/
H A Doutput_string_test.cc57 TEST_F(OutputStringTest, Reserve) {
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_library_list.cpp405 fullname.Reserve(kMaxFilenameInZip);
H A Dcrazy_linker_util.cpp77 Reserve(new_capacity);
88 void String::Reserve(size_t new_capacity) { function in class:crazy::String
H A Dcrazy_linker_util.h112 void Reserve(size_t new_capacity);
186 void Reserve(size_t new_capacity);
208 Reserve(capacity_ + (capacity_ >> 1) + 4);
236 void Vector<T>::Reserve(size_t new_capacity) { function in class:crazy::Vector
246 Reserve(new_size);

Completed in 398 milliseconds

123