HomeSort by relevance Sort by last modified time
    Searched refs:Alloc (Results 51 - 75 of 257) sorted by null

1 23 4 5 6 7 8 91011

  /external/chromium_org/gpu/command_buffer/client/
fenced_allocator.h 32 // Invalid offset, returned by Alloc in case of failure.
52 Offset Alloc(unsigned int size);
161 void *Alloc(unsigned int size) {
162 FencedAllocator::Offset offset = allocator_.Alloc(size);
169 // This is a type-safe version of Alloc, returning a typed pointer.
178 return static_cast<T *>(Alloc(count * sizeof(T)));
transfer_buffer.h 35 // Hiding Alloc from RingBufferWrapper
36 void* Alloc(unsigned int size) {
37 return RingBufferWrapper::Alloc(RoundToAlignment(size));
79 // Note: Alloc will fail if it can not return size bytes.
80 virtual void* Alloc(unsigned int size) = 0;
108 virtual void* Alloc(unsigned int size) OVERRIDE;
ring_buffer_test.cc 138 // Checks basic alloc and free.
143 RingBuffer::Offset offset = allocator_->Alloc(kSize);
161 RingBuffer::Offset offset = allocator_->Alloc(kSize);
174 RingBuffer::Offset offset1 = allocator_->Alloc(kSize);
187 RingBuffer::Offset offset = allocator_->Alloc(kBufferSize);
196 RingBuffer::Offset offset = allocator_->Alloc(kAlloc1);
199 offset = allocator_->Alloc(kAlloc2);
203 offset = allocator_->Alloc(kBufferSize);
239 // Checks basic alloc and free.
242 void* pointer = allocator_->Alloc(kSize)
    [all...]
mapped_memory.cc 35 void* MappedMemoryManager::Alloc(
44 void* mem = chunk->Alloc(size);
63 void* mem = mc->Alloc(size);
  /external/chromium_org/third_party/lzma_sdk/
7zBuf.c 14 int Buf_Create(CBuf *p, size_t size, ISzAlloc *alloc)
22 p->data = (Byte *)alloc->Alloc(alloc, size);
31 void Buf_Free(CBuf *p, ISzAlloc *alloc)
33 alloc->Free(alloc, p->data);
  /external/lzma/C/
7zBuf.c 14 int Buf_Create(CBuf *p, size_t size, ISzAlloc *alloc)
22 p->data = (Byte *)alloc->Alloc(alloc, size);
31 void Buf_Free(CBuf *p, ISzAlloc *alloc)
33 alloc->Free(alloc, p->data);
  /external/lzma/C/Util/Lzma/
makefile 10 $O\Alloc.obj \
  /frameworks/compile/mclinker/include/mcld/MC/
InputFactory.h 35 typedef GCFactory<Input, 0> Alloc;
  /frameworks/compile/mclinker/include/mcld/Support/
RegionFactory.h 29 typedef GCFactory<MemoryRegion, MCLD_REGION_CHUNK_SIZE> Alloc;
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
memalign.c 20 Content: Memory alloc alignments functions
50 ret = pMemop->Alloc(CodecID, &MemInfo);
65 ret = pMemop->Alloc(CodecID, &MemInfo);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
mem_align.c 20 Content: Memory alloc alignments functions
50 ret = pMemop->Alloc(CodecID, &MemInfo);
65 ret = pMemop->Alloc(CodecID, &MemInfo);
  /frameworks/av/media/libstagefright/codecs/common/include/
voMem.h 43 VO_U32 (VO_API * Alloc) (VO_S32 uID, VO_MEM_INFO * pMemInfo);
56 pMemOP->Alloc(ID, &voMemInfo); \
  /external/chromium_org/third_party/tcmalloc/vendor/src/
system-alloc.cc 146 void* Alloc(size_t size, size_t *actual_size, size_t alignment);
154 void* Alloc(size_t size, size_t *actual_size, size_t alignment);
162 void* Alloc(size_t size, size_t *actual_size, size_t alignment);
174 void SetChildAllocator(SysAllocator* alloc, unsigned int index,
176 if (index < kMaxAllocators && alloc != NULL) {
177 allocs_[index] = alloc;
182 void* Alloc(size_t size, size_t *actual_size, size_t alignment);
195 void* SbrkSysAllocator::Alloc(size_t size, size_t *actual_size,
267 void* MmapSysAllocator::Alloc(size_t size, size_t *actual_size,
336 void* DevMemSysAllocator::Alloc(size_t size, size_t *actual_size
    [all...]
  /art/runtime/mirror/
array.h 29 static Array* Alloc(Thread* self, Class* array_class, int32_t component_count)
32 static Array* Alloc(Thread* self, Class* array_class, int32_t component_count,
102 static PrimitiveArray<T>* Alloc(Thread* self, size_t length)
stack_trace_element.cc 40 StackTraceElement* StackTraceElement::Alloc(Thread* self,
stack_trace_element.h 51 static StackTraceElement* Alloc(Thread* self,
  /external/chromium_org/third_party/skia/src/core/
SkDescriptor.h 23 static SkDescriptor* Alloc(size_t length) {
84 SkDescriptor* desc = SkDescriptor::Alloc(fLength);
141 fDesc = SkDescriptor::Alloc(size);
SkRegionPriv.h 62 static RunHead* Alloc(int count) {
64 //SkDEBUGF(("************** gRgnAllocCounter::alloc %d\n", gRgnAllocCounter));
77 static RunHead* Alloc(int count, int yspancount, int intervalCount) {
81 RunHead* head = Alloc(count);
99 // We need to alloc & copy the current region before we call
102 writable = Alloc(fRunCount, fYSpanCount, fIntervalCount);
  /external/clang/test/CodeGenCXX/
new.cpp 170 struct Alloc{
174 ~Alloc();
182 delete[] new Alloc[10][20];
  /external/skia/src/core/
SkDescriptor.h 23 static SkDescriptor* Alloc(size_t length) {
84 SkDescriptor* desc = SkDescriptor::Alloc(fLength);
141 fDesc = SkDescriptor::Alloc(size);
SkRegionPriv.h 62 static RunHead* Alloc(int count) {
64 //SkDEBUGF(("************** gRgnAllocCounter::alloc %d\n", gRgnAllocCounter));
77 static RunHead* Alloc(int count, int yspancount, int intervalCount) {
81 RunHead* head = Alloc(count);
99 // We need to alloc & copy the current region before we call
102 writable = Alloc(fRunCount, fYSpanCount, fIntervalCount);
  /external/lzma/C/Util/LzmaLib/
makefile 13 $O\Alloc.obj \
  /frameworks/compile/mclinker/lib/MC/
InputFactory.cpp 39 Input* result = Alloc::allocate();
  /art/compiler/dex/
arena_bit_vector.h 70 return arena->Alloc(sizeof(ArenaBitVector::Iterator),
87 return arena->Alloc(sizeof(ArenaBitVector), ArenaAllocator::kAllocGrowableBitMap);
  /external/chromium_org/tools/memory_watcher/
memory_hook.h 38 return reinterpret_cast<T*>(MemoryHook::Alloc(n * sizeof(T)));
112 static void* Alloc(size_t size) {

Completed in 583 milliseconds

1 23 4 5 6 7 8 91011