HomeSort by relevance Sort by last modified time
    Searched defs:alloc (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /external/clang/test/PCH/
method_pool.h 16 + alloc; variable
25 + alloc { return 0; }
objc_methods.h 4 + alloc; variable
objc_import.h 4 + alloc; variable
  /external/libcxx/test/containers/sequences/vector.bool/
construct_iter_iter_alloc.pass.cpp 38 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...]
  /device/generic/goldfish/opengl/host/include/libOpenglRender/
IOStream.h 44 unsigned char *alloc(size_t len) { function in class:IOStream
48 ERR("Failed to flush in alloc\n");
57 ERR("Alloc (%u bytes) failed\n", allocLen);
  /external/compiler-rt/test/tsan/
race_on_heap.cc 16 void *alloc() { function
21 return alloc();
42 // CHECK: #{{1|2}} alloc
  /external/elfutils/0.153/libdwfl/
dwfl_module_getsym.c 78 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/libcxx/test/containers/sequences/vector/vector.cons/
construct_iter_iter_alloc.pass.cpp 49 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...]
  /bionic/linker/
linker_allocator.h 37 void* alloc();
63 T* alloc() { return reinterpret_cast<T*>(block_allocator_.alloc()); } function in class:LinkerAllocator
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/test/
mm_jpeg_ionbuf.h 44 struct ion_allocation_data alloc; member in struct:__anon2833
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
FixedBuffer.h 24 alloc(m_bufferLen);
32 void * alloc(size_t size) { function in class:FixedBuffer
  /device/lge/hammerhead/camera/QCamera2/stack/mm-jpeg-interface/test/
mm_jpeg_ionbuf.h 44 struct ion_allocation_data alloc; member in struct:__anon3340
  /device/moto/shamu/camera/QCamera2/stack/mm-jpeg-interface/inc/
mm_jpeg_ionbuf.h 44 struct ion_allocation_data alloc; member in struct:__anon4496
  /external/chromium_org/third_party/skia/src/gpu/
GrAllocPool.h 19 * 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/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.h 13 +(id)alloc; variable
  /external/clang/test/CodeGenCXX/
mangle-alias-template.cpp 3 template<typename T> struct alloc {}; struct
4 template<typename T> using Alloc = alloc<T>;
5 template<typename T, typename A = Alloc<T>> struct vector {};
27 Alloc<int> AC;
31 h<Alloc>(AC);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
help.h 5 size_t alloc; member in struct:cmdnames
strbuf.h 36 * XXX: do _not_ assume that the area that is yours is of size ->alloc - 1
37 * even if it's true in the current implementation. Alloc is somehow a
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/
CFCData.cpp 72 CFAllocatorRef alloc = kCFAllocatorDefault; local
74 CFCReleaser<CFWriteStreamRef> stream (::CFWriteStreamCreateWithAllocatedBuffers (alloc, alloc));
  /external/lldb/tools/debugserver/source/MacOSX/
CFBundle.cpp 61 CFAllocatorRef alloc = kCFAllocatorDefault; local
71 m_bundle_url.reset (::CFURLCreateWithFileSystemPath (alloc, cf_path.get(), kCFURLPOSIXPathStyle, true));
74 reset (::CFBundleCreate (alloc, m_bundle_url.get()));
CFData.cpp 75 CFAllocatorRef alloc = kCFAllocatorDefault; local
77 CFReleaser<CFWriteStreamRef> stream (::CFWriteStreamCreateWithAllocatedBuffers (alloc, alloc));
  /art/runtime/
monitor_pool_test.cc 63 bool alloc; local
65 alloc = true;
67 alloc = false;
70 alloc = r.next() % 2 == 0;
73 if (alloc) {
  /bionic/linker/tests/
linked_list_test.cpp 34 static entry_t* alloc() { function in class:__anon1077::LinkedListTestAllocator
  /development/ndk/platforms/android-3/include/linux/
mempool.h 29 mempool_alloc_t *alloc; member in struct:mempool_s
  /external/bluetooth/bluedroid/stack/avrc/
avrc_bld_ct.c 195 BOOLEAN alloc = FALSE; local
212 alloc = TRUE;
241 if (alloc && (status != AVRC_STS_NO_ERROR) )

Completed in 718 milliseconds

1 2 3 4 5 6