Searched defs:alloc (Results 1 - 25 of 70) sorted by relevance

123

/external/clang/test/PCH/
H A Dmethod_pool.h16 + alloc; variable
25 + alloc { return 0; }
H A Dobjc_import.h4 + alloc; variable
H A Dobjc_methods.h4 + alloc; variable
/external/collada/src/dae/
H A DdaeMemorySystem.cpp13 daeMemorySystem::alloc(daeString pool, size_t n) function in class:daeMemorySystem
18 // printf("alloc[%s] - %d = 0x%x\n",pool,n,mem);
/external/webkit/Source/WebKit2/Shared/API/c/cf/
H A DWKErrorCF.cpp41 CFErrorRef WKErrorCopyCFError(CFAllocatorRef alloc, WKErrorRef error) argument
H A DWKURLResponseCF.cpp44 CFURLResponseRef WKURLResponseCopyCFURLResponse(CFAllocatorRef alloc, WKURLResponseRef urlResponse) argument
53 return CFURLResponseCreateCopy(alloc, toImpl(urlResponse)->platformResponse());
H A DWKURLRequestCF.cpp41 CFURLRequestRef WKURLRequestCopyCFURLRequest(CFAllocatorRef alloc, WKURLRequestRef urlRequest) argument
43 return CFURLRequestCreateCopy(alloc, toImpl(urlRequest)->platformRequest());
/external/webkit/Source/JavaScriptCore/API/
H A DJSStringRefCF.cpp54 CFStringRef JSStringCopyCFString(CFAllocatorRef alloc, JSStringRef string) argument
56 return CFStringCreateWithCharacters(alloc, reinterpret_cast<const UniChar*>(string->characters()), string->length());
/external/clang/test/CodeGenCXX/
H A Dmangle-alias-template.cpp3 template<typename T> struct alloc {}; struct
4 template<typename T> using Alloc = alloc<T>;
/external/skia/include/core/
H A DSkMaskFilter.h100 SkAutoMaskImage(SkMask* mask, bool alloc) { argument
101 if (alloc) {
/external/qemu/elff/
H A Delf_alloc.cc34 void* ElfAllocator::alloc(size_t size) { function in class:ElfAllocator
61 return elf->allocator()->alloc(size);
/external/skia/gpu/include/
H A DGrAllocPool.h29 * Frees all blocks that have been allocated with alloc().
38 void* alloc(size_t bytes);
64 T* alloc() { return (T*)fPool.alloc(sizeof(T)); } function in class:GrTAllocPool
H A DGrMemory.h56 bool alloc; local
58 alloc = newSize > fAllocatedBytes;
60 alloc = newSize != fAllocatedBytes;
62 if (alloc) {
/external/clang/test/ARCMT/
H A DCommon.h36 + (id)alloc; variable
/external/kernel-headers/original/linux/
H A Dmempool.h21 mempool_alloc_t *alloc; member in struct:mempool_s
/external/bluetooth/glib/gio/xdgmime/
H A Dxdgmimealias.c125 int alloc; local
134 alloc = list->n_aliases + 16;
135 list->aliases = realloc (list->aliases, alloc * sizeof (XdgAlias));
147 if (list->n_aliases == alloc)
149 alloc <<= 1;
151 alloc * sizeof (XdgAlias));
H A Dxdgmimeicon.c124 int alloc; local
133 alloc = list->n_icons + 16;
134 list->icons = realloc (list->icons, alloc * sizeof (XdgIcon));
146 if (list->n_icons == alloc)
148 alloc <<= 1;
150 alloc * sizeof (XdgIcon));
H A Dxdgmimeparent.c130 int i, alloc; local
140 alloc = list->n_mimes + 16;
141 list->parents = realloc (list->parents, alloc * sizeof (XdgMimeParents));
165 if (list->n_mimes == alloc)
167 alloc <<= 1;
169 alloc * sizeof (XdgMimeParents));
/external/clang/test/SemaTemplate/
H A Dalias-templates.cpp32 inner_ptr &&alloc();
48 thing(traits_type &traits) : traits(traits), val(traits.alloc()) {}
60 template<> bool &traits<thing<bool>>::alloc() { static bool b; return b; } function in class:X::traits
H A Dconstructor-template.cpp39 A alloc; member in struct:Outer
41 explicit Outer(const A& a) : alloc(a) { }
/external/freetype/src/raster/
H A Dftmisc.h76 FT_Alloc_Func alloc; member in struct:FT_MemoryRec_
/external/skia/gpu/src/
H A DGrAllocPool.cpp43 void* alloc(size_t bytes) { function in struct:GrAllocPool::Block
87 void* GrAllocPool::alloc(size_t size) { function in class:GrAllocPool
95 return fBlock->alloc(size);
/external/skia/src/core/
H A DSkChunkAlloc.cpp110 void* SkChunkAlloc::alloc(size_t bytes, AllocFailType ftype) { function in class:SkChunkAlloc
H A DSkEdgeBuilder.cpp10 template <typename T> static T* typedAllocThrow(SkChunkAlloc& alloc) { argument
11 return static_cast<T*>(alloc.allocThrow(sizeof(T)));
/external/webkit/Source/JavaScriptCore/wtf/
H A DBumpPointerAllocator.h54 // alloc should only be called after calling ensureCapacity; as such
55 // alloc will never fail.
56 void* alloc(size_t size) function in class:WTF::BumpPointerPool
66 // The dealloc method releases memory allocated using alloc. Memory
67 // must be released in a LIFO fashion, e.g. if the client calls alloc

Completed in 622 milliseconds

123