Searched defs:size_in_bytes (Results 1 - 13 of 13) sorted by relevance

/external/webrtc/src/common_audio/vad/
H A Dwebrtc_vad.c43 WebRtc_Word16 WebRtcVad_AssignSize(int *size_in_bytes) argument
45 *size_in_bytes = sizeof(VadInstT) * 2 / sizeof(WebRtc_Word16);
/external/v8/src/heap/
H A Dspaces-inl.h237 HeapObject* PagedSpace::AllocateLinearly(int size_in_bytes) { argument
239 Address new_top = current_top + size_in_bytes;
248 AllocationResult PagedSpace::AllocateRaw(int size_in_bytes) { argument
249 HeapObject* object = AllocateLinearly(size_in_bytes);
252 object = free_list_.Allocate(size_in_bytes);
254 object = SlowAllocateRaw(size_in_bytes);
260 SkipList::Update(object->address(), size_in_bytes);
262 MSAN_ALLOCATED_UNINITIALIZED_MEMORY(object->address(), size_in_bytes);
274 AllocationResult NewSpace::AllocateRaw(int size_in_bytes) { argument
277 if (allocation_info_.limit() - old_top < size_in_bytes) {
[all...]
H A Dheap-inl.h166 AllocationResult Heap::AllocateRaw(int size_in_bytes, AllocationSpace space, argument
183 allocation = new_space_.AllocateRaw(size_in_bytes);
188 OnAllocationEvent(object, size_in_bytes);
195 allocation = old_pointer_space_->AllocateRaw(size_in_bytes);
197 allocation = old_data_space_->AllocateRaw(size_in_bytes);
199 if (size_in_bytes <= code_space()->AreaSize()) {
200 allocation = code_space_->AllocateRaw(size_in_bytes);
203 allocation = lo_space_->AllocateRaw(size_in_bytes, EXECUTABLE);
206 allocation = lo_space_->AllocateRaw(size_in_bytes, NOT_EXECUTABLE);
208 allocation = cell_space_->AllocateRaw(size_in_bytes);
224 OnAllocationEvent(HeapObject* object, int size_in_bytes) argument
245 OnMoveEvent(HeapObject* target, HeapObject* source, int size_in_bytes) argument
[all...]
H A Dspaces.cc1323 void NewSpace::UpdateInlineAllocationLimit(int size_in_bytes) { argument
1327 Address new_top = allocation_info_.top() + size_in_bytes;
1335 Address new_top = allocation_info_.top() + size_in_bytes;
1374 AllocationResult NewSpace::SlowAllocateRaw(int size_in_bytes) { argument
1381 Address new_top = old_top + size_in_bytes;
1385 UpdateInlineAllocationLimit(size_in_bytes);
1387 return AllocateRaw(size_in_bytes);
1394 return AllocateRaw(size_in_bytes);
1955 void FreeListNode::set_size(Heap* heap, int size_in_bytes) { argument
1956 DCHECK(size_in_bytes >
2118 PickNodeFromList(int size_in_bytes, int* node_size) argument
2130 Free(FreeListNode* node, int size_in_bytes) argument
2177 Free(Address start, int size_in_bytes) argument
2211 FindNodeFor(int size_in_bytes, int* node_size) argument
2326 Allocate(int size_in_bytes) argument
2532 WaitForSweeperThreadsAndRetryAllocation( int size_in_bytes) argument
2547 SlowAllocateRaw(int size_in_bytes) argument
[all...]
H A Dspaces.h1346 void ExpandSpace(int size_in_bytes) { argument
1347 capacity_ += size_in_bytes;
1348 size_ += size_in_bytes;
1358 void ShrinkSpace(int size_in_bytes) { argument
1359 capacity_ -= size_in_bytes;
1360 size_ -= size_in_bytes;
1365 void AllocateBytes(intptr_t size_in_bytes) { argument
1366 size_ += size_in_bytes;
1371 void DeallocateBytes(intptr_t size_in_bytes) { argument
1372 size_ -= size_in_bytes;
1377 WasteBytes(int size_in_bytes) argument
1766 Free(Address start, int size_in_bytes) argument
[all...]
/external/v8/src/
H A Dhydrogen-escape-analysis.cc50 int size_in_bytes = allocate->size()->GetInteger32Constant(); local
51 if (HasNoEscapingUses(instr, size_in_bytes)) {
299 int size_in_bytes = allocate->size()->GetInteger32Constant(); local
300 number_of_values_ = size_in_bytes / kPointerSize;
H A Dcode-stubs-hydrogen.cc435 HValue* size_in_bytes = Add<HConstant>(size); local
437 HInstruction* object = Add<HAllocate>(size_in_bytes, HType::JSObject(),
H A Dhydrogen.cc2587 HConstant* size_in_bytes = Add<HConstant>(base_size); local
2589 size_in_bytes, HType::JSArray(), NOT_TENURED, JS_OBJECT_TYPE);
2605 HValue* size_in_bytes) {
2610 return Add<HAllocate>(size_in_bytes, HType::HeapObject(), NOT_TENURED,
2635 HValue* size_in_bytes = BuildCalculateElementsSize(kind, capacity); local
2636 HValue* new_elements = BuildAllocateElements(kind, size_in_bytes);
9299 HValue* size_in_bytes = Add<HConstant>(instance_size); local
9314 size_in_bytes, HType::JSObject(), JS_OBJECT_TYPE, allocation_mode);
2604 BuildAllocateElements(ElementsKind kind, HValue* size_in_bytes) argument
H A Dobjects.h4364 static int LengthFor(int size_in_bytes) { argument
4365 DCHECK(IsAligned(size_in_bytes, kPointerSize));
4366 DCHECK(size_in_bytes >= kHeaderSize);
4367 return size_in_bytes - kHeaderSize;
/external/llvm/include/llvm/ADT/
H A DSmallVector.h48 size_t size_in_bytes() const { function in class:llvm::SmallVectorBase
/external/google-breakpad/src/processor/
H A Dminidump.cc211 static inline void Swap(uint16_t* data, size_t size_in_bytes) { argument
212 size_t data_length = size_in_bytes / sizeof(data[0]);
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_context.h362 unsigned size_in_bytes; member in struct:r300_texture_desc
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp2328 CharUnits size_in_bytes = local
2334 size_in_bytes += gap;
2338 residue_in_bytes = size_in_bytes % WordSizeInBytes;
2339 size_in_bytes -= residue_in_bytes;
2343 unsigned size_in_words = size_in_bytes.getQuantity() / WordSizeInBytes;

Completed in 537 milliseconds