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

1 2 3 45 6 7 8 91011>>

  /external/strace/tests-mx32/
tprintf.c 60 ssize_t block = write_retry(fd, &buf[offset], count); local
62 offset += block;
63 count -= (size_t) block;
  /external/syslinux/core/thread/
semaphore.c 31 struct thread_block block; local
35 block.thread = curr;
36 block.semaphore = sem;
37 block.block_time = now;
38 block.timeout = timeout ? now+timeout : 0;
39 block.timed_out = false;
41 curr->blocked = █
44 block.list.prev = sem->list.prev;
45 block.list.next = &sem->list;
46 sem->list.prev = &block.list
74 struct thread_block *block; local
    [all...]
timeout.c 20 struct thread_block *block; local
26 if ((block = t->blocked) && (timeout = block->timeout)) {
28 struct semaphore *sem = block->semaphore;
30 block->list.next->prev = block->list.prev;
31 block->list.prev->next = block->list.next;
35 block->timed_out = true;
  /external/syslinux/gpxe/src/include/gpxe/
md5.h 16 u32 block[MD5_BLOCK_WORDS]; member in struct:md5_ctx
  /external/v8/src/crankshaft/
hydrogen-infer-types.cc 13 HBasicBlock* block = graph()->blocks()->at(i); local
15 const ZoneList<HPhi*>* phis = block->phis();
20 for (HInstructionIterator it(block); !it.Done(); it.Advance()) {
24 if (block->IsLoopHeader()) {
26 block->loop_information()->GetLastBackEdge();
32 for (int j = 0; j < block->phis()->length(); ++j) {
33 HPhi* phi = block->phis()->at(j);
hydrogen-redundant-phi.cc 16 HBasicBlock* block = blocks->at(i); local
17 for (int j = 0; j < block->phis()->length(); j++) {
18 all_phis.Add(block->phis()->at(j), zone());
36 void HRedundantPhiEliminationPhase::ProcessBlock(HBasicBlock* block) {
37 ProcessPhis(block->phis());
59 phi->block()->RemovePhi(phi);
  /external/valgrind/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/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/valgrind/none/tests/solaris/
sigresend.c 28 sigset_t block, current; local
51 if (sigemptyset(&block)) {
55 if (sigaddset(&block, SIGUSR1)) {
59 if (syscall(SYS_sigresend, SIGINT, NULL, &block)) {
  /external/valgrind/none/tests/x86/
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;
  /frameworks/base/libs/androidfw/tests/
TestHelpers.cpp 63 ssize_t block = table.getResource(resource_id, &val, MAY_NOT_BE_BAG); local
64 if (block < 0) {
72 const ResStringPool* pool = table.getTableStringBlock(block);
74 return AssertionFailure() << "table has no string pool for block " << block;
  /frameworks/base/tools/aapt2/util/
BigBuffer.cpp 29 Block& block = blocks_.back(); local
30 if (block.block_size_ - block.size >= size) {
31 void* out_buffer = block.buffer.get() + block.size;
32 block.size += size;
40 Block block = {}; local
42 // Zero-allocate the block's buffer
56 Block& block = blocks_.back(); local
68 Block block = {}; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/cover/testdata/
main.go 21 type block struct { type
26 var counters = make(map[block]bool)
33 b := block{
43 b := block{
  /prebuilts/go/darwin-x86/src/runtime/
mgcsweepbuf.go 20 // can be accessed without locks, but adding a block or
60 // Do we need to add a block?
62 var block *gcSweepBlock
67 block = (*gcSweepBlock)(atomic.Loadp(blockp))
69 // Add a new block to the spine, potentially growing
104 // Allocate a new block and add it to the spine.
105 block = (*gcSweepBlock)(persistentalloc(unsafe.Sizeof(gcSweepBlock{}), sys.CacheLineSize, &memstats.gc_sys))
108 atomic.StorepNoWB(blockp, unsafe.Pointer(block))
113 // We have a block. Insert the span.
114 block.spans[bottom] =
150 func (b *gcSweepBuf) block(i int) []*mspan { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/cover/testdata/
main.go 21 type block struct { type
26 var counters = make(map[block]bool)
33 b := block{
43 b := block{
  /prebuilts/go/linux-x86/src/runtime/
mgcsweepbuf.go 20 // can be accessed without locks, but adding a block or
60 // Do we need to add a block?
62 var block *gcSweepBlock
67 block = (*gcSweepBlock)(atomic.Loadp(blockp))
69 // Add a new block to the spine, potentially growing
104 // Allocate a new block and add it to the spine.
105 block = (*gcSweepBlock)(persistentalloc(unsafe.Sizeof(gcSweepBlock{}), sys.CacheLineSize, &memstats.gc_sys))
108 atomic.StorepNoWB(blockp, unsafe.Pointer(block))
113 // We have a block. Insert the span.
114 block.spans[bottom] =
150 func (b *gcSweepBuf) block(i int) []*mspan { func
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/xgate/
insns.s 7 ldw R2, #block+1024
8 ldw R3, #block
41 block: label
  /art/compiler/optimizing/
find_loops_test.cc 39 for (HBasicBlock* block : graph->GetBlocks()) {
40 ASSERT_EQ(block->GetLoopInformation(), nullptr);
50 for (HBasicBlock* block : graph->GetBlocks()) {
51 ASSERT_EQ(block->GetLoopInformation(), nullptr);
64 for (HBasicBlock* block : graph->GetBlocks()) {
65 ASSERT_EQ(block->GetLoopInformation(), nullptr);
79 for (HBasicBlock* block : graph->GetBlocks()) {
80 ASSERT_EQ(block->GetLoopInformation(), nullptr);
92 for (HBasicBlock* block : graph->GetBlocks()) {
93 ASSERT_EQ(block->GetLoopInformation(), nullptr)
103 HBasicBlock* block = graph->GetBlocks()[block_id]; local
    [all...]
live_ranges_test.cc 77 HBasicBlock* block = graph->GetBlocks()[1]; local
78 ASSERT_TRUE(block->GetLastInstruction()->IsReturn());
79 ASSERT_EQ(8u, block->GetLastInstruction()->GetLifetimePosition());
123 HBasicBlock* block = graph->GetBlocks()[3]; local
124 ASSERT_TRUE(block->GetLastInstruction()->IsReturn());
125 ASSERT_EQ(22u, block->GetLastInstruction()->GetLifetimePosition());
171 // Last use is the phi at the return block so instruction is live until
172 // the end of the then block.
179 // First range starts from the definition and ends at the if block.
182 // 14 is the end of the if block
    [all...]
pc_relative_fixups_mips.cc 37 // entry block) and relieve some pressure on the register allocator
53 // Insert the base at the start of the entry block, move it to a better
114 HBasicBlock* block = switch_insn->GetBlock(); variable
121 block->ReplaceAndRemoveInstructionWith(switch_insn, mips_switch);
126 // The generated HMipsComputeBaseMethodAddress in the entry block needed as an
  /bootable/recovery/minadbd/
fuse_adb_provider_test.cpp 47 uint32_t block = 1234U; local
49 ASSERT_EQ(0, read_block_adb(data, block, reinterpret_cast<uint8_t*>(block_data),
52 // Check that read_block_adb requested the right block.
  /device/google/contexthub/firmware/os/platform/stm32/
syscfg.c 34 struct StmSyscfg *block = (struct StmSyscfg *)SYSCFG_BASE; local
44 block->EXTICR[regNo] = (block->EXTICR[regNo] & ~mask_4b) | (bankNo << shift_4b);
  /external/android-clat/
ring.h 32 // Block size. Must be a multiple of the page size, and a power of two for efficient memory use.
35 // In order to save memory, our frames are not an exact divider of the block size. Therefore, the
36 // mmaped region will have gaps corresponding to the empty space at the end of each block.
49 int block, numblocks; member in struct:packet_ring

Completed in 676 milliseconds

1 2 3 45 6 7 8 91011>>