/freebsd/lib/libvgl/ |
H A D | bitmap.c | 47 int bwidth, i, pos, last, planepos, start_offset, end_offset, offset; in WriteVerticalLine() local 57 end_offset = (x + width) & 0x07; in WriteVerticalLine() 59 if (end_offset) in WriteVerticalLine() 80 if (end_offset) { in WriteVerticalLine() 81 word <<= (8 - end_offset); in WriteVerticalLine() 96 if (end_offset) in WriteVerticalLine() 97 VGLPlane[i][planepos] |= dst->Bitmap[pos+planepos] & mask[end_offset]; in WriteVerticalLine() 102 if (end_offset) { in WriteVerticalLine() 104 VGLPlane[i][planepos] |= dst->Bitmap[offset] & mask[end_offset]; in WriteVerticalLine()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | SourceManager.cpp | 571 size_t end_offset = GetLineOffset(line + 1); in GetLineLength() local 572 if (end_offset == UINT32_MAX) in GetLineLength() 573 end_offset = m_data_sp->GetByteSize(); in GetLineLength() 575 if (end_offset > start_offset) { in GetLineLength() 576 uint32_t length = end_offset - start_offset; in GetLineLength() 764 size_t end_offset = GetLineOffset(line_no + 1); in GetLine() local 765 if (end_offset == UINT32_MAX) { in GetLine() 766 end_offset = m_data_sp->GetByteSize(); in GetLine() 769 end_offset - start_offset); in GetLine()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugArangeSet.cpp | 136 uint64_t end_offset = Offset + full_length; in extract() local 137 while (*offset_ptr < end_offset) { in extract() 145 if (*offset_ptr == end_offset) in extract()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | DWARFCallFrameInfo.cpp | 254 dw_offset_t cie_id, end_offset; in ParseCIE() local 259 end_offset = cie_offset + length + 12; in ParseCIE() 262 end_offset = cie_offset + length + 4; in ParseCIE() 382 if (end_offset > offset) { in ParseCIE() 384 cie_sp->inst_length = end_offset - offset; in ParseCIE() 386 while (offset < end_offset) { in ParseCIE() 571 const dw_offset_t end_offset = current_entry + length + (is_64bit ? 12 : 4); in FDEToUnwindPlan() local 637 while (m_cfi_data.ValidOffset(offset) && offset < end_offset) { in FDEToUnwindPlan()
|
/freebsd/sys/ddb/ |
H A D | db_textdump.c | 333 off_t end_offset, tarhdr_offset; in textdump_dump_msgbuf() local 377 textdump_saveoff(&end_offset); in textdump_dump_msgbuf() 382 textdump_restoreoff(end_offset); in textdump_dump_msgbuf()
|
/freebsd/contrib/libarchive/tar/ |
H A D | write.c | 244 int64_t end_offset; in tar_mode_r() local 286 end_offset = archive_read_header_position(a); in tar_mode_r() 320 if (lseek(bsdtar->fd, end_offset, SEEK_SET) < 0) in tar_mode_r() 335 int64_t end_offset; in tar_mode_u() local 385 end_offset = archive_read_header_position(a); in tar_mode_u() 397 if (lseek(bsdtar->fd, end_offset, SEEK_SET) < 0) in tar_mode_u()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
H A D | ObjectFileBreakpad.cpp | 139 offset_t end_offset = end_ptr - m_data.GetDataStart(); in CreateSections() local 144 end_offset - section_start, /*log2align*/ 0, /*flags*/ 0); in CreateSections()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | UdtRecordCompleter.cpp | 475 uint64_t end_offset = offset + fields.back()->bit_size; in ConstructRecord() local 478 end_offset_map[end_offset].push_back(parent); in ConstructRecord() 482 end_offset_map[end_offset].push_back(parent->fields.back().get()); in ConstructRecord()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_read_support_format_rar.c | 223 int64_t end_offset; member 1228 client_offset += rar->dbo[i].start_offset - rar->dbo[i-1].end_offset; in archive_read_format_rar_seek_data() 1247 rar->dbo[rar->cursor].end_offset; in archive_read_format_rar_seek_data() 1264 else if (client_offset > rar->dbo[rar->cursor].end_offset && in archive_read_format_rar_seek_data() 1270 client_offset > rar->dbo[rar->cursor].end_offset) in archive_read_format_rar_seek_data() 1273 rar->dbo[rar->cursor-1].end_offset; in archive_read_format_rar_seek_data() 1277 ret = __archive_read_seek(a, rar->dbo[rar->cursor].end_offset, in archive_read_format_rar_seek_data() 1294 rar->dbo[rar->cursor-1].end_offset; in archive_read_format_rar_seek_data() 1304 rar->bytes_remaining = rar->dbo[rar->cursor].end_offset - ret; in archive_read_format_rar_seek_data() 1309 ret -= rar->dbo[i+1].start_offset - rar->dbo[i].end_offset; in archive_read_format_rar_seek_data() [all …]
|
/freebsd/sys/dev/drm2/ |
H A D | drm_edid.c | 1854 int start_offset, end_offset; in drm_detect_hdmi_monitor() local 1860 if (cea_db_offsets(edid_ext, &start_offset, &end_offset)) in drm_detect_hdmi_monitor() 1867 for_each_cea_db(edid_ext, i, start_offset, end_offset) { in drm_detect_hdmi_monitor() 1891 int start_offset, end_offset; in drm_detect_monitor_audio() local 1904 if (cea_db_offsets(edid_ext, &start_offset, &end_offset)) in drm_detect_monitor_audio() 1907 for_each_cea_db(edid_ext, i, start_offset, end_offset) { in drm_detect_monitor_audio()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | DataExtractor.cpp | 911 offset_t end_offset; in PutToLog() local 914 for (offset = start_offset, end_offset = offset + length, count = 0; in PutToLog() 915 ValidOffset(offset) && offset < end_offset; ++count) { in PutToLog()
|
/freebsd/sys/contrib/dev/athk/ath11k/ |
H A D | dp.c | 523 u32 end_offset; in ath11k_dp_scatter_idle_link_desc_setup() local 573 end_offset = (scatter_buf - slist[scatter_idx].vaddr) * in ath11k_dp_scatter_idle_link_desc_setup() 576 n_link_desc, end_offset); in ath11k_dp_scatter_idle_link_desc_setup()
|
H A D | hal.c | 859 u32 end_offset) in ath11k_hal_setup_link_idle_list() argument 926 (end_offset >> 2))); in ath11k_hal_setup_link_idle_list()
|
H A D | hal.h | 926 u32 end_offset);
|
/freebsd/sys/contrib/dev/athk/ath12k/ |
H A D | dp.c | 612 u32 end_offset, cookie; in ath12k_dp_scatter_idle_link_desc_setup() local 663 end_offset = (scatter_buf - slist[scatter_idx].vaddr) * in ath12k_dp_scatter_idle_link_desc_setup() 666 n_link_desc, end_offset); in ath12k_dp_scatter_idle_link_desc_setup()
|
H A D | hal.h | 1095 u32 end_offset);
|
H A D | hal.c | 1783 u32 end_offset) in ath12k_hal_setup_link_idle_list() argument 1853 u32_encode_bits((end_offset >> 2), in ath12k_hal_setup_link_idle_list()
|
/freebsd/sys/contrib/vchiq/interface/vchiq_arm/ |
H A D | vchiq_arm.c | 1500 int end_offset; in dump_phys_mem() local 1514 end_offset = (int)(long)end_virt_addr & (PAGE_SIZE - 1); in dump_phys_mem() 1540 while (offset < end_offset) { in dump_phys_mem()
|
/freebsd/sys/contrib/ck/src/ |
H A D | ck_rhs.c | 842 ck_rhs_add_wanted(struct ck_rhs *hs, long end_offset, long old_slot, in ck_rhs_add_wanted() argument 855 while (offset != end_offset) { in ck_rhs_add_wanted()
|
/freebsd/contrib/libxo/libxo/ |
H A D | libxo.c | 3754 ssize_t end_offset = xbp->xb_curp - xbp->xb_bufp; in xo_format_humanize() local 3755 if (end_offset == savep->xhs_offset) /* Huh? Nothing to render */ in xo_format_humanize() 4032 ssize_t end_offset = xbp->xb_curp - xbp->xb_bufp; in xo_buf_append_div() local 4033 ssize_t olen = end_offset - save.xhs_offset; in xo_buf_append_div() 4651 ssize_t end_offset = xop->xo_data.xb_curp - xop->xo_data.xb_bufp; in xo_set_gettext_domain() local 4652 len = end_offset - start_offset; in xo_set_gettext_domain()
|
/freebsd/sys/dev/xen/netback/ |
H A D | netback_unit_tests.c | 1728 int end_offset = xnb_unit_pvt.gnttab[i].len + in xnb_rxpkt2gnttab_2req() local 1730 XNB_ASSERT(end_offset <= PAGE_SIZE); in xnb_rxpkt2gnttab_2req()
|
/freebsd/sys/contrib/openzfs/cmd/zdb/ |
H A D | zdb.c | 385 uint64_t end_offset = offset + size; in verify_livelist_allocs() local 398 DVA_GET_OFFSET(&found->svb_dva) < end_offset; in verify_livelist_allocs()
|