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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/Inputs/
typo.h 4 + (id)alloc;
  /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);
7zBuf.h 20 int Buf_Create(CBuf *p, size_t size, ISzAlloc *alloc);
21 void Buf_Free(CBuf *p, ISzAlloc *alloc);
32 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc);
33 void DynBuf_Free(CDynBuf *p, ISzAlloc *alloc);
Lzma2Dec.h 28 #define Lzma2Dec_FreeProbs(p, alloc) LzmaDec_FreeProbs(&(p)->decoder, alloc);
29 #define Lzma2Dec_Free(p, alloc) LzmaDec_Free(&(p)->decoder, alloc);
31 SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
32 SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
78 Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc);
  /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);
7zBuf.h 20 int Buf_Create(CBuf *p, size_t size, ISzAlloc *alloc);
21 void Buf_Free(CBuf *p, ISzAlloc *alloc);
32 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc);
33 void DynBuf_Free(CDynBuf *p, ISzAlloc *alloc);
7zBuf2.c 19 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc)
26 data = (Byte *)alloc->Alloc(alloc, newSize);
31 alloc->Free(alloc, p->data);
39 void DynBuf_Free(CDynBuf *p, ISzAlloc *alloc)
41 alloc->Free(alloc, p->data);
Lzma2Dec.h 28 #define Lzma2Dec_FreeProbs(p, alloc) LzmaDec_FreeProbs(&(p)->decoder, alloc);
29 #define Lzma2Dec_Free(p, alloc) LzmaDec_Free(&(p)->decoder, alloc);
31 SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
32 SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
78 Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc);
  /external/clang/test/PCH/
objc_property.h 8 + alloc;
method_pool.h 16 + alloc; variable
25 + alloc { return 0; }
objc_import.h 4 + alloc; variable
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_dense_alloc_test.cc 25 typedef DenseSlabAlloc<int, 128, 128> Alloc;
26 typedef Alloc::Cache Cache;
27 typedef Alloc::IndexT IndexT;
30 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)
    [all...]
  /external/chromium_org/tools/android/heap_profiler/
heap_profiler.c 33 // | | | | Alloc tot | stack frames +
153 static Alloc allocs[ALLOCS_ENTRIES_MAX];
154 static Alloc* allocs_freelist;
155 static RB_HEAD(HeapEntriesTree, Alloc) allocs_tree =
159 static int allocs_tree_cmp(Alloc *alloc_1, Alloc *alloc_2) {
167 RB_PROTOTYPE(HeapEntriesTree, Alloc, rb_node, allocs_tree_cmp);
168 RB_GENERATE(HeapEntriesTree, Alloc, rb_node, allocs_tree_cmp);
170 // Allocates a new Alloc and inserts it in the tree.
171 static Alloc* insert_alloc
173 Alloc* alloc = NULL; local
209 Alloc* alloc = NULL; local
359 Alloc* alloc = insert_alloc(start, end, st, flags); local
    [all...]
  /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...]
  /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...]
  /external/libcxx/test/language.support/support.dynamic/alloc.errors/bad.alloc/
Android.mk 17 test_makefile := external/libcxx/test/language.support/support.dynamic/alloc.errors/bad.alloc/Android.mk
19 test_name := language.support/support.dynamic/alloc.errors/bad.alloc/bad_alloc
  /external/chromium_org/third_party/webrtc/base/
scoped_autorelease_pool.mm 18 pool_ = [[NSAutoreleasePool alloc] init];
  /device/asus/flo/camera/QCamera2/stack/mm-jpeg-interface/test/
mm_jpeg_ionbuf.c 53 p_buffer->alloc.len = p_buffer->size;
54 p_buffer->alloc.align = 4096;
55 p_buffer->alloc.flags = ION_FLAG_CACHED;
56 p_buffer->alloc.heap_id_mask = 0x1 << ION_IOMMU_HEAP_ID;
65 p_buffer->alloc.len = (p_buffer->alloc.len + 4095) & (~4095);
66 lrc = ioctl(p_buffer->ion_fd, ION_IOC_ALLOC, &p_buffer->alloc);
69 p_buffer->alloc.len);
73 p_buffer->ion_info_fd.handle = p_buffer->alloc.handle;
83 l_buffer = mmap(NULL, p_buffer->alloc.len, PROT_READ | PROT_WRITE
    [all...]
  /device/lge/hammerhead/camera/QCamera2/stack/mm-jpeg-interface/test/
mm_jpeg_ionbuf.c 53 p_buffer->alloc.len = p_buffer->size;
54 p_buffer->alloc.align = 4096;
55 p_buffer->alloc.flags = ION_FLAG_CACHED;
56 p_buffer->alloc.heap_id_mask = 0x1 << ION_IOMMU_HEAP_ID;
65 p_buffer->alloc.len = (p_buffer->alloc.len + 4095) & (~4095);
66 lrc = ioctl(p_buffer->ion_fd, ION_IOC_ALLOC, &p_buffer->alloc);
69 p_buffer->alloc.len);
73 p_buffer->ion_info_fd.handle = p_buffer->alloc.handle;
83 l_buffer = mmap(NULL, p_buffer->alloc.len, PROT_READ | PROT_WRITE
    [all...]
  /external/chromium_org/third_party/skia/tests/
MemsetTest.cpp 14 SkChunkAlloc alloc(min);
16 REPORTER_ASSERT(reporter, 0 == alloc.totalCapacity());
17 REPORTER_ASSERT(reporter, 0 == alloc.totalUsed());
18 REPORTER_ASSERT(reporter, 0 == alloc.blockCount());
19 REPORTER_ASSERT(reporter, !alloc.contains(NULL));
20 REPORTER_ASSERT(reporter, !alloc.contains(reporter));
22 alloc.reset();
23 REPORTER_ASSERT(reporter, 0 == alloc.totalCapacity());
24 REPORTER_ASSERT(reporter, 0 == alloc.totalUsed());
25 REPORTER_ASSERT(reporter, 0 == alloc.blockCount())
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
cache.h 43 * is 'alloc', using the standard growing factor alloc_nr() macro.
45 * DO NOT USE any expression with side-effect for 'x' or 'alloc'.
47 #define ALLOC_GROW(x, nr, alloc) \
49 if ((nr) > alloc) { \
50 if (alloc_nr(alloc) < (nr)) \
51 alloc = (nr); \
53 alloc = alloc_nr(alloc); \
54 x = xrealloc((x), alloc * sizeof(*(x))); \
  /bionic/linker/
linker_allocator.h 37 void* alloc();
63 T* alloc() { return reinterpret_cast<T*>(block_allocator_.alloc()); } function in class:LinkerAllocator
  /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
  /bionic/linker/tests/
linker_allocator_test.cpp 54 test_struct_nominal* ptr1 = allocator.alloc();
56 test_struct_nominal* ptr2 = allocator.alloc();
70 char* ptr1 = reinterpret_cast<char*>(allocator.alloc());
71 char* ptr2 = reinterpret_cast<char*>(allocator.alloc());
81 test_struct_larger* ptr1 = allocator.alloc();
82 test_struct_larger* ptr2 = allocator.alloc();
93 ASSERT_TRUE(allocator.alloc() != nullptr);
96 test_struct_larger* ptr_to_free = allocator.alloc();
106 test_struct_larger* page1_ptr = allocator.alloc();
109 allocator.alloc();
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
FixedBuffer.h 24 alloc(m_bufferLen);
32 void * alloc(size_t size) { function in class:FixedBuffer

Completed in 1862 milliseconds

1 2 3 4 5 6 7 8 91011>>