| /freebsd/usr.sbin/mixer/tests/ |
| H A D | mixer_test.sh | 114 atf_test_case volume cleanup 127 mixer vol.volume=0 128 atf_check -o match:"0.00:0.00" mixer vol.volume 130 mixer vol.volume=-2 131 atf_check -o match:"0.00:0.00" mixer vol.volume 133 mixer vol.volume=-1:-2 134 atf_check -o match:"0.00:0.00" mixer vol.volume 136 mixer vol.volume=-110% 137 atf_check -o match:"0.00:0.00" mixer vol.volume 140 mixer vol.volume=1 [all …]
|
| /freebsd/tests/sys/cddl/zfs/tests/zvol/zvol_misc/ |
| H A D | zvol_misc_004_pos.ksh | 78 typeset volume=$1 80 log_must $ZFS snapshot $volume@snap0 81 log_must $ZFS snapshot $volume@snap1 82 log_must datasetexists $volume@snap0 $volume@snap1 84 log_must $ZFS destroy $volume@snap1 85 log_must $ZFS snapshot $volume@snap1 87 log_mustnot $ZFS rollback -r $volume@snap0 88 log_must datasetexists $volume@snap0 89 log_must datasetexists $volume@snap1 91 log_must $ZFS destroy -r $volume@snap0
|
| /freebsd/usr.sbin/fstyp/ |
| H A D | befs.c | 50 struct disk_super_block *volume; in fstyp_befs() local 52 volume = read_buf(fp, BEFS_BLOCK_OFFSET, sizeof(*volume)); in fstyp_befs() 54 if (volume == NULL) { in fstyp_befs() 58 if (volume->magic1 == BEFS_SUPER_BLOCK_MAGIC1) { in fstyp_befs() 59 strlcpy(label, volume->name, size); in fstyp_befs() 60 free(volume); in fstyp_befs() 65 free(volume); in fstyp_befs()
|
| H A D | cd9660.c | 45 char *sector, *volume; in fstyp_cd9660() local 54 volume = sector + 0x28; in fstyp_cd9660() 56 strlcpy(label, volume, MIN(size, VOLUME_LEN)); in fstyp_cd9660()
|
| H A D | hammer_disk.h | 819 #define hammer_xlate_to_phys(volume, zone2_offset) \ argument 820 ((volume)->vol_buf_beg + HAMMER_OFF_SHORT_ENCODE(zone2_offset)) 828 #define hammer_xlate_to_undo(volume, zone3_offset) \ argument 829 ((volume)->vol0_undo_array[HAMMER_UNDO_INDEX(zone3_offset)] + \ 835 #define HAMMER_VOL_BUF_SIZE(volume) \ argument 836 ((volume)->vol_buf_end - (volume)->vol_buf_beg)
|
| /freebsd/tests/sys/cddl/zfs/tests/zvol/ |
| H A D | zvol_common.kshlib | 95 typeset volume=$1 97 if [[ -z $volume ]] ; then 102 log_must $ZFS set volsize=64m $volume 104 output=$($DUMPADM -d /dev/zvol/$volume 2>&1 | \ 110 log_must $ZFS set volsize=${output}m $volume 124 typeset volume=${device#/dev/zvol/} 125 set_dumpsize $volume 138 typeset volume=$1 140 if [[ -z $volume ]] ; then 145 $ZDB -dddd $volume 2 | $GREP "dumpsize" > /dev/null 2>&1
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_misc/ |
| H A D | zvol_misc_004_pos.ksh | 74 typeset volume=$1 76 log_must zfs snapshot $volume@snap0 77 log_must zfs snapshot $volume@snap1 78 log_must datasetexists $volume@snap0 $volume@snap1 80 log_must zfs destroy $volume@snap1 81 log_must zfs snapshot $volume@snap1 83 log_mustnot zfs rollback -r $volume@snap0 84 log_must datasetexists $volume@snap0 86 log_must zfs destroy -r $volume@snap0
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/ |
| H A D | zvol_common.shlib | 36 # Create a simple zvol volume 39 # volume_size: is the size of the volume, e.g. 2G 40 # block_size: is the block size of the volume 80 typeset volume=$1 82 if [[ -z $volume ]] ; then 83 log_note "No volume specified." 87 log_must zfs set volsize=64m $volume 89 output=$(dumpadm -d /dev/zvol/dsk/$volume 2>&1 | awk 'END {print $3}') 94 log_must zfs set volsize=${output}m $volume 105 log_note "No dump device volume specified." [all …]
|
| /freebsd/usr.sbin/mptutil/ |
| H A D | mpt_volume.c | 44 MPT_TABLE(top, volume); 198 MPT_COMMAND(volume, status, volume_status); 203 CONFIG_PAGE_RAID_VOL_0 *volume; in volume_cache() local 238 volume = mpt_vol_info(fd, VolumeBus, VolumeID, NULL); in volume_cache() 239 if (volume == NULL) { in volume_cache() 244 Settings = volume->VolumeSettings.Settings; in volume_cache() 254 free(volume); in volume_cache() 259 volume->VolumeSettings.Settings = NewSettings; in volume_cache() 261 VolumeBus, VolumeID, 0, *(U32 *)&volume->VolumeSettings, NULL, 0, in volume_cache() 269 MPT_COMMAND(volume, cache, volume_cache);
|
| /freebsd/usr.sbin/virtual_oss/virtual_oss/ |
| H A D | virtual_oss.c | 148 int64_t volume, int shift, int shift_orig, bool pol, in virtual_oss_mixer_core_sub() argument 152 volume = -volume; in virtual_oss_mixer_core_sub() 158 *dst = (*src * volume) >> shift; in virtual_oss_mixer_core_sub() 160 *dst += (*src * volume) >> shift; in virtual_oss_mixer_core_sub() 162 *dst += vclient_noise(pnoise, volume, shift_orig); in virtual_oss_mixer_core_sub() 169 *dst = (*src * volume) << shift; in virtual_oss_mixer_core_sub() 171 *dst += (*src * volume) << shift; in virtual_oss_mixer_core_sub() 173 *dst += vclient_noise(pnoise, volume, shift_orig); in virtual_oss_mixer_core_sub() 183 int64_t volume, int shift, int shift_orig, bool pol, in virtual_oss_mixer_core() argument 192 num, volume, shift, shift_orig, pol, false); in virtual_oss_mixer_core() [all …]
|
| /freebsd/contrib/googletest/ci/ |
| H A D | linux-presubmit.sh | 48 --volume="${GTEST_ROOT}:/src:ro" \ 70 --volume="${GTEST_ROOT}:/src:ro" \ 91 --volume="${GTEST_ROOT}:/src:ro" \ 113 --volume="${GTEST_ROOT}:/src:ro" \ 137 --volume="${GTEST_ROOT}:/src:ro" \
|
| /freebsd/tests/sys/cddl/zfs/tests/snapused/ |
| H A D | snapused.kshlib | 58 for child in $($ZFS list -rH -t filesystem,volume -o name $dataset) 69 for child in $($ZFS list -rH -t filesystem,volume -o name $dataset) 123 for child in $($ZFS list -rH -t filesystem,volume -o name $dataset) 149 for child in $($ZFS list -rH -t filesystem,volume -o name $dataset) 160 for child in $($ZFS list -rH -t filesystem,volume,snapshot -o name $dataset)
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/snapused/ |
| H A D | snapused.kshlib | 59 for child in $(zfs list -rH -t filesystem,volume -o name $dataset) 70 for child in $(zfs list -rH -t filesystem,volume -o name $dataset) 124 for child in $(zfs list -rH -t filesystem,volume -o name $dataset) 150 for child in $(zfs list -rH -t filesystem,volume -o name $dataset) 161 for child in $(zfs list -rH -t filesystem,volume,snapshot -o name $dataset)
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/reservation/ |
| H A D | reservation.shlib | 101 # This function compute the largest volume size which is multiple of volume 104 # $1 The largest expected volume size. 105 # $2 The volume block size 126 # Its purpose is to reserve additional space for volume metadata so volumes 129 # Note: This function can be used to do an estimate for a volume that has not 130 # yet been created. In this case, $vol is not a volume, but rather a pool in 131 # which a volume is going to be created. In this case, use default properties. 172 # or take some slop) -V value that can be used to create a volume in that pool. 173 # This is necessary because during volume creation, a reservation is created
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_create/ |
| H A D | zfs_create.cfg | 49 # a volume that great than 1TB on 32-bit 50 # - volume size exceeds limit for this system. (happy gate) 51 # - max volume size is 1TB on 32-bit systems (s10u2) 56 export VOL_LIMIT_KEYWORD3="volume size exceeds limit" 62 # If a datasize has a volume size that is not a multiple of the blocksize, 64 # The volume with the exact size must exist in the "size" array above
|
| /freebsd/sys/geom/label/ |
| H A D | g_label_iso9660.c | 46 char *sector, *volume; in g_label_iso9660_taste() local 65 volume = sector + 0x28; in g_label_iso9660_taste() 67 strlcpy(label, volume, MIN(size, VOLUME_LEN)); in g_label_iso9660_taste()
|
| /freebsd/tests/sys/cddl/zfs/tests/largest_pool/ |
| H A D | largest_pool.cfg | 33 # a volume that great than 1TB on 32-bit 34 # - volume size exceeds limit for this system. (happy gate) 35 # - max volume size is 1TB on 32-bit systems (s10u2) 40 export VOL_LIMIT_KEYWORD3="volume size exceeds limit"
|
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/largest_pool/ |
| H A D | largest_pool.cfg | 37 # a volume that great than 1TB on 32-bit 38 # - volume size exceeds limit for this system. (happy gate) 39 # - max volume size is 1TB on 32-bit systems (s10u2) 44 export VOL_LIMIT_KEYWORD3="volume size exceeds limit"
|
| /freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_create/ |
| H A D | zfs_create.cfg | 40 # a volume that great than 1TB on 32-bit 41 # - volume size exceeds limit for this system. (happy gate) 42 # - max volume size is 1TB on 32-bit systems (s10u2) 47 export VOL_LIMIT_KEYWORD3="volume size exceeds limit"
|
| /freebsd/contrib/one-true-awk/testdir/ |
| H A D | funstack.in | 197 volume = "4", 212 volume = "5", 227 volume = "6", 242 volume = "6", 257 volume = "7", 272 volume = "7", 287 volume = "8", 302 volume = "9", 317 volume = "10", 332 volume = "11", [all …]
|
| /freebsd/sys/contrib/openzfs/etc/systemd/system/ |
| H A D | zfs-volumes.target.in | 3 After=zfs-volume-wait.service 4 Requires=zfs-volume-wait.service
|
| /freebsd/libexec/rc/rc.d/ |
| H A D | zvol | 21 zfs list -H -o org.freebsd:swap,name -t volume | 34 zfs list -H -o org.freebsd:swap,name -t volume |
|
| /freebsd/sys/contrib/device-tree/src/arm64/mediatek/ |
| H A D | mt8173-elm-hana-rev7.dts | 26 /delete-node/switch-volume-down; 27 /delete-node/switch-volume-up;
|
| /freebsd/sys/arm/broadcom/bcm2835/ |
| H A D | bcm2835_audio.c | 128 uint32_t dest, volume; member 443 bcm2835_audio_update_controls(struct bcm2835_audio_info *sc, uint32_t volume, uint32_t dest) in bcm2835_audio_update_controls() argument 451 if (volume > 99) in bcm2835_audio_update_controls() 452 volume = 99; in bcm2835_audio_update_controls() 453 db = db_levels[volume/5]; in bcm2835_audio_update_controls() 454 m.u.control.volume = VCHIQ_AUDIO_VOLUME(db); in bcm2835_audio_update_controls() 565 uint32_t volume, dest; in bcm2835_audio_worker() local 600 volume = sc->volume; in bcm2835_audio_worker() 605 bcm2835_audio_update_controls(sc, volume, dest); in bcm2835_audio_worker() 913 sc->volume = left; in bcmmix_set() [all …]
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | dump | 18 >0 belong 5 end of volume, 37 >0 belong 5 end of volume, 56 >0 belong 5 end of volume, 94 >0 leshort 5 end of volume.
|