HomeSort by relevance Sort by last modified time
    Searched refs:size_in_bytes (Results 1 - 14 of 14) sorted by null

  /external/chromium/base/
image_util.h 23 size_in_bytes(section_size) {
27 size_t size_in_bytes; member in struct:image_util::ImageSectionData
  /system/extras/tests/sdcard/
stopwatch.h 97 void setDataSize(size_t size_in_bytes) { mSizeKbytes = size_in_bytes / 1000; }
  /external/v8/src/
spaces-inl.h 258 int size_in_bytes) {
260 Address new_top = current_top + size_in_bytes;
265 accounting_stats_.AllocateBytes(size_in_bytes);
271 Object* PagedSpace::AllocateRaw(int size_in_bytes) {
273 ASSERT_OBJECT_SIZE(size_in_bytes);
274 HeapObject* object = AllocateLinearly(&allocation_info_, size_in_bytes);
277 object = SlowAllocateRaw(size_in_bytes);
280 return Failure::RetryAfterGC(size_in_bytes, identity());
285 Object* PagedSpace::MCAllocateRaw(int size_in_bytes) {
287 ASSERT_OBJECT_SIZE(size_in_bytes);
    [all...]
spaces.h 795 void ExpandSpace(int size_in_bytes) {
796 capacity_ += size_in_bytes;
797 available_ += size_in_bytes;
801 void ShrinkSpace(int size_in_bytes) {
802 capacity_ -= size_in_bytes;
803 available_ -= size_in_bytes;
807 void AllocateBytes(int size_in_bytes) {
808 available_ -= size_in_bytes;
809 size_ += size_in_bytes;
813 void DeallocateBytes(int size_in_bytes) {
    [all...]
mark-compact.h 40 typedef void (*DeallocateFunction)(Address start, int size_in_bytes);
316 static void DeallocateOldPointerBlock(Address start, int size_in_bytes);
317 static void DeallocateOldDataBlock(Address start, int size_in_bytes);
318 static void DeallocateCodeBlock(Address start, int size_in_bytes);
319 static void DeallocateMapBlock(Address start, int size_in_bytes);
320 static void DeallocateCellBlock(Address start, int size_in_bytes);
heap-inl.h 51 Object* Heap::AllocateRaw(int size_in_bytes,
63 return Failure::RetryAfterGC(size_in_bytes, space);
70 result = new_space_.AllocateRaw(size_in_bytes);
79 result = old_pointer_space_->AllocateRaw(size_in_bytes);
81 result = old_data_space_->AllocateRaw(size_in_bytes);
83 result = code_space_->AllocateRaw(size_in_bytes);
85 result = lo_space_->AllocateRaw(size_in_bytes);
87 result = cell_space_->AllocateRaw(size_in_bytes);
90 result = map_space_->AllocateRaw(size_in_bytes);
spaces.cc 806 HeapObject* PagedSpace::SlowMCAllocateRaw(int size_in_bytes) {
827 return AllocateLinearly(&mc_forwarding_info_, size_in_bytes);
    [all...]
mark-compact.cc     [all...]
heap.h 581 static inline Object* AllocateRaw(int size_in_bytes,
    [all...]
objects.h     [all...]
heap.cc 918 void Heap::ClearRSetRange(Address start, int size_in_bytes) {
924 Page::ComputeRSetBitPosition(start + size_in_bytes - kIntSize,
    [all...]
  /external/webkit/WebKitTools/android/flex-2.5.4a/
misc.c 872 * Sets region_ptr[0] through region_ptr[size_in_bytes - 1] to zero.
875 void zero_out( region_ptr, size_in_bytes )
877 size_t size_in_bytes;
882 rp_end = region_ptr + size_in_bytes;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree.h     [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree.h     [all...]

Completed in 580 milliseconds