Home
last modified time | relevance | path

Searched refs:fbase (Results 1 – 6 of 6) sorted by relevance

/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_clear/
H A Dzpool_clear_001_pos.ksh69 fbase=$TMPDIR/file
70 log_must create_vdevs $fbase.0 $fbase.1 $fbase.2
71 set -A poolconf "mirror $fbase.0 $fbase.1 $fbase.2" \
72 "raidz1 $fbase.0 $fbase.1 $fbase.2" \
73 "raidz2 $fbase.0 $fbase.1 $fbase.2"
81 [ "$type" = "device" ] && vdev_arg="${fbase}.0"
H A Dzpool_clear_003_neg.ksh69 fbase=$TMPDIR/file
70 log_must create_vdevs $fbase.1 $fbase.2 $fbase.3 $fbase.4
71 log_must create_pool $TESTPOOL1 raidz $fbase.1 $fbase.2 $fbase.3 spare $fbase.4
72 log_mustnot $ZPOOL clear $TESTPOOL1 $fbase.4
H A Dzpool_clear_004_pos.ksh81 fbase=$TMPDIR/file
82 log_must create_vdevs $fbase.0 $fbase.1 $fbase.2
83 VDEV1=$fbase.0
84 VDEV2=$fbase.1
85 SDEV=$fbase.2
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_clear/
H A Dzpool_clear_001_pos.ksh53 log_must rm -f $fbase.{0..2}
61 fbase=$TEST_BASE_DIR/file
62 log_must truncate -s $FILESIZE $fbase.{0..2}
63 set -A poolconf "mirror $fbase.0 $fbase.1 $fbase.2" \
64 "raidz1 $fbase.0 $fbase.1 $fbase.2" \
65 "raidz2 $fbase.0 $fbase.1 $fbase.2"
133 dd if=/dev/zero of=$fbase.$i seek=512 bs=1024 count=$wcount conv=notrunc 2>/dev/null
141 dev=$fbase.$i
/freebsd/contrib/libexecinfo/
H A Dsymtab.c187 uintptr_t fbase = st->ispie ? (uintptr_t)dli->dli_fbase : 0; in symtab_find() local
188 uintptr_t dd, sd, me = (uintptr_t)p - fbase; in symtab_find()
189 uintptr_t ad = (uintptr_t)dli->dli_saddr - fbase; in symtab_find()
193 __func__, (uintmax_t)fbase, dli->dli_saddr, (uintmax_t)me, in symtab_find()
/freebsd/sys/dev/mlx5/mlx5_fpga_tools/
H A Dmlx5fpga_tools_char.c110 uint64_t fbase, fsize; in tools_char_llseek() local
120 fbase = mlx5_fpga_ddr_base_get(context->tdev->fdev); in tools_char_llseek()
122 if (uio->uio_offset > fbase) in tools_char_llseek()
124 else if (uio->uio_offset + *len > fbase + fsize) in tools_char_llseek()
125 *len = fbase + fsize - uio->uio_offset; in tools_char_llseek()