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

12345678

/external/clang/test/PCH/
H A Dmethod_pool.h16 + alloc; variable
25 + alloc { return 0; }
H A Dobjc_methods.h4 + alloc; variable
H A Dobjc_import.h4 + alloc; variable
/external/chromium_org/third_party/lzma_sdk/
H A D7zBuf.c14 int Buf_Create(CBuf *p, size_t size, ISzAlloc *alloc) argument
22 p->data = (Byte *)alloc->Alloc(alloc, size);
31 void Buf_Free(CBuf *p, ISzAlloc *alloc) argument
33 alloc->Free(alloc, p->data);
/external/libcxx/test/containers/sequences/vector.bool/
H A Dconstruct_iter_iter_alloc.pass.cpp38 std::allocator<bool> alloc; local
39 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), alloc); local
40 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an), alloc); local
41 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an), alloc); local
42 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an), alloc); local
43 test<std::vector<bool> >(a, an, alloc);
47 min_allocator<bool> alloc; local
48 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), alloc); local
49 test<std::vector<bool, min_allocator<bool>> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an), alloc); local
50 test<std::vector<bool, min_allocator<bool>> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an), alloc); local
51 test<std::vector<bool, min_allocator<bool>> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an), alloc); local
[all...]
/external/lzma/C/
H A D7zBuf.c14 int Buf_Create(CBuf *p, size_t size, ISzAlloc *alloc) argument
22 p->data = (Byte *)alloc->Alloc(alloc, size);
31 void Buf_Free(CBuf *p, ISzAlloc *alloc) argument
33 alloc->Free(alloc, p->data);
H A D7zBuf2.c19 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc) argument
26 data = (Byte *)alloc->Alloc(alloc, newSize);
31 alloc->Free(alloc, p->data);
39 void DynBuf_Free(CDynBuf *p, ISzAlloc *alloc) argument
41 alloc->Free(alloc, p->data);
/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/test/tsan/
H A Drace_on_heap.cc16 void *alloc() { function
21 return alloc();
42 // CHECK: #{{1|2}} alloc
/external/libcxx/test/containers/sequences/vector/vector.cons/
H A Dconstruct_iter_iter_alloc.pass.cpp49 std::allocator<int> alloc; local
50 test<std::vector<int> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc); local
51 test<std::vector<int> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), alloc); local
52 test<std::vector<int> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an), alloc); local
53 test<std::vector<int> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an), alloc); local
54 test<std::vector<int> >(a, an, alloc);
60 min_allocator<int> alloc; local
61 test<std::vector<int, min_allocator<int>> >(input_iterator<const int*>(a), input_iterator<const int*>(an), alloc); local
62 test<std::vector<int, min_allocator<int>> >(forward_iterator<const int*>(a), forward_iterator<const int*>(an), alloc); local
63 test<std::vector<int, min_allocator<int>> >(bidirectional_iterator<const int*>(a), bidirectional_iterator<const int*>(an), alloc); local
64 test<std::vector<int, min_allocator<int>> >(random_access_iterator<const int*>(a), random_access_iterator<const int*>(an), alloc); local
[all...]
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Ddecoder-oina.c45 OI_UINT8 alloc,
74 if (alloc > SBC_SNR) {
87 context->common.frameInfo.alloc = alloc;
39 OI_CODEC_SBC_DecoderConfigureRaw(OI_CODEC_SBC_DECODER_CONTEXT *context, OI_BOOL enhanced, OI_UINT8 frequency, OI_UINT8 mode, OI_UINT8 subbands, OI_UINT8 blocks, OI_UINT8 alloc, OI_UINT8 maxBitpool) argument
/external/bluetooth/bluedroid/stack/avrc/
H A Davrc_bld_ct.c195 BOOLEAN alloc = FALSE; local
212 alloc = TRUE;
241 if (alloc && (status != AVRC_STS_NO_ERROR) )
/external/chromium_org/third_party/skia/experimental/AndroidPathRenderer/
H A DAndroidPathRenderer.h34 TYPE* alloc(int size) { function in class:android::uirenderer::VertexBuffer
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAllocPool.h19 * Frees all blocks that have been allocated with alloc().
28 void* alloc(size_t bytes);
54 T* alloc() { return (T*)fPool.alloc(sizeof(T)); } function in class:GrTAllocPool
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_persistent_allocator.h25 void *alloc(uptr size);
29 StaticSpinMutex mtx; // Protects alloc of new blocks for region allocator.
46 inline void *PersistentAllocator::alloc(uptr size) { function in class:__sanitizer::PersistentAllocator
50 // If failed, lock, retry and alloc new superblock.
66 return thePersistentAllocator.alloc(sz);
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_dense_alloc_test.cc30 Alloc alloc; local
32 alloc.InitCache(&cache);
37 IndexT idx = alloc.Alloc(&cache);
40 int *v = alloc.Map(idx);
46 int *v = alloc.Map(idx);
48 alloc.Free(&cache, idx);
51 alloc.FlushCache(&cache);
/external/elfutils/0.153/libdwfl/
H A Ddwfl_module_getsym.c78 bool alloc = true; local
86 alloc = unlikely (shdr == NULL) || (shdr->sh_flags & SHF_ALLOC);
91 *shndxp = alloc ? shndx : (GElf_Word) -1;
115 else if (alloc)
/external/linux-tools-perf/perf-3.12.0/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/lldb/source/Host/macosx/cfcpp/
H A DCFCData.cpp72 CFAllocatorRef alloc = kCFAllocatorDefault; local
74 CFCReleaser<CFWriteStreamRef> stream (::CFWriteStreamCreateWithAllocatedBuffers (alloc, alloc));
/external/lldb/tools/debugserver/source/MacOSX/
H A DCFBundle.cpp61 CFAllocatorRef alloc = kCFAllocatorDefault; local
71 m_bundle_url.reset (::CFURLCreateWithFileSystemPath (alloc, cf_path.get(), kCFURLPOSIXPathStyle, true));
74 reset (::CFBundleCreate (alloc, m_bundle_url.get()));
H A DCFData.cpp75 CFAllocatorRef alloc = kCFAllocatorDefault; local
77 CFReleaser<CFWriteStreamRef> stream (::CFWriteStreamCreateWithAllocatedBuffers (alloc, alloc));
/external/skia/experimental/AndroidPathRenderer/
H A DAndroidPathRenderer.h34 TYPE* alloc(int size) { function in class:android::uirenderer::VertexBuffer

Completed in 650 milliseconds

12345678