Searched refs:reserve (Results 1 - 25 of 816) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dbc-reserve.c41 /*@only@*/ /*@null@*/ yasm_expr *numitems; /* number of items to reserve */
72 bytecode_reserve *reserve = (bytecode_reserve *)contents; local
73 yasm_expr_destroy(reserve->numitems);
80 const bytecode_reserve *reserve = (const bytecode_reserve *)contents; local
83 yasm_expr_print(reserve->numitems, f);
84 fprintf(f, "\n%*sItem Size=%u\n", indent_level, "", reserve->itemsize);
90 bytecode_reserve *reserve = (bytecode_reserve *)bc->contents; local
91 /* multiply reserve expression into multiple */
93 bc->multiple = reserve->numitems;
96 reserve
103 bytecode_reserve *reserve = (bytecode_reserve *)bc->contents; local
111 bytecode_reserve *reserve = (bytecode_reserve *)bc->contents; local
131 bytecode_reserve *reserve = yasm_xmalloc(sizeof(bytecode_reserve)); local
144 bytecode_reserve *reserve; local
[all...]
/external/libcxx/test/containers/sequences/vector.bool/
H A Dreserve.pass.cpp13 // void reserve(size_type n);
24 v.reserve(10);
30 v.reserve(50);
33 v.reserve(150);
40 v.reserve(10);
46 v.reserve(50);
49 v.reserve(150);
/external/libcxx/test/containers/sequences/vector/vector.capacity/
H A Dreserve.pass.cpp12 // void reserve(size_type n);
23 v.reserve(10);
29 v.reserve(50);
32 v.reserve(150);
39 v.reserve(50);
42 v.reserve(150);
49 v.reserve(10);
55 v.reserve(50);
58 v.reserve(150);
/external/libcxx/test/containers/sequences/vector/vector.modifiers/
H A Demplace_extra.pass.cpp24 v.reserve(3);
31 v.reserve(4);
39 v.reserve(3);
46 v.reserve(4);
/external/libcxx/test/containers/unord/unord.multiset/
H A Dreserve.pass.cpp16 // void reserve(size_type n);
50 c.reserve(3);
54 c.reserve(3);
57 c.reserve(31);
78 c.reserve(3);
82 c.reserve(3);
85 c.reserve(31);
/external/libcxx/test/containers/unord/unord.set/
H A Dreserve.pass.cpp16 // void reserve(size_type n);
50 c.reserve(3);
54 c.reserve(3);
57 c.reserve(31);
78 c.reserve(3);
82 c.reserve(3);
85 c.reserve(31);
/external/libcxx/test/containers/unord/unord.map/
H A Dreserve.pass.cpp16 // void reserve(size_type n);
51 c.reserve(3);
55 c.reserve(3);
58 c.reserve(31);
79 c.reserve(3);
83 c.reserve(3);
86 c.reserve(31);
/external/libcxx/test/containers/unord/unord.multimap/
H A Dreserve.pass.cpp53 c.reserve(3);
57 c.reserve(3);
60 c.reserve(31);
81 c.reserve(3);
85 c.reserve(3);
88 c.reserve(31);
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinystr.cpp37 void TiXmlString::reserve (size_type cap) function in class:TiXmlString
73 reserve (newsize + capacity());
84 tmp.reserve(a.length() + b.length());
94 tmp.reserve(a.length() + b_len);
104 tmp.reserve(a_len + b.length());
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinystr.cpp37 void TiXmlString::reserve (size_type cap) function in class:TiXmlString
73 reserve (newsize + capacity());
84 tmp.reserve(a.length() + b.length());
94 tmp.reserve(a.length() + b_len);
104 tmp.reserve(a_len + b.length());
/external/tinyxml/
H A Dtinystr.cpp41 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/chromium_org/third_party/skia/include/core/
H A DSkWriter32.h30 * SkWriter32 will try to back reserve and write calls with this external storage until the
62 uint32_t* reserve(size_t size) { function in class:SkWriter32
106 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFF;
110 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFFFF;
114 *(int32_t*)this->reserve(sizeof(value)) = value;
118 *(void**)this->reserve(sizeof(value)) = value;
122 *(SkScalar*)this->reserve(sizeof(value)) = value;
126 *(SkPoint*)this->reserve(sizeof(pt)) = pt;
130 *(SkRect*)this->reserve(sizeof(rect)) = rect;
134 *(SkIRect*)this->reserve(sizeo
[all...]
H A DSkMultiPictureDraw.h28 * @param reserve Hint for the number of add calls expected to be issued
30 SkMultiPictureDraw(int reserve = 0);
/external/skia/include/core/
H A DSkWriter32.h30 * SkWriter32 will try to back reserve and write calls with this external storage until the
62 uint32_t* reserve(size_t size) { function in class:SkWriter32
106 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFF;
110 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFFFF;
114 *(int32_t*)this->reserve(sizeof(value)) = value;
118 *(void**)this->reserve(sizeof(value)) = value;
122 *(SkScalar*)this->reserve(sizeof(value)) = value;
126 *(SkPoint*)this->reserve(sizeof(pt)) = pt;
130 *(SkRect*)this->reserve(sizeof(rect)) = rect;
134 *(SkIRect*)this->reserve(sizeo
[all...]
/external/libunwind/src/mi/
H A Dmempool.c127 mempool_init (struct mempool *pool, size_t obj_size, size_t reserve) argument
139 if (!reserve)
141 reserve = pg_size / obj_size / 4;
142 if (!reserve)
143 reserve = 16;
147 pool->reserve = reserve;
148 pool->chunk_size = UNW_ALIGN(2*reserve*obj_size, pg_size);
161 if (pool->num_free <= pool->reserve)
/external/libunwind/include/
H A Dmempool.h66 unsigned int reserve; /* minimum (desired) size of the free-list */ member in struct:mempool
85 size_t obj_size, size_t reserve);
/external/chromium_org/third_party/skia/src/core/
H A DSkMultiPictureDraw.cpp12 SkMultiPictureDraw::SkMultiPictureDraw(int reserve) { argument
13 if (reserve > 0) {
14 fDrawData.setReserve(reserve);
/external/e2fsprogs/lib/ext2fs/
H A Dbmove.c31 ext2fs_block_bitmap reserve; member in struct:process_block_struct
55 if (ext2fs_test_block_bitmap2(pb->reserve, block)) {
63 } while (ext2fs_test_block_bitmap2(pb->reserve, block) ||
97 ext2fs_block_bitmap reserve,
112 pb.reserve = reserve;
96 ext2fs_move_blocks(ext2_filsys fs, ext2fs_block_bitmap reserve, ext2fs_block_bitmap alloc_map, int flags) argument
/external/genext2fs/
H A Dmkbootimg_ext2.sh98 reserve=10
99 [ $extra -lt $reserve ] && extra=$reserve
/external/chromium_org/base/strings/
H A Dutf_string_conversion_utils.cc116 output->reserve(src_len);
119 output->reserve(src_len * 3);
136 output->reserve(src_len);
140 output->reserve(src_len / 2);
/external/chromium_org/ppapi/cpp/
H A Darray_output.cc34 output_storage_.reserve(temp_storage_.size());
/external/clang/include/clang/AST/
H A DASTUnresolvedSet.h74 void reserve(ASTContext &C, unsigned N) { function in class:clang::ASTUnresolvedSet
75 Decls.reserve(C, N);
100 void reserve(ASTContext &C, unsigned N) { Impl.reserve(C, N); } function in class:clang::LazyASTUnresolvedSet
/external/qemu/android/base/containers/
H A DStringVector.cpp32 reserve(0U);
41 reserve(0U);
56 void StringVector::reserve(size_t newSize) { function in class:android::base::StringVector
62 PodVectorBase::reserve(newSize, sizeof(String));
/external/chromium_org/chrome/common/net/
H A Dx509_certificate_model.cc21 input16.reserve(input.length());
48 ret.reserve(std::max(kMin, data_length * 3 - 1));
/external/chromium_org/content/renderer/pepper/
H A Dppb_proxy_impl.cc36 PP_Bool (*reserve)(PP_Module, PP_Instance)) {
39 plugin_module->SetReserveInstanceIDCallback(reserve);
35 SetReserveInstanceIDCallback(PP_Module module, PP_Bool (*reserve)(PP_Module, PP_Instance)) argument

Completed in 470 milliseconds

1234567891011>>