/external/chromium/net/disk_cache/ |
bitmap.h | 16 Bitmap() : map_(NULL), num_bits_(0), array_size_(0), alloc_(false) {} 129 bool alloc_; // Whether or not we allocated the memory. member in class:disk_cache::Bitmap
|
bitmap.cc | 46 alloc_(true) { 60 alloc_(false) { 64 if (alloc_) 69 DCHECK(alloc_ || !map_); 80 if (alloc_) 83 alloc_ = true;
|
/external/chromium_org/net/disk_cache/ |
bitmap.h | 16 Bitmap() : map_(NULL), num_bits_(0), array_size_(0), alloc_(false) {} 129 bool alloc_; // Whether or not we allocated the memory. member in class:disk_cache::Bitmap
|
bitmap.cc | 46 alloc_(true) { 60 alloc_(false) { 64 if (alloc_) 69 DCHECK(alloc_ || !map_); 80 if (alloc_) 83 alloc_ = true;
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
vec.h | 617 (int alloc_) \ 619 return offsetof (VEC(T,base),vec) + alloc_ * sizeof(T); \ 623 (VEC(T,base) *vec_, int alloc_) \ 626 vec_->alloc = alloc_; \ 630 (VEC(T,base) *vec_, int alloc_ VEC_CHECK_DECL) \ 632 VEC_ASSERT (alloc_ >= 0, "space", T, base); \ 633 return vec_ ? vec_->alloc - vec_->num >= (unsigned)alloc_ : !alloc_; \ 778 (int alloc_ MEM_STAT_DECL) \ 780 return (VEC(T,A) *) vec_##A##_p_reserve_exact (NULL, alloc_ \ [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
vec.h | 617 (int alloc_) \ 619 return offsetof (VEC(T,base),vec) + alloc_ * sizeof(T); \ 623 (VEC(T,base) *vec_, int alloc_) \ 626 vec_->alloc = alloc_; \ 630 (VEC(T,base) *vec_, int alloc_ VEC_CHECK_DECL) \ 632 VEC_ASSERT (alloc_ >= 0, "space", T, base); \ 633 return vec_ ? vec_->alloc - vec_->num >= (unsigned)alloc_ : !alloc_; \ 778 (int alloc_ MEM_STAT_DECL) \ 780 return (VEC(T,A) *) vec_##A##_p_reserve_exact (NULL, alloc_ \ [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
vec.h | 617 (int alloc_) \ 619 return offsetof (VEC(T,base),vec) + alloc_ * sizeof(T); \ 623 (VEC(T,base) *vec_, int alloc_) \ 626 vec_->alloc = alloc_; \ 630 (VEC(T,base) *vec_, int alloc_ VEC_CHECK_DECL) \ 632 VEC_ASSERT (alloc_ >= 0, "space", T, base); \ 633 return vec_ ? vec_->alloc - vec_->num >= (unsigned)alloc_ : !alloc_; \ 778 (int alloc_ MEM_STAT_DECL) \ 780 return (VEC(T,A) *) vec_##A##_p_reserve_exact (NULL, alloc_ \ [all...] |
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
vec.h | 617 (int alloc_) \ 619 return offsetof (VEC(T,base),vec) + alloc_ * sizeof(T); \ 623 (VEC(T,base) *vec_, int alloc_) \ 626 vec_->alloc = alloc_; \ 630 (VEC(T,base) *vec_, int alloc_ VEC_CHECK_DECL) \ 632 VEC_ASSERT (alloc_ >= 0, "space", T, base); \ 633 return vec_ ? vec_->alloc - vec_->num >= (unsigned)alloc_ : !alloc_; \ 778 (int alloc_ MEM_STAT_DECL) \ 780 return (VEC(T,A) *) vec_##A##_p_reserve_exact (NULL, alloc_ \ [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
heap-profile-table.cc | 126 : alloc_(alloc), dealloc_(dealloc) { 132 alloc_table_ = reinterpret_cast<Bucket**>(alloc_(alloc_table_bytes)); 142 new(alloc_(sizeof(AllocationMap))) AllocationMap(alloc_, dealloc_); 203 const void** kcopy = reinterpret_cast<const void**>(alloc_(key_size)); 205 Bucket* b = reinterpret_cast<Bucket*>(alloc_(sizeof(Bucket))); 329 Bucket** list = reinterpret_cast<Bucket**>(alloc_(sizeof(Bucket) * 362 mmap_table_ = reinterpret_cast<Bucket**>(alloc_(mmap_table_bytes)); 369 new(alloc_(sizeof(AllocationMap))) AllocationMap(alloc_, dealloc_) [all...] |
addressmap-inl.h | 250 Allocator alloc_; // The allocator member in class:AddressMap 258 void* ptr = (*alloc_)(sizeof(Object) + num*sizeof(T)); 272 alloc_(alloc),
|
heap-profile-table.h | 342 Allocator alloc_; member in class:HeapProfileTable
|
/external/chromium_org/courgette/ |
memory_allocator.h | 339 alloc_.deallocate(buffer_, alloc_size_); 360 T* new_buffer = alloc_.allocate(size); 367 alloc_.deallocate(buffer_, alloc_size_); 380 if (size > alloc_.max_size() - size_) 387 const size_t max_size = alloc_.max_size(); 485 Allocator alloc_;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
heap-profile-table.cc | 133 : alloc_(alloc), 141 bucket_table_ = static_cast<Bucket**>(alloc_(table_bytes)); 146 new(alloc_(sizeof(AllocationMap))) AllocationMap(alloc_, dealloc_); 196 const void** kcopy = reinterpret_cast<const void**>(alloc_(key_size)); 198 Bucket* b = reinterpret_cast<Bucket*>(alloc_(sizeof(Bucket))); 337 Bucket** list = static_cast<Bucket**>(alloc_(sizeof(Bucket) * num_buckets_)); 373 type_size_map = new(alloc_(sizeof(AddressMap<TypeCount>))) 374 AddressMap<TypeCount>(alloc_, dealloc_); 609 Snapshot* s = new (alloc_(sizeof(Snapshot))) Snapshot(alloc_, dealloc_) [all...] |
addressmap-inl.h | 250 Allocator alloc_; // The allocator member in class:AddressMap 258 void* ptr = (*alloc_)(sizeof(Object) + num*sizeof(T)); 272 alloc_(alloc),
|
deep-heap-profile.cc | 311 deep_table_(kHashTableSize, heap_profile->alloc_, heap_profile->dealloc_), 317 reinterpret_cast<char*>(heap_profile_->alloc_(prefix_length + 1)); 608 alloc_(alloc), 663 DeepBucket* db = reinterpret_cast<DeepBucket*>(alloc_(sizeof(DeepBucket))); [all...] |
deep-heap-profile.h | 293 HeapProfileTable::Allocator alloc_; member in class:DeepHeapProfile::DeepBucketTable
|
heap-profile-table.h | 451 Allocator alloc_; member in class:HeapProfileTable
|
/external/v8/src/ |
ast.cc | 795 HeapStringAllocator alloc_; member in class:v8::internal::RegExpUnparser 800 RegExpUnparser::RegExpUnparser() : stream_(&alloc_) { [all...] |
jsregexp.cc | 3261 HeapStringAllocator alloc_; member in class:v8::internal::DotPrinter [all...] |
/external/chromium_org/v8/src/ |
ast.cc | 926 HeapStringAllocator alloc_; member in class:v8::internal::V8_FINAL 932 RegExpUnparser::RegExpUnparser(Zone* zone) : stream_(&alloc_), zone_(zone) { [all...] |
jsregexp.cc | 4354 HeapStringAllocator alloc_; member in class:v8::internal::DotPrinter [all...] |
/external/bison/ |
maint.mk | 533 #x(((2n?)?re|c(har)?|n(re|m)|z)alloc|alloc_(oversized|die)|m(alloc|emdup)|strdup) 536 # x(((2n?)?re|c(har)?|n(re|m)|[mz])alloc|alloc_(oversized|die)|(mem|str)dup) 539 # x(((2n?)?re|char|n(re|m)|[cmz])alloc|alloc_(oversized|die)|(mem|str)dup) 540 _xa1 = x(((2n?)?re|char|n(re|m)|[cmz])alloc|alloc_(oversized|die)|(mem|str)dup) [all...] |