/freebsd/sys/dev/nvdimm/ |
H A D | nvdimm_nfit.c | 96 int *countp) in acpi_nfit_get_dimm_ids() argument 105 *countp = 0; in acpi_nfit_get_dimm_ids() 131 *countp = i + 1; in acpi_nfit_get_dimm_ids() 152 ACPI_NFIT_SYSTEM_ADDRESS ***listp, int *countp) in acpi_nfit_get_spa_ranges() argument 156 (void ***)listp, countp); in acpi_nfit_get_spa_ranges() 161 uint16_t spa_range_index, ACPI_NFIT_MEMORY_MAP ***listp, int *countp) in acpi_nfit_get_region_mappings_by_spa_range() argument 166 spa_range_index, (void ***)listp, countp); in acpi_nfit_get_region_mappings_by_spa_range() 181 uint64_t ***listp, int *countp) in acpi_nfit_get_flush_addrs() argument 192 *countp = 0; in acpi_nfit_get_flush_addrs() 195 *countp = subtable->HintCount; in acpi_nfit_get_flush_addrs() [all …]
|
H A D | nvdimm_var.h | 154 int *countp); 158 ACPI_NFIT_SYSTEM_ADDRESS ***listp, int *countp); 160 uint16_t spa_range_index, ACPI_NFIT_MEMORY_MAP ***listp, int *countp); 164 uint64_t ***listp, int *countp); 166 nfit_handle_t dimm, ACPI_NFIT_MEMORY_MAP ***listp, int *countp);
|
/freebsd/lib/libkldelf/ |
H A D | kldelf.h | 49 #define EF_LOOKUP_SET(ef, name, startp, stopp, countp) \ argument 50 (ef)->ef_ops->lookup_set((ef)->ef_ef, name, startp, stopp, countp) 71 GElf_Addr *stopp, long *countp); 279 GElf_Addr **buf, long *countp);
|
H A D | ef_obj.c | 102 GElf_Addr *startp, GElf_Addr *stopp, long *countp); 154 GElf_Addr *stopp, long *countp) in ef_obj_lookup_set() argument 163 *countp = (*stopp - *startp) / in ef_obj_lookup_set()
|
H A D | ef.c | 82 GElf_Addr *startp, GElf_Addr *stopp, long *countp); 176 GElf_Addr *stopp, long *countp) in ef_lookup_set() argument 202 *countp = (*stopp - *startp) / elf_pointer_size(ef->ef_efile); in ef_lookup_set()
|
H A D | elf.c | 548 long *countp) in elf_read_linker_set() argument 579 *countp = count; in elf_read_linker_set()
|
/freebsd/sys/dev/quicc/ |
H A D | quicc_core.c | 285 rman_res_t *startp, rman_res_t *countp) in quicc_bus_get_resource() argument 300 if (countp != NULL) in quicc_bus_get_resource() 301 *countp = rle->count; in quicc_bus_get_resource()
|
/freebsd/sys/powerpc/include/ |
H A D | intr_machdep.h | 47 void intrcnt_add(const char *name, u_long **countp);
|
/freebsd/sys/x86/include/ |
H A D | intr_machdep.h | 156 void intrcnt_add(const char *name, u_long **countp);
|
/freebsd/sys/fs/ext2fs/ |
H A D | ext2_inode.c | 121 daddr_t lastbn, int level, e4fs_daddr_t *countp) in ext2_indirtrunc() argument 165 *countp = 0; in ext2_indirtrunc() 216 *countp = blocksreleased; in ext2_indirtrunc()
|
/freebsd/stand/common/ |
H A D | load_elf_obj.c | 73 const char *name, Elf_Addr *startp, Elf_Addr *stopp, int *countp); 470 const char* name, Elf_Addr *startp, Elf_Addr *stopp, int *countp) in __elfN() 491 *countp = (*stopp - *startp) / sizeof(Elf_Addr); in __elfN()
|
/freebsd/sys/dev/scc/ |
H A D | scc_core.c | 434 rman_res_t *startp, rman_res_t *countp) in scc_bus_get_resource() argument 451 if (countp != NULL) in scc_bus_get_resource() 452 *countp = rle->count; in scc_bus_get_resource()
|
/freebsd/sys/ufs/ffs/ |
H A D | ffs_inode.c | 702 ufs2_daddr_t *countp) in ffs_indirtrunc() argument 742 *countp = 0; in ffs_indirtrunc() 813 *countp = blocksreleased; in ffs_indirtrunc()
|
/freebsd/sys/dev/puc/ |
H A D | puc.c | 563 rman_res_t *startp, rman_res_t *countp) in puc_bus_get_resource() argument 591 if (countp != NULL) in puc_bus_get_resource() 592 *countp = rman_get_end(res) - start + 1; in puc_bus_get_resource()
|
/freebsd/sys/dev/sfxge/common/ |
H A D | efx_ev.c | 384 __inout unsigned int *countp, in efx_ev_qpoll() argument 410 EFSYS_ASSERT(countp != NULL); in efx_ev_qpoll() 413 count = *countp; in efx_ev_qpoll() 534 *countp = count; in efx_ev_qpoll()
|
/freebsd/sys/x86/x86/ |
H A D | intr_machdep.c | 448 intrcnt_add(const char *name, u_long **countp) in intrcnt_add() argument 453 *countp = &intrcnt[intrcnt_index]; in intrcnt_add()
|
/freebsd/sys/powerpc/powerpc/ |
H A D | intr_machdep.c | 209 intrcnt_add(const char *name, u_long **countp) in intrcnt_add() argument 216 *countp = &intrcnt[idx]; in intrcnt_add()
|
/freebsd/sys/sys/ |
H A D | bus.h | 587 rman_res_t *startp, rman_res_t *countp); 671 int device_get_children(device_t dev, device_t **listp, int *countp); 727 int devclass_get_devices(devclass_t dc, device_t **listp, int *countp); 728 int devclass_get_drivers(devclass_t dc, driver_t ***listp, int *countp);
|
/freebsd/usr.sbin/makefs/zfs/ |
H A D | fs.c | 896 uint64_t *countp; in fs_foreach_mark() local 898 countp = arg; in fs_foreach_mark() 903 cur->inode->ino = ++(*countp); in fs_foreach_mark()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | zio.c | 705 uint64_t *countp = pio->io_children[cio->io_child_type]; in zio_add_child() local 707 countp[w] += !cio->io_state[w]; in zio_add_child() 743 uint64_t *countp = pio->io_children[cio->io_child_type]; in zio_add_child_first() local 745 countp[w] += !cio->io_state[w]; in zio_add_child_first() 780 uint64_t *countp = &zio->io_children[c][wait]; in zio_wait_for_children() local 781 if (*countp != 0) { in zio_wait_for_children() 784 zio->io_stall = countp; in zio_wait_for_children() 798 uint64_t *countp = &pio->io_children[zio->io_child_type][wait]; in zio_notify_parent() local 805 ASSERT3U(*countp, >, 0); in zio_notify_parent() 813 (*countp)--; in zio_notify_parent() [all …]
|
/freebsd/contrib/nvi/vi/ |
H A D | vi.c | 1128 u_long *countp) in v_count() argument 1156 *countp = count; in v_count()
|
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/ |
H A D | zpl_file.c | 273 size_t *countp) in zpl_generic_write_checks() argument 279 *countp = ret; in zpl_generic_write_checks()
|
/freebsd/sys/kern/ |
H A D | subr_bus.c | 1076 devclass_get_drivers(devclass_t dc, driver_t ***listp, int *countp) in devclass_get_drivers() argument 1095 *countp = count; in devclass_get_drivers() 4169 rman_res_t *startp, rman_res_t *countp) in bus_generic_rl_get_resource() argument 4184 if (countp) in bus_generic_rl_get_resource() 4185 *countp = rle->count; in bus_generic_rl_get_resource() 4872 rman_res_t *startp, rman_res_t *countp) in bus_get_resource() argument 4875 startp, countp)); in bus_get_resource()
|
H A D | link_elf.c | 1736 void ***startp, void ***stopp, int *countp) in link_elf_lookup_set() argument 1779 if (countp != NULL) in link_elf_lookup_set() 1780 *countp = count; in link_elf_lookup_set()
|
H A D | link_elf_obj.c | 1597 void ***startp, void ***stopp, int *countp) in link_elf_lookup_set() argument 1615 if (countp) in link_elf_lookup_set() 1616 *countp = count; in link_elf_lookup_set()
|