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

1234567891011>>

/external/compiler-rt/lib/builtins/arm/
H A Dudivmodsi4.S57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
109 /* Last block, no need to update r3 or r4. */
121 #define block(shift) \ define
127 block(31)
128 block(30)
129 block(29)
130 block(28)
131 block(27)
132 block(2
[all...]
H A Dudivsi3.S57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
107 /* Last block, no need to update r2 or r3. */
118 #define block(shift) \ define
124 block(31)
125 block(30)
126 block(29)
127 block(28)
128 block(27)
129 block(2
[all...]
H A Dumodsi3.S55 * This depends on the fixed instruction size of block.
58 * block(shift) implements the test-and-update-quotient core.
103 /* Last block, no need to update r2 or r3. */
112 #define block(shift) \ define
117 block(31)
118 block(30)
119 block(29)
120 block(28)
121 block(27)
122 block(2
[all...]
/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/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/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...]
/external/compiler-rt/test/BlocksRuntime/
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
/external/elfutils/src/libdw/
H A Ddwarf_frame_register.c103 Dwarf_Block block; local
107 get_uleb128 (block.length, p, end);
108 block.data = (void *) p;
114 &fs->cache->expr_tree, &block,
/external/libnfc-nci/halimpl/bcm2079x/hal/hal/
H A Dnfc_hal_hci_ci.c43 void nfc_hal_nv_ci_read (UINT16 num_bytes_read, tNFC_HAL_NV_CO_STATUS status, UINT8 block) argument
62 p_msg->nv_read.block = block;
/external/libnfc-nci/src/nfa/hci/
H A Dnfa_hci_ci.c41 void nfa_nv_ci_read (UINT16 num_bytes_read, tNFA_NV_CO_STATUS status, UINT8 block) argument
56 p_msg->nv_read.block = block;
/external/libvpx/libvpx/vp8/common/
H A Dmbpitch.c22 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
[all...]
/external/v8/src/
H A Dhydrogen-sce.cc12 // For each loop block walk the dominator tree from the backwards branch to
17 HBasicBlock* block = graph()->blocks()->at(i); local
18 if (block->IsLoopHeader()) {
19 HBasicBlock* back_edge = block->loop_information()->GetLastBackEdge();
24 block->loop_information()->stack_check()->Eliminate();
30 if (dominator == block) break;
/external/boringssl/src/crypto/modes/
H A Dofb.c58 block128_f block) {
77 (*block)(ivec, ivec, key);
90 (*block)(ivec, ivec, key);
100 (*block)(ivec, ivec, key);
56 CRYPTO_ofb128_encrypt(const uint8_t *in, uint8_t *out, size_t len, const void *key, uint8_t ivec[16], int *num, block128_f block) argument
/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/gptfdisk/
H A Dcrc32.cc27 /* chksum_crc() -- to a given block, this one calculates the
32 uint32_t chksum_crc32 (unsigned char *block, unsigned int length) argument
40 crc = ((crc >> 8) & 0x00FFFFFF) ^ crc_tab[(crc ^ *block++) & 0xFF];
/external/skia/experimental/FileReaderApp/
H A DReaderView.cpp51 void* block = sk_malloc_throw(toBeRead); local
52 fread(block, 1, toBeRead, f);
55 SkGPipeReader::Status fStatus = reader.playback(block, toBeRead, &bytesRead);
67 sk_free(block);
/external/valgrind/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...]
H A Dlzcnt64.c10 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[
[all...]

Completed in 3739 milliseconds

1234567891011>>