HomeSort by relevance Sort by last modified time
    Searched defs:block (Results 1 - 25 of 624) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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);
recursive-block.c 8 #include <Block.h>
36 //printf("will call inner block %p\n", (void *)inner);
47 voidVoid block = testFunction(); local
49 block();
50 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...]
bug132813-x86.c 6 unsigned int block[3]; local
17 : : "r"(&block) : "eax","edx","cc","memory"
20 block[0] - block[1], block[2]);
25 unsigned int block[3]; local
36 : : "r"(&block) : "eax","edx","cc","memory"
39 block[0] - block[1], block[2])
44 unsigned int block[3]; local
63 unsigned int block[3]; local
82 unsigned int block[3]; local
101 unsigned int block[3]; local
121 unsigned int block[3]; local
140 unsigned int block[3]; local
    [all...]
lzcnt32.c 10 UInt block[3] = { arg, 0, 0 }; local
18 : : "r"(&block[0]) : "esi","cc","memory"
20 *res = block[1];
21 *flags = block[2] & 0x8d5;
27 UInt block[3] = { arg, 0, 0 }; local
35 : : "r"(&block[0]) : "esi","cc","memory"
37 *res = block[1];
38 *flags = block[2] & 0x8d5;
  /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/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/ceres-solver/internal/ceres/
block_structure.cc 55 block_structure->rows[i].block.size = row.block().size();
56 block_structure->rows[i].block.position = row.block().position();
72 BlockProto *block = proto->add_cols(); local
73 block->set_size(block_structure.cols[i].size);
74 block->set_position(block_structure.cols[i].position);
79 BlockProto *block = row->mutable_block(); local
80 block->set_size(block_structure.rows[i].block.size)
    [all...]
  /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...]
  /external/valgrind/main/none/tests/amd64/
bug132813-amd64.c 6 unsigned long long int block[3]; local
17 : : "r"(&block) : "rax","rdx","cc","memory"
20 block[0] - block[1], block[2]);
25 unsigned long long int block[3]; local
36 : : "r"(&block) : "rax","rdx","cc","memory"
39 block[0] - block[1], block[2])
44 unsigned long long int block[3]; local
63 unsigned long long int block[3]; local
82 unsigned long long int block[3]; local
101 unsigned long long int block[3]; local
121 unsigned long long int block[3]; local
140 unsigned long long int block[3]; local
    [all...]
lzcnt64.c 10 ULong block[3] = { arg, 0ULL, 0ULL }; local
18 : : "r"(&block[0]) : "r11","cc","memory"
20 *res = block[1];
21 *flags = block[2] & 0x8d5;
27 ULong block[3] = { arg, 0ULL, 0ULL }; local
35 : : "r"(&block[0]) : "r11","cc","memory"
37 *res = block[1];
38 *flags = block[2] & 0x8d5;
44 ULong block[3] = { arg, 0ULL, 0ULL }; local
52 : : "r"(&block[0]) : "r11","cc","memory
    [all...]
  /external/valgrind/main/none/tests/ppc32/
test_fx.c 7 double block[2]; local
8 block[0] = x;
14 : /*in*/ "b" (&block[0])
17 return block[1];
22 double block[2]; local
23 block[0] = x;
29 : /*in*/ "b" (&block[0])
32 return block[1];
  /external/webkit/Source/JavaScriptCore/heap/
HandleStack.cpp 49 HandleSlot block = blocks[i]; local
50 heapRootMarker.mark(block, blockLength);
52 HandleSlot block = blocks[end]; local
53 heapRootMarker.mark(block, m_frame.m_next - block);
58 HandleSlot block = m_blockStack.grow(); local
59 m_frame.m_next = block;
60 m_frame.m_end = block + m_blockStack.blockLength;
  /libcore/luni/src/main/java/java/nio/
MappedByteBuffer.java 42 MappedByteBuffer(MemoryBlock block, int capacity, MapMode mapMode) {
43 super(capacity, block);
55 long address = block.toLong();
56 long size = block.getSize();
88 Libcore.os.mlock(block.toLong(), block.getSize());
89 Libcore.os.munlock(block.toLong(), block.getSize());
107 Libcore.os.msync(block.toLong(), block.getSize(), MS_SYNC)
    [all...]

Completed in 1964 milliseconds

1 2 3 4 5 6 7 8 91011>>