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

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector/vector.capacity/
reserve.pass.cpp 12 // void reserve(size_type n);
22 v.reserve(10);
28 v.reserve(50);
31 v.reserve(150);
38 v.reserve(50);
41 v.reserve(150);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector.bool/
reserve.pass.cpp 13 // void reserve(size_type n);
22 v.reserve(10);
28 v.reserve(50);
31 v.reserve(150);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector/vector.modifiers/
emplace_extra.pass.cpp 21 v.reserve(3);
28 v.reserve(4);
  /external/skia/legacy/include/core/
SkWriter32.h 53 *(int32_t*)this->reserve(sizeof(value)) = value;
57 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFF;
61 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFFFF;
65 *(int32_t*)this->reserve(sizeof(value)) = value;
69 *(SkScalar*)this->reserve(sizeof(value)) = value;
73 *(SkPoint*)this->reserve(sizeof(pt)) = pt;
77 *(SkRect*)this->reserve(sizeof(rect)) = rect;
94 memcpy(this->reserve(size), values, size);
117 uint32_t* reserve(size_t size); // size MUST be multiple of 4
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.map/
reserve.pass.cpp 16 // void reserve(size_type n);
48 c.reserve(3);
52 c.reserve(3);
55 c.reserve(31);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.multiset/
reserve.pass.cpp 16 // void reserve(size_type n);
47 c.reserve(3);
51 c.reserve(3);
54 c.reserve(31);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.set/
reserve.pass.cpp 16 // void reserve(size_type n);
47 c.reserve(3);
51 c.reserve(3);
54 c.reserve(31);
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
FaceInfoVec.java 50 public void reserve(int i) { method in class:FaceInfoVec
  /external/tinyxml/
tinystr.cpp 41 void TiXmlString::reserve (size_type cap) function in class:TiXmlString
77 reserve (newsize + capacity());
88 tmp.reserve(a.length() + b.length());
98 tmp.reserve(a.length() + b_len);
108 tmp.reserve(a_len + b.length());
  /external/skia/include/core/
SkWriter32.h 55 uint32_t* reserve(size_t size) { function in class:SkWriter32
74 *(int32_t*)this->reserve(sizeof(value)) = value;
78 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFF;
82 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFFFF;
86 *(int32_t*)this->reserve(sizeof(value)) = value;
92 int32_t* addr = (int32_t*)this->reserve(sizeof(void*));
101 *(SkScalar*)this->reserve(sizeof(value)) = value;
105 *(SkPoint*)this->reserve(sizeof(pt)) = pt;
109 *(SkRect*)this->reserve(sizeof(rect)) = rect;
113 rrect.writeToMemory(this->reserve(SkRRect::kSizeInMemory))
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86GOT.h 44 void reserve(size_t pNum = 1);
74 void reserve(size_t pNum = 1);
X86GOT.cpp 30 void X86_32GOT::reserve(size_t pNum) function in class:X86_32GOT
61 void X86_64GOT::reserve(size_t pNum) function in class:X86_64GOT
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGOT.h 44 void reserve(size_t pNum = 1);
HexagonGOT.cpp 30 void HexagonGOT::reserve(size_t pNum) function in class:HexagonGOT
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.multimap/
reserve.pass.cpp 50 c.reserve(3);
54 c.reserve(3);
57 c.reserve(31);
  /external/e2fsprogs/lib/ext2fs/
bmove.c 31 ext2fs_block_bitmap reserve; member in struct:process_block_struct
55 if (ext2fs_test_block_bitmap(pb->reserve, block)) {
63 } while (ext2fs_test_block_bitmap(pb->reserve, block) ||
95 ext2fs_block_bitmap reserve,
110 pb.reserve = reserve;
  /external/genext2fs/
mkbootimg_ext2.sh 98 reserve=10
99 [ $extra -lt $reserve ] && extra=$reserve
  /external/chromium/base/
utf_string_conversion_utils.cc 116 output->reserve(src_len);
119 output->reserve(src_len * 3);
136 output->reserve(src_len);
140 output->reserve(src_len / 2);
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOT.cpp 33 reserve(MipsGOT0Num);
50 void MipsGOT::reserve(size_t pNum) function in class:MipsGOT
90 reserve(1);
100 reserve(1);
  /external/llvm/include/llvm/ADT/
IndexedMap.h 53 void reserve(typename StorageT::size_type s) { function in class:llvm::IndexedMap
54 storage_.reserve(s);
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.capacity/
reserve.pass.cpp 12 // void reserve(size_type res_arg=0);
24 s.reserve();
39 s.reserve(res_arg);
  /external/chromium/chrome/browser/importer/
external_process_importer_client.cc 145 history_rows_.reserve(total_history_rows_count);
179 bookmarks_.reserve(total_bookmarks_count);
203 favicons_.reserve(total_favicons_count);
232 template_url_vec.reserve(template_urls.size());
  /external/chromium/sdch/open-vcdiff/src/google/
output_string.h 38 // ReserveAdditionalBytes(). This asks the underlying output type to reserve
86 impl_->reserve(impl_->size() + res_arg);
  /external/eigen/bench/btl/generic_bench/timers/
STL_timer.hh 38 iterations.reserve(reps);
  /external/open-vcdiff/src/google/
output_string.h 38 // ReserveAdditionalBytes(). This asks the underlying output type to reserve
86 impl_->reserve(impl_->size() + res_arg);

Completed in 404 milliseconds

1 2 3 4 5 6 7 8 91011>>