/titanic_50/usr/src/lib/efcode/fcode_test/ |
H A D | arithmetic.fth | 28 " 0 invert" 0 invert .passed? 29 " 0 0=" 0 0= .passed? 30 " -1 invert" -1 invert 0= .passed? 31 " 1 0<>" 1 0<> .passed? 32 " 1 0=" 1 0= invert .passed? 33 " 1 0<>" 1 0<> .passed? 34 " 0 0>=" 0 0>= .passed? 35 " 1 0>=" 1 0>= .passed? 36 " -1 0>=" -1 0>= invert .passed? 37 " 1 0>" 1 0> .passed? [all …]
|
H A D | misc.fth | 30 " pack.1" my-unit-str c@ 4 = .passed? 31 " pack.2" my-unit-str 1 + c@ ascii a = .passed? 32 " pack.3" my-unit-str 2 + c@ ascii b = .passed? 33 " pack.4" my-unit-str 3 + c@ ascii c = .passed? 34 " pack.5" my-unit-str 4 + c@ ascii d = .passed? 35 " count.1" my-unit-str count " abcd" $= .passed? 39 " fmt.1" 1 h# 23 <# #s #> " 2300000001" $= .passed? 40 " fmt.2" 1 h# 23 <# # # #> " 01" $= .passed? 41 " fmt.3" h# 123 <# u#s u#> " 123" $= .passed? 42 " fmt.4" h# 123 <# u# ascii X hold u# u#> " 2X3" $= .passed? [all …]
|
H A D | test64.fth | 32 : .passed ." OK" ; 36 : .passed? ( str,len flag ) 37 if if then if then .passed space else cr type space .failed cr then 57 " /x.1" /x 8 = .passed? 58 " xa1+.1" test-64 xa1+ test-64 /x + = .passed? 59 " xa+.1" test-64 2 xa+ test-64 /x 2 * + = .passed? 60 " x@.1" test-64 x@ h# 01020304 h# 05060708 xl= .passed? 61 " x@.2" test-64 xa1+ x@ h# 81121314 h# 85161718 xl= .passed? 62 " <l@.1" test-64 2 xa+ dup la1+ <l@ swap x@ x= .passed? 63 " bxjoin.1" 8 7 6 5 4 3 2 1 bxjoin test-64 x@ x= .passed? [all …]
|
H A D | access.fth | 43 " l,+" access-test la1+ word-test = .passed? 44 " w,+" word-test 2 wa+ char-test = .passed? 45 " c,+" char-test 4 ca+ end-test = .passed? 46 " ,+" end-test cell+ end-test2 = .passed? 47 " c@.1" char-test c@ h# 1 = .passed? 48 " c@.2" char-test char+ c@ h# 2 = .passed? 49 " c@.3" char-test 2 ca+ c@ h# 3 = .passed? 50 " c@.4" char-test 3 ca+ c@ h# 4 = .passed? 51 " w@.1" access-test w@ h# 8000 = .passed? 52 " w@.2" access-test wa1+ w@ h# 4000 = .passed? [all …]
|
H A D | stack.fth | 28 " drop" 1 0 drop .passed? 29 " swap" 1 2 1 swap drop = .passed? 30 " nip" 1 0 1 nip - 0= .passed? 31 " over" 1 2 over 1 = nip nip .passed? 32 " dup" 1 dup = .passed? 33 " tuck" 2 1 tuck nip = .passed? 34 " rot" 3 2 1 rot 3 = nip nip .passed? 35 " -rot" 3 2 1 -rot 2 = nip nip .passed? 37 5 = and swap 4 = and swap 3 = and .passed? 38 " 2dup" 1 -1 2dup + 0= nip nip .passed? [all …]
|
H A D | loop.fth | 27 " no loop (1) " 1 begin 0 while 1- repeat .passed? 28 " loop to 0 (1)" 9 begin dup while 1- repeat 0= .passed? 31 : btest1 1 begin 0 while 1- repeat .passed? ; 32 : btest2 9 begin dup while 1- repeat 0= .passed? ; 37 " no loop (3)" 1 begin dup until .passed? 38 " loop to 0 (3)" 9 begin 1- dup 0= until 0= .passed? 41 : btest3 1 begin dup until .passed? ; 42 : btest4 9 begin 1- dup 0= until 0= .passed? ; 47 " loop (1)" 0 h# 10 0 do drop i loop h# f = .passed? 48 " no loop (1)" 1 0 0 ?do 1- loop .passed? [all …]
|
H A D | iftest.fth | 27 1 if .passed then space 32 0 if .failed else .passed then space 33 1 if .passed else .failed then space 39 else if .failed else .passed then space 41 if if .failed else .passed then space 45 else if .passed else .failed then space 47 if if .passed else .failed then space 53 : if-true? if .passed space 0 exit then .failed space 0 ; 1 if-true? 54 : if-false? if .failed space 1 exit then .passed space 1 ; if-false? 55 : true? if .passed else .failed then space 0 ; true? [all …]
|
H A D | bytemanipulate.fth | 30 h# 33 = and swap h# 44 = and .passed? 32 h# 1122 = swap h# 3344 = and .passed? 34 h# 11 = swap h# 22 = and .passed? 35 " wljoin" h# beef h# dead wljoin h# deadbeef = .passed? 37 h# 44332211 = .passed? 38 " bwjoin" h# 111 h# 222 bwjoin h# 2211 = .passed? 39 " lbflip" h# 11223344 lbflip h# 44332211 = .passed? 40 " lwflip" h# 11223344 lwflip h# 33441122 = .passed? 41 " wbflip" h# 31122 wbflip h# 2211 = .passed? 44 " wbflips" flip-area /l wbflips flip-area l@ h# 02010403 = .passed? [all …]
|
H A D | storage.fth | 31 " variable (off) (get)" var-1 @ 0= .passed? 32 " variable (on) (set)" var-1 on var-1 @ -1 = .passed? 33 " variable (set)" 2 var-1 ! var-1 @ 2 = .passed? 34 " constant.1" const-1 4 = .passed? 35 " value (get)" val-1 5 = .passed? 36 " value (set)" 2 to val-1 val-1 2 = .passed? 40 " variable (get)" : vtest1 var-1 @ = .passed? ; 2 vtest1 42 " constant.2" : ctest const-1 const-1 + 8 = .passed? ; ctest 43 " value (get)" : vtest3 val-1 = .passed? ; 2 vtest3
|
H A D | parse.fth | 44 " $= test.1" " abcd" " abcd" $= .passed? 45 " $= test.2" " abdc" " abcd" $= invert .passed? 46 " $= test.3" " abc" " abcd" $= invert .passed? 48 ascii , left-parse-string " 9600" $= " left-parse.1" rot .passed? 49 ascii , left-parse-string " 8" $= " left-parse.2" rot .passed? 50 ascii , left-parse-string " n" $= " left-parse.3" rot .passed? 51 ascii , left-parse-string " 1" $= " left-parse.4" rot .passed? 52 ascii , left-parse-string " -" $= " left-parse.5" rot .passed?
|
H A D | case.fth | 37 " case.1" 0 case1 drop " zero" comp invert .passed? 38 " case.2" 1 case1 drop " one" comp invert .passed? 39 " case.3" 2 case1 drop " two" comp invert .passed? 40 " case.4" 3 case1 drop " 3" comp invert .passed? 41 " case.5" 4 case1 drop " 4" comp invert .passed?
|
H A D | find.fth | 28 " " etest 3 = .passed? 29 " evaluate.1" " 1 2 +" evaluate 3 = .passed? 33 " $find.1" 0 1 " drop" $find if execute then 0= .passed? 34 " $find.2" " qwerty" $find if false else " qwerty" $= then .passed?
|
H A D | catch.fth | 31 " 0 throw" ttest1 .passed? 32 " 1 throw" ttest2 .passed?
|
H A D | create.fth | 39 " create.1" " passed" drop table-test comp invert .passed?
|
/titanic_50/usr/src/lib/print/libipp-listener/common/ |
H A D | common.c | 249 int i, passed = 1; in add_supported_locales() local 253 for (i = 0; ((passed == 1) && (name[i] != NULL)); i++) in add_supported_locales() 259 passed = 0; in add_supported_locales() 261 if ((passed == 1) && in add_supported_locales()
|
/titanic_50/usr/src/cmd/dtrace/test/cmd/scripts/ |
H A D | dtest.pl | 257 my($passed) = 0; 541 $passed = ($total - $failed - $bypassed); 543 "passed" => $passed, 716 my $passed = $results{$key}{"passed"}; 722 logmsg(" passed: " . $passed . "\n");
|
/titanic_50/usr/src/test/zfs-tests/include/ |
H A D | math.shlib | 21 # Do $action if the calculated percentage is greater or equal to that passed in: 23 # Do $action if the calculated percentage is less than that passed in:
|
/titanic_50/usr/src/cmd/dtrace/test/tst/common/profile-n/ |
H A D | tst.argtest.d.out | 1 Test passed; either arg0/arg1 is zero
|
/titanic_50/usr/src/cmd/mdb/test/ |
H A D | mtest.sh | 43 -a Runs all tests, ignores tests passed in 171 Tests passed: $mt_tsuc
|
/titanic_50/usr/src/cmd/svc/milestone/ |
H A D | make-console-login-xml | 121 <!-- these are passed to ttymon in the method script. 122 note that value_authorization is not passed to ttymon
|
/titanic_50/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_set/ |
H A D | user_property_003_neg.ksh | 63 log_pass "ZFS can handle invalid user property passed."
|
/titanic_50/usr/src/cmd/sendmail/cf/feature/ |
H A D | use_client_ptr.m4 | 18 # is passed in as its first argument.
|
/titanic_50/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_rename/ |
H A D | zfs_rename_009_neg.ksh | 101 log_pass "zfs rename -r failed, when snapshot name is already existing passed."
|
/titanic_50/usr/src/cmd/power/ |
H A D | sysidpm.po | 33 # gettext before being passed to ckyorn. 47 # gettext before being passed to ckyorn.
|
/titanic_50/usr/src/lib/libast/amd64/src/lib/libast/FEATURE/ |
H A D | tvlib | 16 #define _lib_clock_gettime 1 /* execute{\ passed */
|