Home
last modified time | relevance | path

Searched refs:block_end (Results 1 - 25 of 37) sorted by relevance

12

/third_party/skia/experimental/skrive/src/reader/
H A DBinaryReader.cpp26 block_end = fBlockStack.empty() ? fStream->getLength() in validateSize() local
27 : fBlockStack.back().block_end; in validateSize()
28 return next_pos <= block_end; in validateSize()
116 const auto block_end = std::min(fStream->getPosition() + block_size, variable
118 fBlockStack.push_back({block_end});
127 SkASSERT(fStream->getPosition() <= fBlockStack.back().block_end);
129 if (fStream->getPosition() < fBlockStack.back().block_end) {
130 const auto skip = fBlockStack.back().block_end - fStream->getPosition();
141 size_t block_end; member
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_disasm_info.c91 if (group->block_end) { in dump_assembly()
92 fprintf(stderr, " END B%d", group->block_end->num); in dump_assembly()
94 &group->block_end->children) { in dump_assembly()
166 group->block_end = cfg->blocks[disasm->cur_block]; in disasm_annotate()
192 cur->block_end = NULL; in disasm_insert_error()
H A Dbrw_disasm_info.h49 struct bblock_t *block_end; member
/third_party/skia/third_party/externals/freetype/src/tools/
H A Dafblue.pl453 my $block_end = 0;
464 if ($block_end)
480 $block_end = 1 if $depth == 0;
486 last BRACE_LOOP if $block_end;
/third_party/ffmpeg/libavformat/
H A Dwvdec.c125 int64_t block_end = avio_tell(pb) + wc->header.blocksize; in wv_read_block_header() local
131 while (avio_tell(pb) < block_end && !avio_feof(pb)) { in wv_read_block_header()
201 avio_seek(pb, block_end - wc->header.blocksize, SEEK_SET); in wv_read_block_header()
/third_party/node/deps/v8/src/handles/
H A Dpersistent-handles.cc91 Address* block_end = block_start + kHandleBlockSize; in Iterate() local
94 FullObjectSlot(block_end)); in Iterate()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExceptionInfo.h79 block_iterator block_end() const { return getBlocks().end(); } in block_end() function in llvm::WebAssemblyException
81 return make_range(block_begin(), block_end()); in blocks()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_control_flow.c688 nir_block *block_begin, *block_end, *block_before, *block_after; in nir_cf_extract() local
711 split_block_cursor(end, &block_end, &block_after); in nir_cf_extract()
721 block_begin = block_end; in nir_cf_extract()
730 nir_cf_node *cf_node_end = &block_end->cf_node; in nir_cf_extract()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DRegionInfo.h613 block_iterator block_end() { return block_iterator(); } in block_end() function in llvm::RegionBase
618 const_block_iterator block_end() const { return const_block_iterator(); } in block_end() function in llvm::RegionBase
625 return block_range(block_begin(), block_end()); in blocks()
632 return const_block_range(block_begin(), block_end()); in blocks()
H A DMemorySSA.h512 block_iterator block_end() { return block_begin() + getNumOperands(); } in block_end() function in llvm::final
514 const_block_iterator block_end() const { in block_end() function in llvm::final
519 return make_range(block_begin(), block_end()); in blocks()
523 return make_range(block_begin(), block_end()); in blocks()
H A DLoopInfo.h160 block_iterator block_end() const { return getBlocks().end(); } in block_end() function in llvm::LoopBase
163 return make_range(block_begin(), block_end()); in blocks()
/third_party/mesa3d/src/compiler/spirv/
H A Dvtn_cfg.c1110 const uint32_t *block_end = block->merge ? block->merge : in vtn_emit_cf_list_structured() local
1113 block_start = vtn_foreach_instruction(b, block_start, block_end, in vtn_emit_cf_list_structured()
1116 vtn_foreach_instruction(b, block_start, block_end, handler); in vtn_emit_cf_list_structured()
1314 const uint32_t *block_end = block->branch; in vtn_emit_cf_func_unstructured() local
1317 block_start = vtn_foreach_instruction(b, block_start, block_end, in vtn_emit_cf_func_unstructured()
1319 vtn_foreach_instruction(b, block_start, block_end, handler); in vtn_emit_cf_func_unstructured()
1322 SpvOp op = *block_end & SpvOpCodeMask; in vtn_emit_cf_func_unstructured()
/third_party/toybox/toys/pending/
H A Dsh.c668 struct sh_pipeline *block_end(struct sh_pipeline *pl) in block_end() function
693 return block_end(pl->next); in add_function()
1089 end = block_end(pl->next); in run_function()
1148 pl = block_end(pl); in run_function()
/third_party/node/deps/v8/src/regexp/
H A Dregexp-compiler-tonode.cc1337 base::uc32 block_end; in RationalizeConsecutiveAtoms() local
1339 block_end = pos; in RationalizeConsecutiveAtoms()
1342 block_end = equivalents[0]; in RationalizeConsecutiveAtoms()
1344 int end = (block_end > top) ? top : block_end; in RationalizeConsecutiveAtoms()
1345 length = isolate->jsregexp_uncanonicalize()->get(block_end, '\0', in RationalizeConsecutiveAtoms()
1349 base::uc32 range_from = c - (block_end - pos); in RationalizeConsecutiveAtoms()
1350 base::uc32 range_to = c - (block_end - end); in RationalizeConsecutiveAtoms()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUAnnotateUniformValues.cpp102 Checklist.insert(L->block_begin(), L->block_end()); in isClobberedInFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
H A DGCOV.h292 BlockIterator block_end() const { return Blocks.end(); } in block_end() function in llvm::GCOVFunction
294 return make_range(block_begin(), block_end()); in blocks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp299 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); I != E; in countLoop()
716 E = currentLoop->block_end(); I != E; ++I) { in processCurrentLoop()
918 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in CloneLoop()
1260 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end()); in UnswitchNontrivialCondition()
H A DLoopFuse.cpp1303 FC1.L->block_end()); in performFusion()
1566 FC1.L->block_end()); in fuseGuardedLoops()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DLoopInfo.cpp746 for (Loop::block_iterator BI = Unloop.block_begin(), BE = Unloop.block_end();
867 E = Unloop->block_end();
H A DMustExecute.cpp63 BBE = CurLoop->block_end(); in computeLoopSafetyInfo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DLoopSimplify.cpp280 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in separateNestedLoop()
486 for (Loop::block_iterator BB = L->block_begin(), E = L->block_end(); in simplifyOneLoop()
H A DLoopUtils.cpp662 for (Loop::block_iterator LpI = L->block_begin(), LpE = L->block_end(); in deleteDeadLoop()
670 blocks.insert(L->block_begin(), L->block_end()); in deleteDeadLoop()
H A DSSAUpdater.cpp263 Preds->append(SomePhi->block_begin(), SomePhi->block_end()); in FindPredecessorBlocks()
H A DLoopUnrollAndJam.cpp56 SubLoopBlocks.insert(SubLoop->block_begin(), SubLoop->block_end()); in partitionOuterLoopBlocks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DInstruction.cpp463 return std::equal(thisPHI->block_begin(), thisPHI->block_end(), in isIdenticalToWhenDefined()

Completed in 32 milliseconds

12