HomeSort by relevance Sort by last modified time
    Searched refs:block (Results 251 - 275 of 4734) sorted by null

<<11121314151617181920>>

  /external/stressapptest/src/
disk_blocks.cc 81 void DiskBlockTable::InsertOnStructure(BlockData *block) {
82 int64 address = block->address();
84 sd->block = block;
86 // Creating new block ...
99 int DiskBlockTable::RemoveBlock(BlockData *block) {
102 int64 address = block->address();
112 // Everything is fine, removing block from table.
119 block->DecreaseReferenceCounter();
120 if (block->GetReferenceCounter() == 0
197 BlockData *block = new BlockData(); local
    [all...]
  /external/webrtc/webrtc/base/objc/
RTCDispatcher.m 29 block:(dispatch_block_t)block {
31 dispatch_async(queue, block);
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
receiver_report.cc 32 // | report block(s) |
51 for (ReportBlock& block : report_blocks_) {
52 block.Parse(next_report_block, ReportBlock::kLength);
72 for (const ReportBlock& block : report_blocks_) {
73 block.Create(packet + *index);
79 bool ReceiverReport::WithReportBlock(const ReportBlock& block) {
84 report_blocks_.push_back(block);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/types/
scope.go 11 var blockgen int32 = 1 // max block number
12 var Block int32 // current block number
15 // restored once the block scope ends.
19 block int32
24 // Popdcl can restore their declarations when a block scope ends.
28 // it can be shadowed by a new declaration within a nested block scope.
33 block: s.Block,
38 // Popdcl pops the innermost block scope and restores all symbol declaration
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/types/
scope.go 11 var blockgen int32 = 1 // max block number
12 var Block int32 // current block number
15 // restored once the block scope ends.
19 block int32
24 // Popdcl can restore their declarations when a block scope ends.
28 // it can be shadowed by a new declaration within a nested block scope.
33 block: s.Block,
38 // Popdcl pops the innermost block scope and restores all symbol declaration
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/www/
menu.css 22 display:block;
26 display:block;
33 display:block;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/www/
menu.css 22 display:block;
26 display:block;
33 display:block;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
stm32l4xx-cannot-fix-it-block.d 1 #source: stm32l4xx-cannot-fix-it-block.s
5 #name: STM32L4XX erratum : LDM cannot be patched when not last in IT block
6 #warning: .*multiple load detected in non-last IT block instruction.*
8 # Test the `LDM*' instructions when non-last in IT block
  /external/syslinux/core/fs/
cache.c 15 * the block size, which is 512 byte for FAT fs of the current
16 * implementation since the block(cluster) size in FAT is a bit big.
32 /* We need one struct cache for the headnode plus one for each block */
43 head->block = -1;
51 cur->block = -1;
62 * Lock a block permanently in the cache by removing it
74 * Check for a particular BLOCK in the block cache,
76 * otherwise pick a victim block and update the LRU link.
78 struct cache *_get_cache_block(struct device *dev, block_t block)
141 block_t block; local
    [all...]
  /test/vts/utils/python/coverage/
arc_summary_test.py 53 # Create resolved arcs entering the middle block
55 block = block_summary.BlockSummary(ident, 0)
56 arc = arc_summary.ArcSummary(block, middle, 0)
59 block.exit_arcs.append(arc)
62 # Create resolved arcs exiting the middle block
64 block = block_summary.BlockSummary(ident, 0)
65 arc = arc_summary.ArcSummary(middle, block, 0)
68 block.entry_arcs.append(arc)
81 """Verifies that arcs can be resolved from the destination block.
90 # Create resolved arcs exiting the middle block
    [all...]
  /external/freetype/src/tools/docmaker/
formatter.py 47 for block in section.blocks.values():
48 self.add_identifier( block.name, block )
51 for markup in block.markups:
54 self.add_identifier( field.name, block )
64 def add_identifier( self, name, block ):
69 + "in " + block.location() + ", "
74 self.identifiers[name] = block
161 def block_enter( self, block ):
164 def markup_enter( self, markup, block = None )
    [all...]
  /external/eigen/test/
corners.cpp 28 COMPARE_CORNER(topLeftCorner(r,c), block(0,0,r,c));
29 COMPARE_CORNER(topRightCorner(r,c), block(0,cols-c,r,c));
30 COMPARE_CORNER(bottomLeftCorner(r,c), block(rows-r,0,r,c));
31 COMPARE_CORNER(bottomRightCorner(r,c), block(rows-r,cols-c,r,c));
38 COMPARE_CORNER(topRows(r), block(0,0,r,cols));
39 COMPARE_CORNER(middleRows(sr,nr), block(sr,0,nr,cols));
40 COMPARE_CORNER(bottomRows(r), block(rows-r,0,r,cols));
41 COMPARE_CORNER(leftCols(c), block(0,0,rows,c));
42 COMPARE_CORNER(middleCols(sc,nc), block(0,sc,rows,nc));
43 COMPARE_CORNER(rightCols(c), block(0,cols-c,rows,c))
    [all...]
  /bionic/linker/
linker_block_allocator.cpp 80 void LinkerBlockAllocator::free(void* block) {
81 if (block == nullptr) {
85 LinkerBlockAllocatorPage* page = find_page(block);
91 ssize_t offset = reinterpret_cast<uint8_t*>(block) - page->bytes;
97 memset(block, 0, block_size_);
99 FreeBlockInfo* block_info = reinterpret_cast<FreeBlockInfo*>(block);
138 LinkerBlockAllocatorPage* LinkerBlockAllocator::find_page(void* block) {
139 if (block == nullptr) {
146 if (block >= (page_ptr + sizeof(page->next)) && block < (page_ptr + PAGE_SIZE))
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_worklist.c 53 nir_foreach_block(block, impl) {
54 nir_block_worklist_push_tail(w, block);
59 nir_block_worklist_push_head(nir_block_worklist *w, nir_block *block)
61 /* Pushing a block we already have is a no-op */
62 if (BITSET_TEST(w->blocks_present, block->index))
74 w->blocks[w->start] = block;
75 BITSET_SET(w->blocks_present, block->index);
101 nir_block_worklist_push_tail(nir_block_worklist *w, nir_block *block)
103 /* Pushing a block we already have is a no-op */
104 if (BITSET_TEST(w->blocks_present, block->index)
    [all...]
  /external/f2fs-tools/fsck/
node.c 101 * get_node_path - Get the index path of pgoff_t block
102 * @offset: offset in the current index node block.
103 * @noffset: NO. of the index block within a file.
108 static int get_node_path(struct f2fs_node *node, long block,
120 if (block < direct_index) {
121 offset[n] = block;
125 block -= direct_index;
126 if (block < direct_blks) {
129 offset[n] = block;
133 block -= direct_blks
    [all...]
  /external/v8/src/compiler/
jump-threading.cc 48 result[from.ToInt()] = to_to; // forward the block.
66 for (auto const block : code->instruction_blocks()) {
67 RpoNumber current = block->rpo_number();
72 InstructionBlock* block = code->InstructionBlockAt(state.stack.top()); local
73 // Process the instructions in a block up to a non-empty instruction.
75 block->rpo_number().ToInt());
77 RpoNumber fw = block->rpo_number();
78 for (int i = block->code_start(); i < block->code_end(); ++i) {
95 // if this block deconstructs the frame, we can't forward it
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/des/
block.go 35 // Encrypt one block from src into dst, using the subkeys.
40 // Decrypt one block from src into dst, using the subkeys.
80 // general purpose function to perform DES block permutations
81 func permuteBlock(src uint64, permutation []uint8) (block uint64) {
84 block |= bit << uint((len(permutation)-1)-position)
113 func permuteInitialBlock(block uint64) uint64 {
114 // block = b7 b6 b5 b4 b3 b2 b1 b0 (8 bytes)
115 b1 := block >> 48
116 b2 := block << 48
117 block ^= b1 ^ b2 ^ b1<<48 ^ b2>>4
    [all...]
  /prebuilts/go/linux-x86/src/crypto/des/
block.go 35 // Encrypt one block from src into dst, using the subkeys.
40 // Decrypt one block from src into dst, using the subkeys.
80 // general purpose function to perform DES block permutations
81 func permuteBlock(src uint64, permutation []uint8) (block uint64) {
84 block |= bit << uint((len(permutation)-1)-position)
113 func permuteInitialBlock(block uint64) uint64 {
114 // block = b7 b6 b5 b4 b3 b2 b1 b0 (8 bytes)
115 b1 := block >> 48
116 b2 := block << 48
117 block ^= b1 ^ b2 ^ b1<<48 ^ b2>>4
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_sched.c 55 struct ir3_block *block; /* the current block */ member in struct:ir3_sched_ctx
82 debug_assert(ctx->block == instr->block);
89 ir3_NOP(ctx->block);
107 list_addtail(&instr->node, &instr->block->instr_list);
143 struct list_head *instr_list = &ctx->block->instr_list;
168 if (src->block != assigner->block)
193 if (src->block != instr->block
    [all...]
  /art/compiler/optimizing/
select_generator.cc 33 // Returns true if `block` has only one predecessor, ends with a Goto
36 static bool IsSimpleBlock(HBasicBlock* block) {
37 if (block->GetPredecessors().size() != 1u) {
40 DCHECK(block->GetPhis().IsEmpty());
43 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) {
67 // Returns nullptr if `block` has either no phis or there is more than one phi
69 static HPhi* GetSingleChangedPhi(HBasicBlock* block, size_t index1, size_t index2) {
73 for (HInstructionIterator it(block->GetPhis()); !it.Done(); it.Advance()) {
90 // the selection pattern empties a branch block of another occurrence.
92 for (HBasicBlock* block : graph_->GetPostOrder())
    [all...]
  /external/e2fsprogs/lib/ext2fs/
io_manager.c 72 errcode_t io_channel_read_blk64(io_channel channel, unsigned long long block,
78 return (channel->manager->read_blk64)(channel, block,
81 if ((block >> 32) != 0)
84 return (channel->manager->read_blk)(channel, (unsigned long) block,
88 errcode_t io_channel_write_blk64(io_channel channel, unsigned long long block,
94 return (channel->manager->write_blk64)(channel, block,
97 if ((block >> 32) != 0)
100 return (channel->manager->write_blk)(channel, (unsigned long) block,
104 errcode_t io_channel_discard(io_channel channel, unsigned long long block,
110 return (channel->manager->discard)(channel, block, count)
    [all...]
  /frameworks/av/media/libnbaio/
NBAIO.cpp 64 ssize_t NBAIO_Sink::writeVia(writeVia_t via, size_t total, void *user, size_t block)
73 if (block == 0 || block > maxBlock) {
74 block = maxBlock;
76 double buffer[((frameSize * block) + sizeof(double) - 1) / sizeof(double)];
80 if (count > block) {
81 count = block;
100 ssize_t NBAIO_Source::readVia(readVia_t via, size_t total, void *user, size_t block)
109 if (block == 0 || block > maxBlock)
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug273.go 17 type block [1<<19]byte type
19 var g1 []block
32 g1 = make([]block, minus1)
36 g1 = make([]block, big)
40 g1 = make([]block, 10, minus1)
44 g1 = make([]block, 10, five)
48 g1 = make([]block, 10, big)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug273.go 17 type block [1<<19]byte type
19 var g1 []block
32 g1 = make([]block, minus1)
36 g1 = make([]block, big)
40 g1 = make([]block, 10, minus1)
44 g1 = make([]block, 10, five)
48 g1 = make([]block, 10, big)
  /cts/tests/tests/os/src/android/os/cts/
ConditionVariableTest.java 39 assertFalse(mConditionVariable.block(BLOCK_TIME));
40 assertFalse(new ConditionVariable(false).block(BLOCK_TIME));
41 assertTrue(new ConditionVariable(true).block(BLOCK_TIME));
45 // test open then block(long)
48 assertTrue(mConditionVariable.block(BLOCK_TIME));
51 // test close then block(long)
54 assertFalse(mConditionVariable.block(BLOCK_TIME));
57 // test block then open
72 mConditionVariable.block();
91 assertTrue(mConditionVariable.block(BLOCK_TIME))
    [all...]

Completed in 605 milliseconds

<<11121314151617181920>>