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

1 2

  /art/compiler/optimizing/
code_sinking.h 39 // Try to move code only used by `end_block` and all its post-dominated / dominated
41 void SinkCodeToUncommonBranch(HBasicBlock* end_block);
code_sinking.cc 239 void CodeSinking::SinkCodeToUncommonBranch(HBasicBlock* end_block) {
252 // Step (1): Visit post order to get a subset of blocks post dominated by `end_block`.
259 if (block == end_block) {
285 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 148 end_block = ex.start_block + ex.num_blocks
150 return '%d->%d * %d' % (ex.start_block, end_block, block_size)
152 return '%d->%d' % (ex.start_block, end_block)
checker.py 678 end_block = start_block + num_blocks
686 if usable_size and end_block * self.block_size > usable_size:
692 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
  /system/extras/ext4_utils/
contents.c 73 u32 end_block = (*offset + rec_len - 1) / info.block_size; local
74 if (start_block != end_block) {
79 prev->rec_len += end_block * info.block_size - *offset;
80 *offset = end_block * info.block_size;
make_ext4fs.c 628 int start_block, end_block; local
658 end_block = start_block;
660 end_block = parse_num(range);
664 if (block_group != get_block_group(end_block)) {
674 max_bg_bound <= end_block - bg_first_block) {
677 block_file_size = end_block - start_block + 1;
  /external/mesa3d/src/compiler/nir/tests/
control_flow_tests.cpp 81 nir_block *block_3 = b.impl->end_block;
  /external/webp/src/dsp/
enc_sse41.c 27 int start_block, int end_block,
32 for (j = start_block; j < end_block; ++j) {
  /prebuilts/misc/common/swig/include/2.0.11/r/
r.swg 27 %end_block %enddef
  /toolchain/binutils/binutils-2.25/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 104 unsigned int bidx, end_block; local
120 end_block = bidx + nblock;
125 for (; bidx < end_block; bidx++) {

Completed in 1367 milliseconds

1 2