/external/clang/test/CodeGen/ |
2009-01-05-BlockInlining.c | 4 // These will be inlined by the optimizers provided the block descriptors 5 // and block literals are internal constants. 14 static int block(int x) { function 25 print(block(x));
|
/external/compiler-rt/BlocksRuntime/tests/ |
rdar6414583.c | 11 #include <Block.h> 22 dispatch_block_t block = Block_copy(^{ c = i; }); local 24 block(); 27 Block_release(block);
|
/external/valgrind/main/memcheck/tests/ |
err_disable1.c | 9 char* block = NULL; variable 21 usechar( block[5] ); 26 block = malloc(10); 27 free(block);
|
err_disable2.c | 10 char* block = NULL; variable 22 usechar( block[5] ); 27 block = malloc(10); 28 free(block);
|
err_disable3.c | 13 char* block = NULL; variable 25 usechar( block[5] ); 41 block = malloc(10); 42 free(block);
|
/external/valgrind/main/none/tests/x86/ |
bug135421-x86.c | 8 int block[2]; local 9 block[0] = x; 10 block[1] = 0; 18 : : /*in*/ "m"(block[0]), "m"(block[1]) : "esi","edi","memory" 20 return block[1];
|
bug125959-x86.c | 8 int block[3]; local 9 block[0] = (int)&buf[0]; 10 block[1] = i; 11 block[2] = 0; 18 : : /*in*/"r"(block) : "esi", "ebx", "eax", "memory", "cc" 20 return block[2];
|
jcxz.c | 8 UInt block[2]; local 9 block[0] = arg; 10 block[1] = 0xdeadbeef; 21 : /*out*/ : /*in*/ "m"(block[0]), 22 "m"(block[1]) : /*trash*/ "eax","ecx","cc","memory" 24 return block[1]; 29 UInt block[2]; local 30 block[0] = arg; 31 block[1] = 0xdeadbeef; 42 : /*out*/ : /*in*/ "m"(block[0]) [all...] |
/external/chromium_org/third_party/ocmock/OCMock/ |
OCMConstraint.h | 53 BOOL (^block)(id); 56 - (id)initWithConstraintBlock:(BOOL (^)(id))block; variable
|
OCMArg.h | 19 + (id)checkWithBlock:(BOOL (^)(id))block; variable
|
/external/libvpx/libvpx/vp8/common/ |
mbpitch.c | 22 x->block[r*4+c].predictor = x->predictor + r * 4 * 16 + c * 4; 30 x->block[16+r*2+c].predictor = x->predictor + 256 + r * 4 * 8 + c * 4; 39 x->block[20+r*2+c].predictor = x->predictor + 320 + r * 4 * 8 + c * 4; 46 x->block[r].qcoeff = x->qcoeff + r * 16; 47 x->block[r].dqcoeff = x->dqcoeff + r * 16; 48 x->block[r].eob = x->eobs + r; 54 int block; local 56 for (block = 0; block < 16; block++) /* y blocks * [all...] |
/external/chromium_org/v8/src/ |
hydrogen-sce.cc | 35 // For each loop block walk the dominator tree from the backwards branch to 40 HBasicBlock* block = graph()->blocks()->at(i); local 41 if (block->IsLoopHeader()) { 42 HBasicBlock* back_edge = block->loop_information()->GetLastBackEdge(); 47 block->loop_information()->stack_check()->Eliminate(); 53 if (dominator == block) break;
|
hydrogen-infer-types.cc | 35 HBasicBlock* block = graph()->blocks()->at(i); local 37 const ZoneList<HPhi*>* phis = block->phis(); 42 for (HInstructionIterator it(block); !it.Done(); it.Advance()) { 46 if (block->IsLoopHeader()) { 48 block->loop_information()->GetLastBackEdge(); 54 for (int j = 0; j < block->phis()->length(); ++j) { 55 HPhi* phi = block->phis()->at(j);
|
hydrogen-redundant-phi.cc | 38 HBasicBlock* block = blocks->at(i); local 39 for (int j = 0; j < block->phis()->length(); j++) { 40 all_phis.Add(block->phis()->at(j), zone()); 58 void HRedundantPhiEliminationPhase::ProcessBlock(HBasicBlock* block) { 59 ProcessPhis(block->phis()); 81 phi->block()->RemovePhi(phi);
|
hydrogen-removable-simulates.cc | 36 HBasicBlock* block = graph()->blocks()->at(i); local 37 // Make sure the merge list is empty at the start of a block. 39 // Nasty heuristic: Never remove the first simulate in a block. This 42 for (HInstructionIterator it(block); !it.Done(); it.Advance()) { 87 // Merge the accumulated simulates at the end of the block.
|
/external/harfbuzz/src/ |
harfbuzz-impl.c | 37 HB_Pointer block = NULL; local 41 block = calloc( 1, size ); 42 if ( !block ) 47 return block; 52 _hb_realloc(HB_Pointer block, 59 block2 = realloc( block, new_size ); 64 block = block2; 67 return block; 72 _hb_free( HB_Pointer block ) 74 if ( block ) [all...] |
/external/harfbuzz_ng/src/hb-old/ |
harfbuzz-impl.c | 37 HB_Pointer block = NULL; local 41 block = calloc( 1, size ); 42 if ( !block ) 47 return block; 52 _hb_realloc(HB_Pointer block, 59 block2 = realloc( block, new_size ); 64 block = block2; 67 return block; 72 _hb_free( HB_Pointer block ) 74 if ( block ) [all...] |
/frameworks/base/core/java/android/os/ |
ConditionVariable.java | 25 * open(), close() and block() are sticky. If open() is called before block(), 26 * block() will not block, and instead return immediately. 59 * Any threads that later approach block() will not block unless close() 77 * Any threads that call block() will block until someone calls open. 87 * Block the current thread until the condition is opened. 92 public void block() method in class:ConditionVariable 117 public boolean block(long timeout) method in class:ConditionVariable [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
execmem.c | 42 * Allocate a large block of memory which can hold code then dole it out 93 struct mem_block *block = NULL; local 103 block = mmAllocMem( exec_heap, size, 32, 0 ); 106 if (block) 107 addr = exec_mem + block->ofs; 124 struct mem_block *block = mmFindBlock(exec_heap, (unsigned char *)addr - exec_mem); local 126 if (block) 127 mmFreeMem(block);
|
texcompress_etc.c | 57 struct etc1_block block; local 64 etc1_parse_block(&block, src); 65 etc1_fetch_texel(&block, i % 4, j % 4, dst); 77 * The size of the source data must be a multiple of the ETC1 block size, 83 * found in the upper left part of the block(s), and the rest of the 85 * placed in the upper half of a 4x4 block, and the lower half of the 86 * pixels in the block will not be accessed.
|
/external/chromium_org/tools/gn/ |
import_manager.cc | 23 const BlockNode* block = node->AsBlock(); local 24 CHECK(block); 29 block->ExecuteBlockInScope(scope.get(), err);
|
/external/clang/lib/Analysis/ |
CFGReachabilityAnalysis.cpp | 11 // analysis based on Clang's CFGs. Clients can query if a given basic block 55 const CFGBlock *block = worklist.back(); local 58 if (visited[block->getBlockID()]) 60 visited[block->getBlockID()] = true; 65 DstReachability[block->getBlockID()] = true; 71 for (CFGBlock::const_pred_iterator i = block->pred_begin(), 72 e = block->pred_end(); i != e; ++i) {
|
/external/e2fsprogs/e2fsck/ |
extend.c | 32 char *block; local 47 block = malloc(blocksize); 48 if (block == 0) { 49 fprintf(stderr, _("Couldn't allocate block buffer (size=%d)\n"), 53 memset(block, 0, blocksize); 65 ret = read(fd, block, blocksize); 75 ret = write(fd, block, blocksize);
|
/external/e2fsprogs/lib/ext2fs/ |
mkdir.c | 41 char *block = 0; local 56 * Allocate a data block for the directory 65 retval = ext2fs_new_dir_block(fs, ino, parent, &block); 91 * Write out the inode and inode data block 93 retval = ext2fs_write_dir_block(fs, blk, block); 135 if (block) 136 ext2fs_free_mem(&block);
|
/external/fsck_msdos/ |
boot.c | 55 u_char block[DOSBOOTBLOCKSIZE]; local 60 if (read(dosfs, block, sizeof block) < sizeof block) { 61 perror("could not read boot block"); 65 if (block[510] != 0x55 || block[511] != 0xaa) { 66 pfatal("Invalid signature in boot block: %02x%02x", block[511], block[510]) [all...] |