OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:alloc_size_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/courgette/
memory_allocator.h
330
NoThrowBuffer() : buffer_(NULL), size_(0),
alloc_size_
(0) {
339
alloc_.deallocate(buffer_,
alloc_size_
);
342
alloc_size_
= 0;
354
if (size <=
alloc_size_
)
363
alloc_size_
= kAllocationFailure;
367
alloc_.deallocate(buffer_,
alloc_size_
);
370
alloc_size_
= size;
386
if ((
alloc_size_
- size_) < size) {
388
size_t new_size =
alloc_size_
?
alloc_size_
: kStartSize
[
all
...]
/art/runtime/gc/space/
large_object_space.h
141
return
alloc_size_
;
147
alloc_size_
= size;
167
DCHECK_NE(
alloc_size_
, 0U);
168
return reinterpret_cast<AllocationHeader*>(reinterpret_cast<uintptr_t>(this) +
alloc_size_
);
206
size_t
alloc_size_
;
member in class:art::gc::space::FreeListSpace::AllocationHeader
/external/chromium_org/content/renderer/pepper/
pepper_video_capture_host.h
91
gfx::Size
alloc_size_
;
member in class:content::PepperVideoCaptureHost
pepper_video_capture_host.cc
139
if (
alloc_size_
!= frame->coded_size()) {
141
alloc_size_
= frame->coded_size();
Completed in 2456 milliseconds