| /freebsd-14.2/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | dt_cg.c | 179 if (dnp->dn_flags & DT_NF_SIGNED) in dt_cg_load() 181 if (dnp->dn_flags & DT_NF_USERLAND) in dt_cg_load() 423 if (src->dn_flags & DT_NF_REF) { in dt_cg_store() 479 ((src->dn_flags ^ dst->dn_flags) & DT_NF_SIGNED) != 0) in dt_cg_typecast() 691 dnp->dn_left->dn_flags |= rbit; in dt_cg_prearith_op() 748 dnp->dn_left->dn_flags |= rbit; in dt_cg_postarith_op() 1147 dnp->dn_left->dn_flags |= rbit; in dt_cg_asgn_op() 1742 dnp->dn_flags |= in dt_cg_node() 1749 dnp->dn_flags |= ubit; in dt_cg_node() 1906 dnp->dn_flags |= in dt_cg_node() [all …]
|
| H A D | dt_parser.c | 526 dnp->dn_flags = 0; in dt_node_xalloc() 686 dnp->dn_flags &= in dt_node_type_assign() 696 dnp->dn_flags |= DT_NF_SIGNED; in dt_node_type_assign() 701 dnp->dn_flags |= DT_NF_REF; in dt_node_type_assign() 707 dnp->dn_flags |= DT_NF_REF; in dt_node_type_assign() 710 dnp->dn_flags |= DT_NF_REF; in dt_node_type_assign() 715 dnp->dn_flags |= DT_NF_COOKED; in dt_node_type_assign() 724 dst->dn_flags = src->dn_flags & ~DT_NF_LVALUE; in dt_node_type_propagate() 1079 (lp->dn_flags & DT_NF_USERLAND) ^ (rp->dn_flags & DT_NF_USERLAND))) in dt_node_is_ptrcompat() 1783 dnp->dn_flags &= ~DT_NF_COOKED; in dt_node_func() [all …]
|
| H A D | dt_parser.h | 54 uchar_t dn_flags; /* node flags (DT_NF_*, defined below) */ member
|
| H A D | dt_ident.c | 462 if ((ap->dn_flags & DT_NF_SIGNED) && (int64_t)ap->dn_value < 0) { in dt_idcook_regs() 979 dnp->dn_flags |= DT_NF_USERLAND; in dt_ident_cook()
|
| H A D | dt_printf.c | 171 if (dnp->dn_flags & DT_NF_SIGNED) in pfcheck_dint()
|
| H A D | dt_cc.c | 863 ((arg1->dn_flags & DT_NF_SIGNED) && in dt_action_ustack_args()
|
| /freebsd-14.2/sys/contrib/openzfs/module/zfs/ |
| H A D | dnode_sync.c | 658 dn->dn_oldflags = dn->dn_phys->dn_flags; in dnode_sync() 659 dn->dn_phys->dn_flags |= DNODE_FLAG_USERUSED_ACCOUNTED; in dnode_sync() 661 dn->dn_phys->dn_flags |= in dnode_sync() 672 ASSERT(!(dn->dn_phys->dn_flags & in dnode_sync() 674 ASSERT(!(dn->dn_phys->dn_flags & in dnode_sync() 745 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) in dnode_sync() 769 dnp->dn_flags &= ~DNODE_FLAG_SPILL_BLKPTR; in dnode_sync()
|
| H A D | dmu_traverse.c | 506 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) { in prefetch_dnode_metadata() 541 if (err == 0 && (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR)) { in traverse_dnode()
|
| H A D | dmu_object.c | 349 if (dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR) { in dmu_object_rm_spill()
|
| H A D | dnode.c | 480 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) in dnode_byteswap() 596 dn->dn_have_spill = ((dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) != 0); in dnode_create() 834 if (dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR && !keep_spill) { in dnode_reallocate() 2459 ASSERT((dn->dn_phys->dn_flags & DNODE_FLAG_USED_BYTES) == 0); in dnode_diduse_space() 2464 dn->dn_phys->dn_flags |= DNODE_FLAG_USED_BYTES; in dnode_diduse_space()
|
| H A D | dbuf.c | 3136 (dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR)) in dbuf_findbp() 4488 if (!(dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR)) { in dbuf_sync_leaf() 4504 dn->dn_phys->dn_flags |= DNODE_FLAG_SPILL_BLKPTR; in dbuf_sync_leaf() 4670 ASSERT(dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR); in dbuf_write_ready() 4701 if (dnp->dn_flags & in dbuf_write_ready() 4825 ASSERT(dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR); in dbuf_write_done()
|
| H A D | dmu_objset.c | 2027 dn->dn_phys->dn_flags & in userquota_updates_task() 2042 DN_USED_BYTES(dn->dn_phys), dn->dn_phys->dn_flags, in userquota_updates_task() 2046 dn->dn_phys->dn_flags, dn->dn_newuid, dn->dn_newgid, in userquota_updates_task()
|
| H A D | dmu_send.c | 785 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) in dump_dnode() 806 (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) && in dump_dnode()
|
| H A D | dsl_scan.c | 1949 if (dnp->dn_nblkptr == 0 && !(dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR)) in dsl_scan_prefetch_dnode() 1962 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) { in dsl_scan_prefetch_dnode() 2298 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) { in dsl_scan_visitdnode()
|
| /freebsd-14.2/sys/contrib/openzfs/include/sys/ |
| H A D | dnode.h | 130 ((dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) ? \ 134 #define DN_USED_BYTES(dnp) (((dnp)->dn_flags & DNODE_FLAG_USED_BYTES) ? \ 226 uint8_t dn_flags; /* DNODE_FLAG_* */ member
|
| /freebsd-14.2/sys/contrib/openzfs/module/os/freebsd/zfs/ |
| H A D | zio_crypt.c | 970 adnp->dn_flags &= DNODE_CRYPT_PORTABLE_FLAGS_MASK; in zio_crypt_do_dnode_hmac_updates() 982 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) { in zio_crypt_do_dnode_hmac_updates() 1485 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) { in zio_crypt_init_uios_dnode() 1503 adnp->dn_flags &= DNODE_CRYPT_PORTABLE_FLAGS_MASK; in zio_crypt_init_uios_dnode() 1513 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) { in zio_crypt_init_uios_dnode()
|
| /freebsd-14.2/usr.sbin/makefs/zfs/ |
| H A D | objset.c | 73 dnode->dn_flags = DNODE_FLAG_USED_BYTES; in dnode_init()
|
| H A D | vdev.c | 132 assert((dnode->dn_flags & DNODE_FLAG_USED_BYTES) != 0); in vdev_pwrite_dnode_indir()
|
| /freebsd-14.2/sys/contrib/openzfs/module/os/linux/zfs/ |
| H A D | zio_crypt.c | 1077 adnp->dn_flags &= DNODE_CRYPT_PORTABLE_FLAGS_MASK; in zio_crypt_do_dnode_hmac_updates() 1097 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) { in zio_crypt_do_dnode_hmac_updates() 1699 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) { in zio_crypt_init_uios_dnode() 1717 adnp->dn_flags &= DNODE_CRYPT_PORTABLE_FLAGS_MASK; in zio_crypt_init_uios_dnode() 1727 if (dnp->dn_flags & DNODE_FLAG_SPILL_BLKPTR) { in zio_crypt_init_uios_dnode()
|
| /freebsd-14.2/sys/cddl/boot/zfs/ |
| H A D | zfsimpl.h | 1053 #define DN_USED_BYTES(dnp) (((dnp)->dn_flags & DNODE_FLAG_USED_BYTES) ? \ 1073 uint8_t dn_flags; /* DNODE_FLAG_* */ member
|
| /freebsd-14.2/usr.sbin/makefs/ |
| H A D | zfs.c | 398 dnode->dn_flags = DNODE_FLAG_USED_BYTES; in pool_init_objdir_config()
|
| /freebsd-14.2/stand/libsa/zfs/ |
| H A D | zfsimpl.c | 3589 if ((dn->dn_flags & DNODE_FLAG_SPILL_BLKPTR) != 0) { in zfs_dnode_stat() 3641 if ((dn->dn_flags & DNODE_FLAG_SPILL_BLKPTR) == 0) in zfs_dnode_readlink()
|
| /freebsd-14.2/sys/contrib/openzfs/cmd/zdb/ |
| H A D | zdb.c | 3847 (dn->dn_phys->dn_flags & DNODE_FLAG_USED_BYTES) ? in dump_object() 3849 (dn->dn_phys->dn_flags & DNODE_FLAG_USERUSED_ACCOUNTED) ? in dump_object() 3851 (dn->dn_phys->dn_flags & DNODE_FLAG_USEROBJUSED_ACCOUNTED) ? in dump_object() 3853 (dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR) ? in dump_object() 3877 if (dn->dn_phys->dn_flags & DNODE_FLAG_SPILL_BLKPTR) { in dump_object()
|