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

1 2

  /device/google/cuttlefish_common/common/libs/net/
netlink_request.h 85 // Reserve |length| number of bytes in the buffer.
94 // Reserve specialized data.
95 template <typename T> T* Reserve() {
  /external/protobuf/src/google/protobuf/
repeated_field.cc 83 void RepeatedPtrFieldBase::Reserve(int new_size) {
  /external/pdfium/fxbarcode/common/
BC_CommonByteArray.cpp 63 Reserve(newSize);
68 void CBC_CommonByteArray::Reserve(int32_t capacity) {
  /external/webrtc/webrtc/base/
scopedptrcollection.h 39 void Reserve(size_t size) {
40 collection_.reserve(size);
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
thread_local_buffer.h 51 static void Reserve(std::size_t capacity) {
52 PDX_TRACE_NAME("ThreadLocalBuffer::Reserve");
54 buffer_->reserve(capacity);
69 Reserve(capacity);
78 Reserve(Capacity);
  /device/google/cuttlefish_common/common/libs/auto_resources/
auto_resources.cpp 53 bool AutoFreeBuffer::Reserve(size_t newsize) {
74 if (!Reserve(newsize)) return false;
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTMap.h 39 EPVRTError Reserve(const PVRTuint32 uiSize)
  /external/gemmlowp/internal/
allocator.h 29 // 1. Reserve blocks by calling Reserve(), which returns a Handle.
121 // one by calling Reserve() and, after committing,
134 Handle Reserve(std::size_t n) {
135 assert(!committed_ && "can't reserve blocks while committed");
183 // The number of blocks that have been reserved by Reserve().
185 // The number of bytes that have been reserved by Reserve().
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/
example.h 39 void Reserve(const int32 size) { values_.reserve(size); }
64 void Reserve(const int32 size) {
66 multidimensional_values.Reserve(size);
  /external/tensorflow/tensorflow/core/grappler/
utils.h 88 void Reserve(int64 size) { vector_.reserve(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) {
  /art/libartbase/base/
leb128.h 321 void Reserve(uint32_t size) {
322 data_->reserve(size);
hash_set.h 436 // Reserve enough room to insert until Size() == num_elements without requiring to grow the hash
438 void Reserve(size_t num_elements) {
  /external/v8/src/
small-pointer-list.h 25 Reserve(capacity, zone);
28 void Reserve(int capacity, Zone* zone) {
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/Dxe/AcpiPlatform/
Madt.h 192 UINT8 Reserve[3];
  /external/libmojo/mojo/edk/system/
channel.cc 435 // The Reserve() method ensures that a certain capacity of unoccupied bytes are
472 char* Reserve(size_t num_bytes) {
492 // of a previous Reserve() call is still valid after this.
570 return read_buffer_->Reserve(required_capacity);
  /external/tensorflow/tensorflow/compiler/xla/service/
dfs_hlo_visitor.h 251 void ReserveVisitStates(int num) { visit_state_.Reserve(num); }
311 void Reserve(uint64 num) {
312 states_.reserve((num + kStatesPerWord - 1) / kStatesPerWord);
  /external/v8/src/interpreter/
constant-array-builder.cc 29 void ConstantArrayBuilder::ConstantArraySlice::Reserve() {
265 idx_slice_[i]->Reserve();
  /external/libchrome/base/
pickle.cc 354 void Pickle::Reserve(size_t length) {
  /external/lzma/CPP/Common/
MyVector.h 62 void Reserve(unsigned newCapacity)
192 Reserve(_size + size);
420 // void Reserve(unsigned newCapacity) { _v.Reserve(newCapacity); }
437 _v.Reserve(size);
446 _v.Reserve(Size() + size);
  /frameworks/native/libs/vr/libbroadcastring/include/libbroadcastring/
broadcast_ring.h 262 Reserve(kRecordCount);
307 // Together with the release fence in Reserve(), this ensures that if
309 // PutRecordInternal(), then the store of |head| in the Reserve() that
575 void Reserve(uint32_t reserve_count) {
590 // Space must have been reserved by a previous call to Reserve().
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformDxe/
PlatformDxe.h 184 UINT8 Reserve[17];
194 UINT8 Reserve;
  /external/pdfium/core/fxcrt/
bytestring.cpp 418 void ByteString::Reserve(size_t len) {
widestring.cpp 585 void WideString::Reserve(size_t len) {
  /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...]

Completed in 1527 milliseconds

1 2