HomeSort by relevance Sort by last modified time
    Searched refs:reserve (Results 201 - 225 of 2003) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/misc/common/swig/include/2.0.11/php/
std_vector.i 23 void reserve(size_type n);
65 void reserve(size_type n);
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_vector.i 12 void reserve(size_type n);
20 void reserve(size_type n);
  /system/chre/apps/wifi_offload/
scan_params.cc 57 frequencies_to_scan_mhz_.reserve(freq_vec->size());
ssid.cc 34 ssid_vec_.reserve(len);
  /toolchain/binutils/binutils-2.27/gold/
stringpool.h 113 // Reserve elements.
115 reserve(unsigned int n) function in class:gold::Chunked_vector
120 // We need to call reserve() of all chunks since changing
124 this->chunks_[i].reserve(chunk_size);
141 this->chunks_.back().reserve(chunk_size);
195 reserve(unsigned int n);
197 // Indicate that we should not reserve offset 0 to hold the empty
406 // Whether to reserve offset 0 to hold the null string.
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/quantiles/
weighted_quantiles_summary.h 85 entries_.reserve(buffer_entries.size());
99 entries_.reserve(summary_entries.size());
127 entries_.reserve(base_entries.size() + other_entries.size());
250 output.reserve(compressed_summary.entries_.size());
264 output.reserve(num_quantiles + 1);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
vec.h 75 be more efficient to use the reserve operation before adding the
78 increase if there are too few spare slots. If you want reserve a
162 allocation must reserve enough space for all the elements
269 static void reserve (vec<T, va_heap, vl_embed> *&, unsigned, bool
277 /* Allocator for heap memory. Ensure there are at least RESERVE free
280 allocated and and RESERVE is 0, no vector will be created. */
284 va_heap::reserve (vec<T, va_heap, vl_embed> *&v, unsigned reserve, bool exact function in class:va_heap
288 = vec_prefix::calculate_allocation (v ? &v->vecpfx_ : 0, reserve, exact);
336 static void reserve (vec<T, A, vl_embed> *&, unsigned, boo
351 va_gc::reserve (vec<T, A, vl_embed> *&v, unsigned reserve, bool exact function in class:va_gc
438 va_stack::reserve (vec<T, va_stack, vl_embed> *&v, unsigned nelems, bool exact function in class:va_stack
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceRegAlloc.cpp 116 Unhandled.reserve(Vars.size());
117 UnhandledPrecolored.reserve(Vars.size());
245 Unhandled.reserve(NumVars);
246 UnhandledPrecolored.reserve(NumVars);
306 Unhandled.reserve(Vars.size());
307 UnhandledPrecolored.reserve(Vars.size());
333 Vars.reserve(Func->getVariables().size() - ExcludeVars.size());
375 Handled.reserve(Unhandled.size());
376 Inactive.reserve(Unhandled.size());
377 Active.reserve(Unhandled.size())
    [all...]
  /art/compiler/debug/
elf_gnu_debugdata_writer.h 89 buffer.reserve(KB);
107 compressed_buffer.reserve(buffer.size() / 4);
  /external/guava/guava/src/com/google/common/util/concurrent/
RateLimiter.java 273 long microsToWait = reserve(permits);
284 final long reserve(int permits) { method in class:RateLimiter
  /external/libchrome/base/trace_event/
heap_profiler_allocation_context_tracker.cc 85 pseudo_stack_.reserve(kMaxStackDepth);
86 task_contexts_.reserve(kMaxTaskDepth);
  /external/llvm/include/llvm/ADT/
PackedVector.h 110 void reserve(unsigned N) { Bits.reserve(N << (BitNum-1)); } function in class:llvm::PackedVector
StringExtras.h 69 Output.reserve(2 * Length);
178 S.reserve(Len);
  /external/llvm/unittests/ADT/
FoldingSet.cpp 160 Trivial.reserve(OldCapacity + 1);
167 Trivial.reserve(OldCapacity - 1);
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_cp.c 44 assert(ilo_cp_space(cp) >= owner->reserve);
55 * is more space than \p owner->reserve when it returns. Calling
78 assert(ilo_cp_space(cp) >= owner->reserve);
ilo_draw.c 213 /* reserve the space for ending/pausing the query */
214 ilo->draw.cp_owner.reserve += q->cmd_len >> q->in_pairs;
228 ilo->draw.cp_owner.reserve -= q->cmd_len >> q->in_pairs;
229 assert(ilo->draw.cp_owner.reserve >= 0);
251 if (ilo_cp_space(ilo->cp) < ilo->draw.cp_owner.reserve * 2) {
253 assert(ilo_cp_space(ilo->cp) >= ilo->draw.cp_owner.reserve * 2);
278 assert(ilo_cp_space(ilo->cp) >= ilo->draw.cp_owner.reserve);
287 assert(ilo_cp_space(ilo->cp) >= ilo->draw.cp_owner.reserve);
639 ilo->draw.cp_owner.reserve = 0;
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
PackedVector.h 109 void reserve(unsigned N) { Bits.reserve(N << (BitNum-1)); } function in class:llvm::PackedVector
  /external/tensorflow/tensorflow/cc/client/
client_session.cc 116 output_tensor_names.reserve(fetch_outputs.size());
121 target_node_names.reserve(run_outputs.size());
  /external/tensorflow/tensorflow/core/common_runtime/
shape_refiner.h 40 input_types_.reserve(node->num_inputs());
44 output_types_.reserve(node->num_outputs());
  /external/tensorflow/tensorflow/core/lib/io/
buffered_inputstream.cc 29 buf_.reserve(size_);
97 result->reserve(bytes_to_read);
  /external/tensorflow/tensorflow/python/lib/core/
strings.i 91 converted.reserve(size);
  /external/vulkan-validation-layers/demos/smoke/
Meshes.cpp 91 positions_.reserve(vertices.size());
92 normals_.reserve(vertices.size());
98 faces_.reserve(faces.size());
249 faces.reserve(final_face_count);
252 middle_points_.reserve(middle_point_count);
254 mesh_.positions_.reserve(mesh_.vertex_count() + middle_point_count);
255 mesh_.normals_.reserve(mesh_.vertex_count() + middle_point_count);
391 draw_commands_.reserve(meshes.size());
  /frameworks/av/camera/
ICameraRecordingProxyListener.cpp 146 timestamps.reserve(n);
147 handles.reserve(n);
  /frameworks/compile/mclinker/lib/MC/
SearchDirs.cpp 31 m_DirList.reserve(8);
37 m_DirList.reserve(8);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
PackedVector.h 112 void reserve(unsigned N) { Bits.reserve(N << (BitNum-1)); } function in class:llvm::PackedVector

Completed in 927 milliseconds

1 2 3 4 5 6 7 891011>>