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

1234

/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/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/openssh/
H A Dbuffer.h21 u_int alloc; /* Number of bytes allocated for data. */ member in struct:__anon9634
/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/Analysis/inlining/
H A DInlineObjCInstanceMethod.h13 +(id)alloc; variable
/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/compiler-rt/lib/tsan/output_tests/
H A Drace_on_heap.cc15 void *alloc() { function
20 return alloc();
41 // CHECK: #1 alloc
/external/linux-tools-perf/util/
H A Dhelp.h5 size_t alloc; member in struct:cmdnames
H A Dsigchain.c9 int alloc; member in struct:sigchain_signal
24 ALLOC_GROW(s->old, s->n + 1, s->alloc);
H A Dstrbuf.h36 * XXX: do _not_ assume that the area that is yours is of size ->alloc - 1
45 size_t alloc; member in struct:strbuf
59 return sb->alloc ? sb->alloc - sb->len - 1 : 0;
65 if (!sb->alloc)
67 assert(len < sb->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/src/gpu/
H A DGrAllocPool.h22 * Frees all blocks that have been allocated with alloc().
31 void* alloc(size_t bytes);
57 T* alloc() { return (T*)fPool.alloc(sizeof(T)); } function in class:GrTAllocPool
H A DGrAllocPool.cpp36 void* alloc(size_t bytes) { function in struct:GrAllocPool::Block
80 void* GrAllocPool::alloc(size_t size) { function in class:GrAllocPool
88 return fBlock->alloc(size);
/external/bluetooth/bluedroid/hci/src/
H A Dbt_hw.c111 ** Function alloc
120 static void *alloc(int size) function
125 p_hdr = (HC_BT_HDR *) bt_hc_cbacks->alloc(size);
136 ** allocated through the alloc call earlier
173 alloc,
/external/kernel-headers/original/linux/
H A Dmempool.h21 mempool_alloc_t *alloc; member in struct:mempool_s
/external/freetype/src/raster/
H A Dftmisc.h76 FT_Alloc_Func alloc; member in struct:FT_MemoryRec_
/external/skia/src/core/
H A DSkChunkAlloc.cpp102 void* SkChunkAlloc::alloc(size_t bytes, AllocFailType ftype) { function in class:SkChunkAlloc
H A DSkEdgeBuilder.cpp17 template <typename T> static T* typedAllocThrow(SkChunkAlloc& alloc) { argument
18 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
/external/bluetooth/bluedroid/main/
H A Dbte_main.c436 ** Function alloc
444 static char *alloc(int size) function
449 APPL_TRACE_DEBUG1("HC alloc size=%d", size);
456 APPL_TRACE_WARNING0("alloc returns NO BUFFER!");
468 ** through the alloc call earlier
565 alloc,
/external/clang/test/ARCMT/
H A DCommon.h42 + (id)alloc; variable

Completed in 3816 milliseconds

1234