HomeSort by relevance Sort by last modified time
    Searched full:alloc (Results 1 - 25 of 3588) 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/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 32 int block_allocation_num_regions(struct block_allocation *alloc);
33 int block_allocation_len(struct block_allocation *alloc);
36 void reduce_allocation(struct block_allocation *alloc, u32 len);
37 u32 get_block(struct block_allocation *alloc, u32 block);
38 u32 get_oob_block(struct block_allocation *alloc, u32 block);
39 void get_next_region(struct block_allocation *alloc);
40 void get_region(struct block_allocation *alloc, u32 *block, u32 *len);
49 void free_alloc(struct block_allocation *alloc);
50 int reserve_oob_blocks(struct block_allocation *alloc, int blocks);
51 int advance_blocks(struct block_allocation *alloc, int blocks)
    [all...]
indirect.c 30 static u8 *create_backing(struct block_allocation *alloc,
41 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
45 get_region(alloc, &region_block, &region_len);
57 static void reserve_indirect_block(struct block_allocation *alloc, int len)
59 if (reserve_oob_blocks(alloc, 1)) {
64 if (advance_blocks(alloc, len)) {
70 static void reserve_dindirect_block(struct block_allocation *alloc, int len)
72 if (reserve_oob_blocks(alloc, 1)) {
80 reserve_indirect_block(alloc, ind_block_len)
394 struct block_allocation *alloc = allocate_blocks(block_len + indirect_len); local
407 struct block_allocation *alloc; local
493 struct block_allocation *alloc; local
    [all...]
extent.c 30 static u8 *extent_create_backing(struct block_allocation *alloc,
38 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
42 get_region(alloc, &region_block, &region_len);
56 static void extent_create_backing_file(struct block_allocation *alloc,
60 for (; alloc != NULL && backing_len > 0; get_next_region(alloc)) {
64 get_region(alloc, &region_block, &region_len);
79 struct block_allocation *alloc = allocate_blocks(block_len + 1); local
85 if (alloc == NULL)
184 struct block_allocation *alloc; local
209 struct block_allocation *alloc; local
225 struct block_allocation *alloc; local
    [all...]
  /external/clang/test/ARCMT/
atautorelease-3.m 9 +alloc;
19 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
20 NSAutoreleasePool *chunkPool = [[NSAutoreleasePool alloc] init];
22 chunkPool = [[NSAutoreleasePool alloc] init];
31 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
32 NSAutoreleasePool *chunkPool = [[NSAutoreleasePool alloc] init];
34 chunkPool = [[NSAutoreleasePool alloc] init];
  /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());
36 BumpPtrAllocator Alloc(4096, 4096);
37 Alloc.Allocate(3000, 0);
38 EXPECT_EQ(1U, Alloc.GetNumSlabs());
39 Alloc.Allocate(3000, 0);
40 EXPECT_EQ(2U, Alloc.GetNumSlabs())
    [all...]
  /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 35 typedef GCFactory<Node<DataType>, 64> Alloc;
39 typedef typename Alloc::iterator iterator;
40 typedef typename Alloc::const_iterator const_iterator;
45 NodeType* result = Alloc::allocate();
46 Alloc::construct(result);
60 if (Alloc::empty()) {
74 { Alloc::reset(); }
78 Alloc::m_pRoot = pClient.Alloc::m_pRoot;
79 Alloc::m_pCurrent = pClient.Alloc::m_pCurrent
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
main.m 7 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
11 ANTLRStringStream *stream = [[ANTLRStringStream alloc] initWithStringNoCopy:string];
12 SimpleCLexer *lexer = [[SimpleCLexer alloc] initWithCharStream:stream];
19 ANTLRCommonTokenStream *tokens = [[ANTLRCommonTokenStream alloc] initWithTokenSource:lexer];
20 SimpleCParser *parser = [[SimpleCParser alloc] initWithTokenStream:tokens];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
main.m 7 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
11 ANTLRStringStream *stream = [[ANTLRStringStream alloc] initWithStringNoCopy:string];
12 SymbolTableLexer *lexer = [[SymbolTableLexer alloc] initWithCharStream:stream];
19 ANTLRCommonTokenStream *tokens = [[ANTLRCommonTokenStream alloc] initWithTokenSource:lexer];
20 SymbolTableParser *parser = [[SymbolTableParser alloc] initWithTokenStream:tokens];
  /external/clang/test/CodeCompletion/
templates.cpp 8 template<typename T, typename Alloc = std::allocator<T> >
9 class vector : Alloc {
14 template<typename Alloc> class vector<bool, Alloc>;
22 // CHECK-CC1-NEXT: vector<<#typename T#>{#, <#typename Alloc#>#}>
  /external/skia/tests/
MemsetTest.cpp 15 SkChunkAlloc alloc(min);
17 REPORTER_ASSERT(reporter, 0 == alloc.totalCapacity());
18 REPORTER_ASSERT(reporter, 0 == alloc.totalUsed());
19 REPORTER_ASSERT(reporter, 0 == alloc.blockCount());
20 REPORTER_ASSERT(reporter, !alloc.contains(NULL));
21 REPORTER_ASSERT(reporter, !alloc.contains(reporter));
23 alloc.reset();
24 REPORTER_ASSERT(reporter, 0 == alloc.totalCapacity());
25 REPORTER_ASSERT(reporter, 0 == alloc.totalUsed());
26 REPORTER_ASSERT(reporter, 0 == alloc.blockCount())
    [all...]
  /frameworks/rs/driver/runtime/
rs_allocation.c 8 Allocation_t *alloc = (Allocation_t *)a.p; local
9 return alloc->mHal.drvState.lod[0].dimX;
14 Allocation_t *alloc = (Allocation_t *)a.p; local
15 return alloc->mHal.drvState.lod[0].dimY;
20 Allocation_t *alloc = (Allocation_t *)a.p; local
21 return alloc->mHal.drvState.lod[0].dimZ;
26 Allocation_t *alloc = (Allocation_t *)a.p; local
27 return alloc->mHal.state.hasMipmaps;
32 Allocation_t *alloc = (Allocation_t *)a.p; local
33 return alloc->mHal.state.hasFaces
39 Allocation_t *alloc = (Allocation_t *)a.p; local
108 Allocation_t *alloc = (Allocation_t *)a.p; local
164 Allocation_t *alloc = (Allocation_t *)a.p; local
172 Allocation_t *alloc = (Allocation_t *)a.p; local
181 Allocation_t *alloc = (Allocation_t *)a.p; local
190 Allocation_t *alloc = (Allocation_t *)a.p; local
198 Allocation_t *alloc = (Allocation_t *)a.p; local
207 Allocation_t *alloc = (Allocation_t *)a.p; local
268 Allocation_t *alloc = (Allocation_t *)a.p; local
282 Allocation_t *alloc = (Allocation_t *)a.p; local
    [all...]

Completed in 470 milliseconds

1 2 3 4 5 6 7 8 91011>>