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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/rs/
rs_native.spec 3 param RsAllocation alloc
7 param RsAllocation alloc
  /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/clang/test/PCH/
objc_import.h 4 + alloc; variable
objc_property.h 8 + alloc;
  /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...]
  /frameworks/compile/libbcc/lib/Renderscript/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
156 Allocation_t *alloc = (Allocation_t *)a.p; local
164 Allocation_t *alloc = (Allocation_t *)a.p; local
173 Allocation_t *alloc = (Allocation_t *)a.p; local
182 Allocation_t *alloc = (Allocation_t *)a.p; local
190 Allocation_t *alloc = (Allocation_t *)a.p; local
199 Allocation_t *alloc = (Allocation_t *)a.p; local
260 Allocation_t *alloc = (Allocation_t *)a.p; local
284 Allocation_t *alloc = (Allocation_t *)a.p; local
    [all...]
  /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#>#}>
  /frameworks/compile/mclinker/include/mcld/Support/
GCFactory.h 114 template<typename Alloc>
115 class GCFactoryBase : public Alloc
118 typedef DataIterator<typename Alloc::chunk_type,
120 typename Alloc::value_type> > iterator;
121 typedef DataIterator<typename Alloc::chunk_type,
123 typename Alloc::value_type> > const_iterator;
125 typedef typename Alloc::value_type value_type;
126 typedef typename Alloc::pointer pointer;
127 typedef typename Alloc::reference reference;
128 typedef typename Alloc::size_type size_type
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
main.m 9 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
20 TreeRewriteParser *parser = [[TreeRewriteParser alloc] initWithTokenStream:tokenStream];
23 // ANTLRCommonTreeNodeStream *treeStream = [[ANTLRCommonTreeNodeStream alloc] initWithTree:program_tree];
24 // SimpleCTP *walker = [[SimpleCTP alloc] initWithTreeNodeStream:treeStream];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
main.m 8 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
11 TestLexer *lexer = [[TestLexer alloc] initWithCharStream:stream];
  /external/clang/test/CodeGenObjC/
no-vararg-messaging.m 6 +(id)alloc;
16 [[[[[[Foo alloc] init] retain] autorelease] self] release];

Completed in 715 milliseconds

1 2 3 4 5 6 7 8 91011>>