Home
last modified time | relevance | path

Searched refs:block_end (Results 1 – 21 of 21) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
HDspace_map.c109 uint64_t *block_end = block_start + in space_map_iterate() local
117 block_cursor < block_end && error == 0; block_cursor++) { in space_map_iterate()
160 VERIFY3P(block_cursor, <=, block_end); in space_map_iterate()
569 uint64_t *block_end = block_base + (sm->sm_blksz / sizeof (uint64_t)); in space_map_write_seg() local
573 ASSERT3P(block_cursor, <=, block_end); in space_map_write_seg()
585 ASSERT3P(block_cursor, <=, block_end); in space_map_write_seg()
591 if (block_cursor == block_end) { in space_map_write_seg()
607 block_end = block_base + in space_map_write_seg()
617 if (next_entry == block_end && words > 1) { in space_map_write_seg()
625 ASSERT3P(block_cursor, ==, block_end); in space_map_write_seg()
[all …]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
HDWebAssemblyExceptionInfo.h81 block_iterator block_end() const { return getBlocks().end(); } in block_end() function
83 return make_range(block_begin(), block_end()); in blocks()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
HDRegionInfo.h611 block_iterator block_end() { return block_iterator(); }
616 const_block_iterator block_end() const { return const_block_iterator(); }
623 return block_range(block_begin(), block_end());
630 return const_block_range(block_begin(), block_end());
HDMemorySSA.h509 block_iterator block_end() { return block_begin() + getNumOperands(); }
511 const_block_iterator block_end() const {
516 return make_range(block_begin(), block_end());
520 return make_range(block_begin(), block_end());
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDGenericCycleInfo.h179 const_block_iterator block_end() const { in block_end() function
184 return llvm::make_range(block_begin(), block_end()); in blocks()
HDGenericCycleImpl.h195 NewParent->Blocks.insert(Child->block_begin(), Child->block_end()); in moveTopLevelCycleToNewParent()
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_fs/
HDindex.c2659 apr_off_t block_end) in append_p2l_entries() argument
2677 if (entry->offset >= block_end) in append_p2l_entries()
2729 apr_off_t block_end, in p2l_index_lookup() argument
2741 block.end = block_end; in p2l_index_lookup()
2744 SVN_ERR_ASSERT(block_start < block_end); in p2l_index_lookup()
2815 append_p2l_entries(entries, page_entries, block_start, block_end); in p2l_index_lookup()
2854 if (entry_end < block_end) in p2l_index_lookup()
2859 entry->size = block_end - entry->offset; in p2l_index_lookup()
2866 entry->size = block_end - entry_end; in p2l_index_lookup()
2888 apr_off_t block_end = block_start + block_size; in svn_fs_fs__p2l_index_lookup() local
[all …]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_x/
HDindex.c2880 apr_off_t block_end, in append_p2l_entries() argument
2900 if (entry->offset >= block_end) in append_p2l_entries()
2967 apr_off_t block_end, in p2l_index_lookup() argument
2979 block.end = block_end; in p2l_index_lookup()
2982 SVN_ERR_ASSERT(block_start < block_end); in p2l_index_lookup()
3048 append_p2l_entries(entries, page_entries, block_start, block_end, FALSE); in p2l_index_lookup()
3082 if (entry_end < block_end) in p2l_index_lookup()
3087 entry->size = block_end - entry->offset; in p2l_index_lookup()
3094 entry->size = block_end - entry_end; in p2l_index_lookup()
3116 apr_off_t block_end = block_start + block_size; in svn_fs_x__p2l_index_lookup() local
[all …]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDGenericLoopInfo.h179 block_iterator block_end() const { return getBlocks().end(); } in block_end() function
182 return make_range(block_begin(), block_end()); in blocks()
HDGenericLoopInfoImpl.h375 for (block_iterator BI = (*I)->block_begin(), BE = (*I)->block_end(); in verifyLoop()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
HDLoopUnrollAndJam.cpp104 JamLoopBlocks.insert(JamLoop.block_begin(), JamLoop.block_end()); in partitionOuterLoopBlocks()
124 SubLoopBlocks.insert(SubLoop->block_begin(), SubLoop->block_end()); in partitionOuterLoopBlocks()
HDLoopUtils.cpp598 L->block_end()); in deleteDeadLoop()
703 blocks.insert(L->block_begin(), L->block_end()); in deleteDeadLoop()
HDLocal.cpp1422 hash_combine_range(PN->block_begin(), PN->block_end()))); in EliminateDuplicatePHINodesSetBasedImpl()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SPIRV/Analysis/
HDSPIRVConvergenceRegionAnalysis.cpp283 L->block_end()); in analyze()
/freebsd-13-stable/contrib/libarchive/libarchive/
HDarchive_write_disk_posix.c999 int64_t block_end; in write_data_block() local
1013 block_end in write_data_block()
1019 if (a->offset + bytes_to_write > block_end) in write_data_block()
1020 bytes_to_write = block_end - a->offset; in write_data_block()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
HDInstruction.cpp878 return std::equal(thisPHI->block_begin(), thisPHI->block_end(), in isIdenticalToWhenDefined()
HDInstructions.cpp128 copyIncomingBlocks(make_range(PN.block_begin(), PN.block_end())); in PHINode()
177 const_cast<block_iterator>(block_end()), [&](BasicBlock *&BB) { in removeIncomingValueIf()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
HDSymbolFileNativePDB.cpp1985 uint32_t block_end = getScopeEndOffset(variable_cvs); in ParseVariablesForBlock() local
1987 iter = syms.at(block_end); in ParseVariablesForBlock()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDInstructions.h2559 const_block_iterator block_end() const {
2564 return make_range(block_begin(), block_end());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
HDMachineBlockPlacement.cpp2628 LoopBlockSet.insert(L.block_begin(), L.block_end()); in collectLoopBlockSet()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
HDPPCISelLowering.cpp16692 for (auto I = ML->block_begin(), IE = ML->block_end(); I != IE; ++I) in getPrefLoopAlignment()