Searched refs:Block (Results 1 - 25 of 155) sorted by relevance

1234567

/external/compiler-rt/BlocksRuntime/tests/
H A Dmacro.c8 #include <Block.h>
H A Dbyrefcopy.c15 #include <Block.h>
H A Dbyrefcopyinner.c7 #include <Block.h>
H A Dbyrefcopystack.c17 #include <Block.h>
H A Dcopynull.c16 #import <Block.h>
H A Ddispatch_call_Block_with_release.c8 #include <Block.h>
H A Drdar6414583.c11 #include <Block.h>
H A Drecursiveassign.c21 #include <Block.h>
26 __block void (^recursive_copy_block)(int) = ^(int arg) { printf("got wrong Block\n"); exit(1); };
H A Dblockimport.c21 #include <Block.h>
38 //printf("Block dump %s\n", _Block_dump(vv));
H A Dglobalexpression.c10 #import <Block.h>
H A Dbyrefcopycopy.c12 #include <Block.h>
H A Dbyrefcopyint.c27 #include <Block.h>
H A Ddispatch_async.c12 #include <Block.h>
/external/skia/include/core/
H A DSkChunkAlloc.h60 struct Block;
61 Block* fBlock;
63 Block* fPool;
66 Block* newBlock(size_t bytes, AllocFailType ftype);
/external/skia/src/core/
H A DSkChunkAlloc.cpp12 struct SkChunkAlloc::Block { struct in class:SkChunkAlloc
13 Block* fNext;
23 Block* block = this;
25 Block* next = block->fNext;
31 Block* tail() {
32 Block* block = this;
35 Block* next = block->fNext;
77 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) {
78 Block* block = fPool;
89 block = (Block*)sk_malloc_flag
[all...]
H A DSkWriter32.cpp10 struct SkWriter32::Block { struct in class:SkWriter32
11 Block* fNext;
34 static Block* Create(size_t size) {
36 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size);
51 Block* block = fHead;
53 Block* next = block->fNext;
80 Block* block = fTail;
84 fHead = fTail = block = Block
[all...]
/external/skia/src/gpu/
H A DGrAllocPool.cpp15 struct GrAllocPool::Block { struct in class:GrAllocPool
16 Block* fNext;
21 static Block* Create(size_t size, Block* next) {
24 Block* block = (Block*)GrMalloc(sizeof(Block) + size);
26 block->fPtr = (char*)block + sizeof(Block);
70 Block* block = fBlock;
72 Block* nex
[all...]
H A DGrAllocPool.h39 struct Block;
41 Block* fBlock;
/external/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 bool insert(const CFGBlock *Block) { argument
52 // make sure that Block is non-null. Moreover, the CFGBlock iterator will
55 if (Block == 0)
57 if (VisitedBlockIDs.test(Block->getBlockID()))
59 VisitedBlockIDs.set(Block->getBlockID());
65 /// loop. Block must not be null.
66 bool alreadySet(const CFGBlock *Block) { argument
67 return VisitedBlockIDs.test(Block->getBlockID());
/external/clang/test/PCH/
H A Dtypes.h16 typedef int (^Block)(int, float);
/external/clang/lib/Analysis/
H A DReachableCode.cpp48 bool isDeadCodeRoot(const CFGBlock *Block);
50 const Stmt *findDeadCode(const CFGBlock *Block);
65 bool DeadCodeScan::isDeadCodeRoot(const clang::CFGBlock *Block) { argument
68 for (CFGBlock::const_pred_iterator I = Block->pred_begin(),
69 E = Block->pred_end(); I != E; ++I) {
96 const Stmt *DeadCodeScan::findDeadCode(const clang::CFGBlock *Block) { argument
97 for (CFGBlock::const_iterator I = Block->begin(), E = Block->end(); I!=E; ++I)
104 if (CFGTerminator T = Block->getTerminator()) {
126 const CFGBlock *Block local
[all...]
H A DCFG.cpp257 CFGBlock *Block; member in class:__anon3537::CFGBuilder
300 Block(NULL), Succ(NULL),
386 return Block;
389 void autoCreateBlock() { if (!Block) Block = createBlock(); }
609 Block = NULL; // the EXIT block is empty. Create all other blocks lazily.
696 return Block;
717 appendInitializer(Block, I);
728 return Block;
811 Block
[all...]
/external/stlport/test/eh/
H A Dnc_alloc.cpp118 if (s <= sizeof(Block)) {
131 Block* b = (Block*)p;
139 struct Block;
140 friend struct Block;
151 struct Block { struct in class:FastAllocator
153 Block *next;
159 static Block* mBlocks;
160 static Block *mFree;
164 FastAllocator::Block *FastAllocato
[all...]
/external/llvm/tools/lli/
H A DRecordingMemoryManager.cpp25 sys::MemoryBlock Block(Addr, Size);
26 AllocatedCodeMem.push_back(Allocation(Block, Alignment));
37 sys::MemoryBlock Block(Addr, Size);
38 AllocatedDataMem.push_back(Allocation(Block, Alignment));
/external/valgrind/main/coregrind/
H A Dm_mallocfree.c123 Nb: All Block payloads must be VG_MIN_MALLOC_SZB-aligned. This is
128 - Block admin section (low and high) lengths (due to elastic redzones)
129 - Block payload lengths (due to req_pszB rounding up)
140 // No fields are actually used in this struct, because a Block has
144 // make sizeof(Block) 1 byte so that we can do arithmetic with the
145 // Block* type in increments of 1!
148 Block; typedef in typeref:struct:__anon13664
174 // payload_bytes[] is made a single big Block when the Superblock is
207 Block* freelist[N_MALLOC_LISTS];
282 SizeT get_bszB_as_is ( Block*
[all...]

Completed in 214 milliseconds

1234567