HomeSort by relevance Sort by last modified time
    Searched full:"$ size" (Results 1 - 25 of 149) sorted by null

1 2 3 4 5 6

  /external/toybox/tests/
truncate.test 8 testing "0" "truncate -s 0 freep $SIZE" "0\n" "" ""
9 testing "12345" "truncate -s 12345 freep $SIZE" "12345\n" "" ""
10 testing "1m" "truncate -s 1m freep $SIZE" "1048576\n" "" ""
13 testing "+" "truncate -s 1k freep && truncate -s +1k freep $SIZE" \
15 testing "-" "truncate -s 4k freep && truncate -s -1k freep $SIZE" \
18 "truncate -s 5k freep && truncate -s \<4k freep $SIZE" "4096\n" "" ""
20 "truncate -s 4k freep && truncate -s \<6k freep $SIZE" "4096\n" "" ""
22 "truncate -s 3k freep && truncate -s \>4k freep $SIZE" "4096\n" "" ""
24 "truncate -s 4k freep && truncate -s \>2k freep $SIZE" "4096\n" "" ""
25 testing "/" "truncate -s 7k freep && truncate -s /3k freep $SIZE" \
    [all...]
  /system/extras/f2fs_utils/
mkf2fsuserimg.sh 24 if [ -z $SIZE ]; then
29 MAKE_F2FS_CMD="make_f2fs -l $SIZE $OUTPUT_FILE"
  /external/syslinux/mbr/
