| /freebsd-14.2/sys/dev/ice/ |
| H A D | ice_ddp_common.c | 1720 u16 data_end; in ice_pkg_buf_reserve_section() local 1736 data_end = LE16_TO_CPU(buf->data_end) + in ice_pkg_buf_reserve_section() 1738 buf->data_end = CPU_TO_LE16(data_end); in ice_pkg_buf_reserve_section() 1760 u16 data_end; in ice_pkg_buf_alloc_section() local 1768 data_end = LE16_TO_CPU(buf->data_end); in ice_pkg_buf_alloc_section() 1771 data_end = ICE_ALIGN(data_end, 4); in ice_pkg_buf_alloc_section() 1786 buf->data_end = CPU_TO_LE16(data_end); in ice_pkg_buf_alloc_section() 1852 u16 data_end; in ice_pkg_buf_unreserve_section() local 1868 data_end = LE16_TO_CPU(buf->data_end) - in ice_pkg_buf_unreserve_section() 1870 buf->data_end = CPU_TO_LE16(data_end); in ice_pkg_buf_unreserve_section() [all …]
|
| H A D | ice_ddp_common.h | 231 __le16 data_end; member
|
| /freebsd-14.2/sys/powerpc/booke/ |
| H A D | pmap_32.c | 650 for (va = addr; va < data_end; va += PAGE_SIZE) { in kernel_pte_alloc() 660 mmu_booke_alloc_kernel_pgtables(vm_offset_t data_end) in mmu_booke_alloc_kernel_pgtables() argument 663 ptbl_bufs = (struct ptbl_buf *)data_end; in mmu_booke_alloc_kernel_pgtables() 664 data_end += sizeof(struct ptbl_buf) * PTBL_BUFS; in mmu_booke_alloc_kernel_pgtables() 666 (uintptr_t)ptbl_bufs, data_end); in mmu_booke_alloc_kernel_pgtables() 668 data_end = round_page(data_end); in mmu_booke_alloc_kernel_pgtables() 670 kernel_ptbl_root = data_end; in mmu_booke_alloc_kernel_pgtables() 671 data_end += PDIR_NENTRIES * sizeof(pte_t*); in mmu_booke_alloc_kernel_pgtables() 676 data_end += kernel_ptbls * PTBL_PAGES * PAGE_SIZE; in mmu_booke_alloc_kernel_pgtables() 679 (uintmax_t)kernel_ptbl_root, (uintmax_t)data_end); in mmu_booke_alloc_kernel_pgtables() [all …]
|
| H A D | pmap_64.c | 518 kernel_pte_alloc(vm_offset_t data_end, vm_offset_t addr) in kernel_pte_alloc() argument 564 for (va = addr; va < data_end; va += PAGE_SIZE) { in kernel_pte_alloc() 573 mmu_booke_alloc_kernel_pgtables(vm_offset_t data_end) in mmu_booke_alloc_kernel_pgtables() argument 576 kernel_ptbl_root = (pte_t ****)data_end; in mmu_booke_alloc_kernel_pgtables() 578 data_end += round_page(PG_ROOT_NENTRIES * sizeof(pte_t ***)); in mmu_booke_alloc_kernel_pgtables() 579 data_end += howmany(kva_size, PG_ROOT_SIZE) * PAGE_SIZE; in mmu_booke_alloc_kernel_pgtables() 580 data_end += howmany(kva_size, PDIR_L1_SIZE) * PAGE_SIZE; in mmu_booke_alloc_kernel_pgtables() 581 data_end += howmany(kva_size, PDIR_SIZE) * PAGE_SIZE; in mmu_booke_alloc_kernel_pgtables() 583 return (data_end); in mmu_booke_alloc_kernel_pgtables()
|
| H A D | pmap.c | 159 static vm_size_t data_end; variable 665 data_end = data_start; in mmu_booke_bootstrap() 668 dpcpu = (void *)data_end; in mmu_booke_bootstrap() 669 data_end += DPCPU_SIZE; in mmu_booke_bootstrap() 673 data_end += msgbufsize; in mmu_booke_bootstrap() 675 (uintptr_t)msgbufp, data_end); in mmu_booke_bootstrap() 677 data_end = round_page(data_end); in mmu_booke_bootstrap() 678 data_end = round_page(mmu_booke_alloc_kernel_pgtables(data_end)); in mmu_booke_bootstrap() 687 data_end = round_page(data_end); in mmu_booke_bootstrap() 702 data_end = roundup2(data_end, 1 << 20); in mmu_booke_bootstrap() [all …]
|
| /freebsd-14.2/sys/kern/ |
| H A D | imgact_aout.c | 181 vm_offset_t text_end, data_end; in exec_aout_imgact() local 315 data_end = text_end + a_out->a_data; in exec_aout_imgact() 320 text_end, data_end, in exec_aout_imgact() 333 data_end, data_end + bss_size, in exec_aout_imgact()
|
| /freebsd-14.2/contrib/elftoolchain/elfcopy/ |
| H A D | binary.c | 147 uint64_t off, data_start, data_end, data_size; in create_elf_from_binary() local 233 data_end = data_start + sb.st_size; in create_elf_from_binary() 239 add_to_symtab(ecp, name, data_end, 0, 1, in create_elf_from_binary()
|
| /freebsd-14.2/contrib/libarchive/libarchive/test/ |
| H A D | test_write_format_zip_stream.c | 84 unsigned char *data_start, *data_end; in DEFINE_TEST() local 241 data_end = p; in DEFINE_TEST() 242 assertEqualInt(data_end - data_start, compressed_size); in DEFINE_TEST()
|
| H A D | test_write_format_zip64_stream.c | 82 unsigned char *data_start, *data_end; in DEFINE_TEST() local 265 data_end = p; in DEFINE_TEST() 266 assertEqualInt(data_end - data_start, compressed_size); in DEFINE_TEST()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | MultiOnDiskHashTable.h | 156 for (auto I = HT.data_begin(), E = HT.data_end(); I != E; ++I) { in condense() 278 for (auto I = HT.data_begin(), E = HT.data_end(); I != E; ++I) { in findAll()
|
| H A D | GlobalModuleIndex.cpp | 692 DEnd = Table->data_end(); in loadModuleFile()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | OnDiskHashTable.h | 589 data_iterator data_end() { return data_iterator(); } in data_end() function 592 return make_range(data_begin(), data_end()); in data()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | InstrProfReader.h | 585 return RecordIterator == HashTable->data_end(); in atEnd()
|
| /freebsd-14.2/sys/dev/mpt/ |
| H A D | mpt.c | 2419 uint32_t *data_end; in mpt_diag_outsl() local 2421 data_end = data + (roundup2(len, sizeof(uint32_t)) / 4); in mpt_diag_outsl() 2426 while (data != data_end) { in mpt_diag_outsl()
|
| /freebsd-14.2/sys/dev/bce/ |
| H A D | if_bce.c | 2746 u32 page_start, page_end, data_start, data_end; in bce_nvram_write() local 2759 data_end = (page_end > offset32 + len32) ? in bce_nvram_write() 2819 for (addr = data_start; addr < data_end; addr += 4, i++) { in bce_nvram_write() 2822 (addr == data_end - 4))) { in bce_nvram_write() 2838 for (addr = data_end; addr < page_end; in bce_nvram_write() 2861 written += data_end - data_start; in bce_nvram_write()
|
| /freebsd-14.2/sys/contrib/openzfs/module/zfs/ |
| H A D | dnode.c | 515 char *data_end = ((char *)dn->dn_bonus->db.db_data) + newsize; in dnode_setbonuslen() local 516 memset(data_end, 0, diff); in dnode_setbonuslen()
|