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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/Inputs/
typo.h 4 + (id)alloc;
  /external/valgrind/main/massif/tests/
alloc-fns-B.vgtest 1 prog: alloc-fns
2 vgopts: --stacks=no --time-unit=B --heap-admin=0 --alloc-fn=a4 --alloc-fn=b4 --alloc-fn=b3 --alloc-fn=c4 --alloc-fn=c3 --alloc-fn=c2 --alloc-fn=d4 --alloc-fn=d3 --alloc-fn=d2 --alloc-fn=d1 --massif-out-file=massif.ou
    [all...]
deep-D.vgtest 2 vgopts: --stacks=no --time-unit=B --alloc-fn=a1 --alloc-fn=a2 --alloc-fn=a3 --alloc-fn=a4 --alloc-fn=a5 --alloc-fn=a6 --alloc-fn=a7 --alloc-fn=a8 --alloc-fn=a9 --alloc-fn=a10 --alloc-fn=a11 --alloc-fn=a12 --alloc-fn=main --depth=20 --massif-out-file=massif.ou
    [all...]
deep-B.vgtest 2 vgopts: --stats=yes --stacks=no --time-unit=B --alloc-fn=a6 --alloc-fn=a7 --alloc-fn=a8 --alloc-fn=a9 --alloc-fn=a10 --alloc-fn=a11 --alloc-fn=a12 -v -v --depth=8 --massif-out-file=massif.out
deep-C.vgtest 2 vgopts: --stacks=no --time-unit=B --alloc-fn=a3 --alloc-fn=a4 --alloc-fn=a5 --alloc-fn=a6 --alloc-fn=a7 --alloc-fn=a8 --alloc-fn=a9 --alloc-fn=a10 --alloc-fn=a11 --alloc-fn=a12 -v -v --stats=yes --depth=8 --massif-out-file=massif.ou
    [all...]
  /external/clang/test/SemaObjC/
self-in-function.m 12 + (id) alloc;
17 [self alloc];
19 [self alloc];
25 [y alloc];
class-message-protocol-lookup.m 7 + (id)alloc;
15 + (id)alloc;
21 Class<TestProtocol> c = [c alloc]; // expected-warning {{class method '+alloc' not found (return type defaults to 'id')}}
23 Class<Test2Protocol> c2 = [c2 alloc]; // ok
25 + (id)alloc { return 0; }
30 Class<TestProtocol> c = [c alloc]; // expected-warning {{class method '+alloc' not found (return type defaults to 'id')}}
32 Class<Test2Protocol> c2 = [c2 alloc]; // ok
  /external/valgrind/main/memcheck/tests/
malloc1_ks_alloc.vgtest 2 vgopts: -q --keep-stacktraces=alloc
malloc1_ks_alloc_and_free.vgtest 2 vgopts: -q --keep-stacktraces=alloc-and-free
  /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);
  /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);
  /system/extras/ext4_utils/
allocate.h 45 int block_allocation_num_regions(struct block_allocation *alloc);
46 int block_allocation_len(struct block_allocation *alloc);
49 void reduce_allocation(struct block_allocation *alloc, u32 len);
50 u32 get_block(struct block_allocation *alloc, u32 block);
51 u32 get_oob_block(struct block_allocation *alloc, u32 block);
52 void get_next_region(struct block_allocation *alloc);
53 void get_region(struct block_allocation *alloc, u32 *block, u32 *len);
62 void free_alloc(struct block_allocation *alloc);
63 int reserve_oob_blocks(struct block_allocation *alloc, int blocks);
64 int advance_blocks(struct block_allocation *alloc, int blocks)
    [all...]
