/external/skia/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
|
/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());
|
/frameworks/compile/mclinker/lib/LD/ |
OutputSymbolTable.cpp | 25 f_pCategorySet->at(CategorySet::Entire).reserve(pNumOfSymbols);
|
InputSymbolTable.cpp | 25 f_pCategorySet->at(CategorySet::Entire).reserve(pNumOfSymbols);
|
/frameworks/compile/mclinker/lib/MC/ |
AttributeFactory.cpp | 24 m_AttrSet.reserve(pNum); 41 void AttributeFactory::reserve(size_t pNum) function in class:AttributeFactory 43 m_AttrSet.reserve(pNum);
|
/external/e2fsprogs/lib/ext2fs/ |
bmove.c | 27 ext2fs_block_bitmap reserve; member in struct:process_block_struct 51 if (ext2fs_test_block_bitmap(pb->reserve, block)) { 59 } while (ext2fs_test_block_bitmap(pb->reserve, block) || 91 ext2fs_block_bitmap reserve, 106 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);
|
/external/llvm/include/llvm/ADT/ |
IndexedMap.h | 58 void reserve(typename StorageT::size_type s) { function in class:llvm::IndexedMap 59 storage_.reserve(s);
|
/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/stlport/test/eh/ |
test_vector.cpp | 47 c.reserve( c.size() + insCnt ); 53 gTestController.SetCurrentTestName("vector::reserve()"); 58 v.reserve( fAmount ); 70 vec.reserve( vec.size() + d ); 83 testVector.reserve(vectorSize*4);
|
test_bit_vector.cpp | 53 gTestController.SetCurrentTestName("BitVector::reserve()"); 58 v.reserve( fAmount ); 85 testVector.reserve(BitVectorSize);
|
/external/webkit/Source/JavaScriptCore/wtf/ |
PageAllocatorSymbian.h | 83 void* reserve(size_t);
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
LayerTexture.h | 51 bool reserve(const IntSize&, unsigned format);
|
/frameworks/compile/mclinker/include/mcld/MC/ |
AttributeFactory.h | 40 // reserve - reserve the memory space for attributes 42 void reserve(size_t pNum);
|
/frameworks/native/opengl/libagl/ |
TokenManager.cpp | 28 mTokenizer.reserve(0);
|
Tokenizer.h | 37 status_t reserve(uint32_t token);
|
/external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/ |
tst_qscriptvalue_generated_istype.cpp | 172 expectedValue.reserve(134); 207 expectedValue.reserve(8); 242 expectedValue.reserve(8); 325 expectedValue.reserve(56); 361 expectedValue.reserve(9); 393 expectedValue.reserve(5); 455 expectedValue.reserve(35); 488 expectedValue.reserve(6); 542 expectedValue.reserve(24); 574 expectedValue.reserve(5) [all...] |
tst_qscriptvalue_generated_totype.cpp | 241 expectedValue.reserve(135); 419 expectedValue.reserve(135); 660 expectedValue.reserve(135); 892 expectedValue.reserve(135); [all...] |
/external/chromium/chrome/common/net/ |
x509_certificate_model.cc | 18 input16.reserve(input.length()); 62 ret.reserve(std::max(kMin, data_length * 3 - 1));
|
/external/astl/tests/ |
test_string.cpp | 167 str03.reserve(i + 20); 253 str01.reserve(5); 255 str01.reserve(0); 262 str02.reserve(10); 267 str02.reserve(6); // no effect 278 str03.reserve(); 282 str03.reserve(10); 287 str03.reserve(); 292 str03.reserve(10); 295 str03.reserve(); // shrink to fit [all...] |
test_vector.cpp | 180 { // basic reserve + shrink. 184 EXPECT_TRUE(vec1.reserve(200)); 188 EXPECT_TRUE(vec1.reserve()); 196 EXPECT_TRUE(vec2.reserve()); 199 vec2.reserve(200); 201 vec2.reserve(); 204 vec2.reserve(); 211 vec3.reserve(); 232 vec4.reserve(1000); 234 vec4.reserve(50); // reserving less than length is a nop [all...] |
/external/chromium/base/memory/ |
scoped_vector.h | 57 void reserve(size_t capacity) { v.reserve(capacity); } function in class:ScopedVector
|