Lines Matching +full:- +full:- +full:local
20 local start=$1
21 local size=$2
22 local step=$3
23 local count=$4
26 echo "alloc $(( start + (i - 1) * step )) $size"
35 local op=$1
36 local start=$2
37 local size=$3
38 local step=$4
39 local count=$5
40 local pattern=$6
44 echo "$op -P $pattern $(( start + (i - 1) * step )) $size"
53 local start=$2
54 local pattern=$(( (start >> 9) % 256 ))
64 local op=$1
65 local offset=$2
66 local cluster_size=$3
68 local num_large=$4
69 local num_medium=$((num_large * num_large))
70 local num_small=$((4 * num_medium))
72 local half_cluster=$((cluster_size / 2))
73 local quarter_cluster=$((cluster_size / 4))
74 local l2_size=$((cluster_size * cluster_size / 8))
98 offset=$(( ((offset + l2_size - 1) & ~(l2_size - 1)) - (3 * half_cluster) ))
104 local orig_offset=$1
105 local cluster_size=$2
106 local num=$3
109 # used - used - free - used - compressed - compressed -
110 # free - free - compressed
121 $QEMU_IMG convert -f $IMGFMT -O $IMGFMT -c "$TEST_IMG.orig" "$TEST_IMG"