HomeSort by relevance Sort by last modified time
    Searched defs:block (Results 26 - 50 of 1844) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/strace/tests-mx32/
check_sigblock.c 40 const int block = !!atoi(av[1]); local
48 return block ^ sigismember(&mask, signum);
set_sigblock.c 41 const int block = atoi(av[1]); local
48 if (sigprocmask(block ? SIG_BLOCK : SIG_UNBLOCK, &mask, NULL))
  /external/valgrind/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/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...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
aix-gc-1.s 11 LC02: .tc block[TC],block[RW]
51 .globl block
52 .csect block[RW]
53 block: label
  /external/libvpx/libvpx/vp8/common/
mbpitch.c 18 x->block[r * 4 + c].predictor = x->predictor + r * 4 * 16 + c * 4;
24 x->block[16 + r * 2 + c].predictor =
31 x->block[20 + r * 2 + c].predictor =
37 x->block[r].qcoeff = x->qcoeff + r * 16;
38 x->block[r].dqcoeff = x->dqcoeff + r * 16;
39 x->block[r].eob = x->eobs + r;
44 int block; local
46 for (block = 0; block < 16; ++block) /* y blocks *
    [all...]
  /external/syslinux/core/thread/
kill_thread.c 10 struct thread_block *block; local
24 block = thread->blocked;
25 if (block) {
26 struct semaphore *sem = block->semaphore;
28 block->list.next->prev = block->list.prev;
29 block->list.prev->next = block->list.next;
33 block->timed_out = true; /* Fake an immediate timeout */
  /prebuilts/go/darwin-x86/src/crypto/sha1/
sha1block_amd64.go 17 func block(dig *digest, p []byte) { func
19 // blockAVX2 calculates sha1 for 2 block per iteration
20 // it also interleaves precalculation for next block.
sha1block_arm64.go 21 func block(dig *digest, p []byte) { func
  /prebuilts/go/darwin-x86/src/crypto/sha256/
sha256block_arm64.go 16 func block(dig *digest, p []byte) { func
  /prebuilts/go/darwin-x86/src/crypto/sha512/
sha512block_amd64.go 19 func block(dig *digest, p []byte) { func
  /prebuilts/go/linux-x86/src/crypto/sha1/
sha1block_amd64.go 17 func block(dig *digest, p []byte) { func
19 // blockAVX2 calculates sha1 for 2 block per iteration
20 // it also interleaves precalculation for next block.
sha1block_arm64.go 21 func block(dig *digest, p []byte) { func
  /prebuilts/go/linux-x86/src/crypto/sha256/
sha256block_arm64.go 16 func block(dig *digest, p []byte) { func
  /prebuilts/go/linux-x86/src/crypto/sha512/
sha512block_amd64.go 19 func block(dig *digest, p []byte) { func
  /external/elfutils/libdw/
dwarf_frame_register.c 99 Dwarf_Block block; local
103 get_uleb128 (block.length, p, end);
104 block.data = (void *) p;
110 &fs->cache->expr_tree, &block,
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_opt_coalesce_ff_writes.c 37 struct qblock *block = qir_entry_block(c); local
38 if (block != qir_exit_block(c))
vc4_opt_vpm.c 40 struct qblock *block = qir_entry_block(c); local
41 if (block != qir_exit_block(c))
  /external/syslinux/core/include/
cache.h 11 block_t block; member in struct:cache
  /external/v8/src/crankshaft/
hydrogen-sce.cc 12 // 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;
  /frameworks/base/libs/androidfw/tests/
AppAsLib_test.cpp 38 ssize_t block = table.getResource(app::R::integer::number1, &val); local
39 ASSERT_GE(block, 0);
57 ssize_t block = table.getResource(lib::R::integer::number1, &val); local
58 ASSERT_GE(block, 0);
76 ssize_t block = table.getResource(lib::R::integer::number1, &val); local
77 ASSERT_GE(block, 0);

Completed in 328 milliseconds

12 3 4 5 6 7 8 91011>>