checksize.pl 43 if (!defined($size = $st[7])) {
46 if ($size > $maxsize) {
47 print STDERR "$file: too big ($size > $maxsize)\n";
49 } elsif ($size < $padsize) {
50 seek(FILE, $size, 0);
51 print FILE "\0" x ($padsize-$size);
  /external/ImageMagick/PerlMagick/demo/
steganography.pl 22 $size="$width" . "x" . "$height" . "+91";
23 $stegano=Image::Magick->new(size=>$size);
  /external/libxml2/
dbgen.pl 3 $size = shift;
5 if ($size eq "")
24 for ($i=0; $i<$size; $i++)
dbgenattr.pl 3 $size = shift;
5 if ($size eq "")
24 for ($i=0; $i<$size; $i++)
  /external/ImageMagick/PerlMagick/t/
ping.t 27 my (@blob, $filename, $format, $height, $image, $size, $status, $width);
32 ($width, $height, $size, $format)=$image->Ping("$filename");
33 if (($width == 70) && ($height == 46) && ($size == 9673) && ($format eq "PPM"))
51 ($width, $height, $size, $format)=$image->Ping(blob=>@blob);
54 if (($width == 70) && ($height == 46) && ($size == 9673) && ($format eq "PPM"))
  /external/syslinux/memdisk/
postprocess.pl 30 $size = $info[7];
32 $sectors = ($size + 511) >> 9;
35 read(FILE, $f16, $size);
39 if ( $size != $xsize ) {
41 print OUT "\0" x ($xsize-$size);
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
size.exp 24 if {[which $SIZE] == 0} then {
25 perror "$SIZE does not exist"
30 send_user "Version [binutil_version $SIZE]"
48 set got [binutils_run $SIZE "$SIZEFLAGS $testfile"]
67 set got [binutils_run $SIZE "$SIZEFLAGS -A ${testfile}"]
  /external/strace/
mpers_test.sh 31 [ "$size" -gt 0 ]
84 typedef uint${size}_t mpers_ptr_t;
96 int${size}_t sl;
101 uint${size}_t ul;
102 int${size}_t asl[3];
110 int${size}_t sl;
111 uint${size}_t ul;
  /system/core/logcat/
logpersist 54 if [ -z "${size}" -o "${size_default}" = "${size}" ]; then
57 if [ -n "${size}" ] &&
58 ! ( [ 0 -lt "${size}" ] && [ 2048 -ge "${size}" ] ) >/dev/null 2>&1; then
59 echo ERROR: Invalid --size ${size} >&2
75 if [ -n "${size}${buffer}" -o "true" = "${clear}" ]; then
91 elif [ "${buffer}|${size}" != "${current_buffer}|${current_size}" ]; then
100 if [ "${size}" != "${current_size}" ]; then
102 b=${size}
    [all...]
  /external/syslinux/
now.pl 10 ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,
  /external/ltp/testcases/kernel/fs/racer/
fs_racer_file_create.sh 28 echo $SIZE
29 dd if=/dev/zero of=$DIR/$file bs=1k count=$SIZE
  /external/ltp/tools/
make-file.sh 38 if ! perl -e "print 'A' x $size" > "$file" 2> /dev/null ; then
39 if ! awk 'BEGIN { cnt='$size'; while (cnt--) printf "A" }' > "$file" 2> /dev/null ; then
  /system/tools/hidl/test/java_test/
hidl_test_java 7 native=/data/nativetest${SIZE/32}/hidl_test_java_native/hidl_test_java_native
10 echo "Testing $SIZE bit native client/server"
  /external/curl/tests/
memanalyze.pl 139 $size = $1;
148 $sizeataddr{$addr}=$size;
149 $totalmem += $size;
152 print "MALLOC: malloc($size) at $source:$linenum",
162 $size = $1*$2;
173 $sizeataddr{$addr}=$size;
174 $totalmem += $size;
212 $size = $2;
215 $sizeataddr{$addr}=$size;
217 $totalmem += $size;
    [all...]
  /bootable/recovery/applypatch/
imgdiff_test.sh 88 echo "patch for $fn is $(size $tmpdir/patch) [of $(size $tmpdir/target)] ($(size $tmpdir/patch.bs) with bsdiff)"
89 echo "$fn $(size $tmpdir/patch) of $(size $tmpdir/target) bsdiff $(size $tmpdir/patch.bs)" >> /tmp/stats.txt
94 /data/local/tmp/target $(sha1 $tmpdir/target) $(size $tmpdir/target) \
  /external/e2fsprogs/tests/scripts/
mkdup 14 dd if=/dev/zero of=$IMG bs=1k count=$SIZE
15 echo $MKE2FS -F -t ext4 -L test $OPTS test.img $SIZE
16 $MKE2FS -F -t ext4 -L test $OPTS $IMG $SIZE
  /external/llvm/test/CodeGen/X86/
tailcall-calleesave.ll 11 ; CHECK: subl $[[SIZE:[0-9]+]], %esp
  /external/ltp/testcases/commands/ade/size/
size01 43 $SIZE $TCsrc/test > $TCtmp/er_size
44 $SIZE -V $TCsrc/test > $TCtmp/er_size_V
45 $SIZE -o $TCsrc/test > $TCtmp/er_size_o
46 $SIZE -x $TCsrc/test > $TCtmp/er_size_x
  /external/toybox/scripts/
bloatcheck 45 OLD=$(($OLD+$SIZE))
46 SIZE=$((-1*$SIZE))
48 NEW=$(($NEW+$SIZE))
50 DELTA=$(($DELTA+$SIZE))
  /packages/apps/Messaging/tools/messagegen/
listimages 20 echo "$file $dimension $size"
  /external/vboot_reference/utility/
chromeos-tpm-recovery-test 62 totalsize=$(( $size + $space_overhead ))
70 echo $size > space.$index.size
72 for i in $(seq 1 $(($size))); do
106 if [ $(($size > $maxsize)) -eq 1 ]; then
107 echo "size $size too large for space (max is $maxsize)"
119 if [ $(($size > $maxsize)) -eq 1 ]; then
120 echo "size $size too large for space (max is $(($maxsize)))"
187 echo $(( $size + $space_overhead + $free )) > nvram.freespace
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
genlingware.pl 474 my $size = 0;
476 $size += &print_uint8($fill);
478 $size += &print_uint8(0);
481 return $size;
488 my $size = 0;
491 $size += &print_uint8($fill);
493 $size += &print_uint8(0);
495 return $size;
500 my $size = 0;
502 $size += length($cont)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_s.h 208 ;// $size = the size of each entry, must be power of 2
211 M_FIELD $fname, $size, $number
212 IF (_StOff:AND:($size-1))!=0
213 _StOff SETA _StOff + ($size - (_StOff:AND:($size-1)))
217 _StOff SETA _StOff + $size*$number
219 _StOff SETA _StOff + $size
326 ;// $name size $size bytes.
328 M_ALLOC1 $name, $size
331 _SBytes SETA _SBytes + ($size)
    [all...]

Completed in 4503 milliseconds

1 2 3 4 5 6