HomeSort by relevance Sort by last modified time
    Searched refs:end_block (Results 1 - 25 of 44) sorted by null

1 2

  /art/compiler/optimizing/
code_sinking.h 41 // Try to move code only used by `end_block` and all its post-dominated / dominated
43 void SinkCodeToUncommonBranch(HBasicBlock* end_block);
code_sinking.cc 255 void CodeSinking::SinkCodeToUncommonBranch(HBasicBlock* end_block) {
270 // Step (1): Visit post order to get a subset of blocks post dominated by `end_block`.
277 if (block == end_block) {
303 CommonDominator finder(end_block);
  /external/mesa3d/src/compiler/nir/
nir_gs_count_vertices.c 66 set_foreach(function->impl->end_block->predecessors, entry) {
nir_lower_gs_intrinsics.c 163 append_set_vertex_count(nir_block *end_block, struct state *state)
172 set_foreach(end_block->predecessors, entry) {
210 append_set_vertex_count(impl->end_block, &state);
nir_lower_io_to_temporaries.c 105 set_foreach(impl->end_block->predecessors, block_entry) {
nir_sweep.c 132 sweep_block(nir, impl->end_block);
nir_lower_clip.c 163 * should be only a single predecessor block to end_block, which
167 * to jumps to end_block predecessor in a previous pass. Not sure
171 assert(impl->end_block->predecessors->entries == 1);
nir_phi_builder.c 143 if (next == pb->impl->end_block)
nir_validate.c 714 validate_assert(state, block->successors[0] == state->impl->end_block);
742 validate_assert(state, block->successors[0] == state->impl->end_block);
    [all...]
nir.c 291 nir_block *end_block = nir_block_create(shader); local
293 end_block->cf_node.parent = &impl->cf_node;
294 impl->end_block = end_block;
298 start_block->successors[0] = end_block;
299 _mesa_set_add(end_block->predecessors, start_block);
    [all...]
nir_control_flow.c 313 link_blocks(block, impl->end_block, NULL);
476 link_blocks(block, impl->end_block, NULL);
  /system/update_engine/scripts/update_payload/
common.py 150 end_block = ex.start_block + ex.num_blocks
152 return '%d->%d * %d' % (ex.start_block, end_block, block_size)
154 return '%d->%d' % (ex.start_block, end_block)
checker.py 679 end_block = start_block + num_blocks
687 if usable_size and end_block * self.block_size > usable_size:
693 for i in xrange(start_block, end_block):
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_nir_tcs_workarounds.c 138 const unsigned num_end_preds = impl->end_block->predecessors->entries;
143 set_foreach(impl->end_block->predecessors, entry) {
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
swigmacros.swg 14 %end_block End a execution block
95 #ifndef %end_block
96 # define %end_block } while(0)
98 #define %block(Block...) %begin_block Block; %end_block
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
perltypemaps.swg 69 %end_block %enddef
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
debug.h 56 void (* end_block) (unsigned int line, unsigned int n); member in struct:gcc_debug_hooks
  /external/mesa3d/src/compiler/nir/tests/
control_flow_tests.cpp 81 nir_block *block_3 = b.impl->end_block;
  /system/update_engine/payload_generator/
squashfs_filesystem.cc 51 uint64_t end_block = (start_bytes + size_bytes + block_size - 1) / block_size; local
52 return ExtentForRange(start_block, end_block - start_block);
  /external/webp/src/dsp/
enc_sse41.c 27 int start_block, int end_block,
32 for (j = start_block; j < end_block; ++j) {
dsp.h 259 int start_block, int end_block,
  /prebuilts/misc/common/swig/include/2.0.11/r/
r.swg 27 %end_block %enddef
  /toolchain/binutils/binutils-2.27/binutils/
debug.h 412 bfd_boolean (*end_block) (void *, bfd_vma); member in struct:debug_write_fns
  /external/e2fsprogs/lib/ext2fs/
undo_io.c 330 unsigned long long end_block; local
364 end_block = (offset + size - 1) / data->tdb_data_size;
366 while (block_num <= end_block) {
  /external/f2fs-tools/fsck/
dir.c 113 unsigned int bidx, end_block; local
129 end_block = bidx + nblock;
135 for (; bidx < end_block; bidx++) {

Completed in 657 milliseconds

1 2