indirect.c 28 static u8 *create_backing(struct block_allocation *alloc,
39 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
43 get_region(alloc, &region_block, &region_len);
55 static void reserve_indirect_block(struct block_allocation *alloc, int len)
57 if (reserve_oob_blocks(alloc, 1)) {
62 if (advance_blocks(alloc, len)) {
68 static void reserve_dindirect_block(struct block_allocation *alloc, int len)
70 if (reserve_oob_blocks(alloc, 1)) {
78 reserve_indirect_block(alloc, ind_block_len)
392 struct block_allocation *alloc = allocate_blocks(block_len + indirect_len); local
405 struct block_allocation *alloc; local
491 struct block_allocation *alloc; local
    [all...]
  /external/llvm/unittests/Support/
AllocatorTest.cpp 19 BumpPtrAllocator Alloc;
20 int *a = (int*)Alloc.Allocate(sizeof(int), 0);
21 int *b = (int*)Alloc.Allocate(sizeof(int) * 10, 0);
22 int *c = (int*)Alloc.Allocate(sizeof(int), 0);
31 EXPECT_EQ(1U, Alloc.GetNumSlabs());
33 BumpPtrAllocator Alloc2 = std::move(Alloc);
34 EXPECT_EQ(0U, Alloc.GetNumSlabs());
44 Alloc = std::move(Alloc2);
46 EXPECT_EQ(1U, Alloc.GetNumSlabs());
51 BumpPtrAllocator Alloc;
    [all...]
  /external/qemu/distrib/ext4_utils/src/
allocate.h 30 int block_allocation_num_regions(struct block_allocation *alloc);
31 int block_allocation_len(struct block_allocation *alloc);
34 void reduce_allocation(struct block_allocation *alloc, u32 len);
35 u32 get_block(struct block_allocation *alloc, u32 block);
36 u32 get_oob_block(struct block_allocation *alloc, u32 block);
37 void get_next_region(struct block_allocation *alloc);
38 void get_region(struct block_allocation *alloc, u32 *block, u32 *len);
47 void free_alloc(struct block_allocation *alloc);
48 int reserve_oob_blocks(struct block_allocation *alloc, int blocks);
49 int advance_blocks(struct block_allocation *alloc, int blocks)
    [all...]
indirect.c 28 static u8 *create_backing(struct block_allocation *alloc,
39 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
43 get_region(alloc, &region_block, &region_len);
55 static void reserve_indirect_block(struct block_allocation *alloc, int len)
57 if (reserve_oob_blocks(alloc, 1)) {
62 if (advance_blocks(alloc, len)) {
68 static void reserve_dindirect_block(struct block_allocation *alloc, int len)
70 if (reserve_oob_blocks(alloc, 1)) {
78 reserve_indirect_block(alloc, ind_block_len)
392 struct block_allocation *alloc = allocate_blocks(block_len + indirect_len); local
405 struct block_allocation *alloc; local
491 struct block_allocation *alloc; local
    [all...]
  /external/clang/test/ARCMT/
atautorelease-3.m 8 +alloc;
18 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
19 NSAutoreleasePool *chunkPool = [[NSAutoreleasePool alloc] init];
21 chunkPool = [[NSAutoreleasePool alloc] init];
30 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
31 NSAutoreleasePool *chunkPool = [[NSAutoreleasePool alloc] init];
33 chunkPool = [[NSAutoreleasePool alloc] init];
  /frameworks/rs/driver/
rsdAllocation.cpp 92 uint8_t *GetOffsetPtr(const android::renderscript::Allocation *alloc,
95 uint8_t *ptr = (uint8_t *)alloc->mHal.drvState.lod[lod].mallocPtr;
96 ptr += face * alloc->mHal.drvState.faceOffset;
97 ptr += zoff * alloc->mHal.drvState.lod[lod].dimY * alloc->mHal.drvState.lod[lod].stride;
98 ptr += yoff * alloc->mHal.drvState.lod[lod].stride;
99 ptr += xoff * alloc->mHal.state.elementSizeBytes;
104 static void Update2DTexture(const Context *rsc, const Allocation *alloc, const void *ptr,
108 DrvAllocation *drv = (DrvAllocation *)alloc->mHal.drv;
114 if (alloc->mHal.state.hasFaces)
    [all...]
  /external/clang/test/PCH/
objc_property.h 8 + alloc;
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeAllocator.h 32 typedef GCFactory<Node<DataType>, 64> Alloc;
36 typedef typename Alloc::iterator iterator;
37 typedef typename Alloc::const_iterator const_iterator;
42 NodeType* result = Alloc::allocate();
43 Alloc::construct(result);
57 if (Alloc::empty()) {
71 { Alloc::reset(); }
75 Alloc::m_pRoot = pClient.Alloc::m_pRoot;
76 Alloc::m_pCurrent = pClient.Alloc::m_pCurrent
    [all...]
  /external/libcxx/test/containers/sequences/dynarray/dynarray.cons/
alloc.pass.cpp 12 // template <class Alloc>
13 // dynarray(size_type c, const Alloc& alloc);
14 // template <class Alloc>
15 // dynarray(size_type c, const T& v, const Alloc& alloc);
16 // template <class Alloc>
17 // dynarray(const dynarray& d, const Alloc& alloc);
18 // template <class Alloc>
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.cons/
alloc.pass.cpp 12 // template <class Alloc>
13 // dynarray(size_type c, const Alloc& alloc);
14 // template <class Alloc>
15 // dynarray(size_type c, const T& v, const Alloc& alloc);
16 // template <class Alloc>
17 // dynarray(const dynarray& d, const Alloc& alloc);
18 // template <class Alloc>
    [all...]

Completed in 6307 milliseconds

1 2 3 4 5 6 7 8 91011>>