Searched defs:block (Results 1 - 25 of 429) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2009-01-05-BlockInlining.c4 // 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));
H A D2010-06-17-asmcrash.c9 void avg_pixels8_mmx2(uint8_t *block, const uint8_t *pixels, int line_size, int h) argument
12 :"+g"(h), "+S"(pixels), "+D"(block)
/external/valgrind/main/memcheck/tests/
H A Derr_disable1.c9 char* block = NULL; variable
21 usechar( block[5] );
26 block = malloc(10);
27 free(block);
H A Derr_disable2.c10 char* block = NULL; variable
22 usechar( block[5] );
27 block = malloc(10);
28 free(block);
H A Derr_disable3.c13 char* block = NULL; variable
25 usechar( block[5] );
41 block = malloc(10);
42 free(block);
/external/valgrind/main/none/tests/x86/
H A Dbug135421-x86.c8 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];
H A Dbug125959-x86.c8 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];
H A Djcxz.c8 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[
[all...]
H A Dbug132813-x86.c6 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[
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...]
H A Dlzcnt32.c10 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;
76 UInt block[3] = { arg, 0, 0 }; local
84 : : "r"(&block[
93 UInt block[3] = { arg, 0, 0 }; local
[all...]
/external/compiler-rt/BlocksRuntime/tests/
H A Drdar6414583.c22 dispatch_block_t block = Block_copy(^{ c = i; }); local
24 block();
27 Block_release(block);
H A Ddispatch_call_Block_with_release.c16 dispatch_call_Block_with_release2(void *block) argument
18 void (^b)(void) = (void (^)(void))block;
25 void (^b2)(void) = ^{ callsomething("hellow world\n", 0); }; // global block now
H A Drecursive-block.c36 //printf("will call inner block %p\n", (void *)inner);
47 voidVoid block = testFunction(); local
49 block();
50 Block_release(block);
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_hci_ci.c39 void nfc_hal_nv_ci_read (UINT16 num_bytes_read, tNFC_HAL_NV_CO_STATUS status, UINT8 block) argument
58 p_msg->nv_read.block = block;
/external/libnfc-nci/src/nfa/hci/
H A Dnfa_hci_ci.c40 void nfa_nv_ci_read (UINT16 num_bytes_read, tNFA_NV_CO_STATUS status, UINT8 block) argument
57 p_msg->nv_read.block = block;
/external/webkit/Source/WebCore/rendering/
H A DTrailingFloatsRootInlineBox.h35 TrailingFloatsRootInlineBox(RenderBlock* block) argument
36 : RootInlineBox(block)
/external/fsck_msdos/
H A Dboot.c55 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[51
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-impl.c37 HB_Pointer block = NULL; local
41 block = calloc( 1, size );
42 if ( !block )
47 return block;
52 _hb_realloc(HB_Pointer block, argument
59 block2 = realloc( block, new_size );
64 block = block2;
67 return block;
72 _hb_free( HB_Pointer block )
74 if ( block )
[all...]
/external/valgrind/main/none/tests/amd64/
H A Dbug132813-amd64.c6 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[
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...]
/external/webkit/Source/JavaScriptCore/heap/
H A DHandleStack.cpp49 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;
/external/chromium/net/disk_cache/
H A Dmapped_file_posix.cc35 bool MappedFile::Load(const FileBlock* block) { argument
36 size_t offset = block->offset() + view_size_;
37 return Read(block->buffer(), block->size(), offset);
40 bool MappedFile::Store(const FileBlock* block) { argument
41 size_t offset = block->offset() + view_size_;
42 return Write(block->buffer(), block->size(), offset);
H A Dmapped_file_win.cc45 bool MappedFile::Load(const FileBlock* block) { argument
46 size_t offset = block->offset() + view_size_;
47 return Read(block->buffer(), block->size(), offset);
50 bool MappedFile::Store(const FileBlock* block) { argument
51 size_t offset = block->offset() + view_size_;
52 return Write(block->buffer(), block->size(), offset);
/external/clang/lib/Analysis/
H A DCFGReachabilityAnalysis.cpp11 // 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/clang/test/Analysis/
H A Dtemplates.cpp6 // Do not crash on this templated code which uses a block.
8 static void useBlock(my_block block){} argument
/external/clang/test/SemaCXX/
H A Dblocks.cpp25 int repeat(int value, int (^block)(int), unsigned n) { argument
26 while (n--) value = block(value);

Completed in 1197 milliseconds

1234567891011>>