Searched refs:tst (Results 1 - 25 of 105) sorted by relevance

12345

/openbsd-current/gnu/usr.bin/perl/dist/IO/t/
H A Dio_tell.t21 my $tst = IO::File->new("$tell_file","r") || die("Can't open $tell_file");
22 binmode $tst; # its a nop unless it matters. Was only if ($^O eq 'MSWin32' or $^O eq 'dos');
23 if ($tst->eof) { print "not ok 1\n"; } else { print "ok 1\n"; }
25 my $firstline = <$tst>;
29 while (<$tst>) {
38 if ($tst->seek(0,0)) { print "ok 4\n"; } else { print "not ok 4\n"; }
42 if ($firstline eq <$tst>) { print "ok 6\n"; } else { print "not ok 6\n"; }
46 if ($tst->seek(0,1)) { print "ok 8\n"; } else { print "not ok 8\n"; }
48 if ($tst->eof) { print "not ok 9\n"; } else { print "ok 9\n"; }
52 if ($tst
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D20001109-2.c6 int tst[__alignof__ (bar) >= __alignof__ (int) ? 1 : -1]; variable
H A D20001109-1.c7 int tst[__alignof__ (bar) >= __alignof__ (int) ? 1 : -1]; variable
/openbsd-current/gnu/usr.bin/perl/t/io/
H A Dtell.t108 open($tst,">$written") || die "Cannot open $written:$!";
109 binmode $tst if $Is_Dosish;
111 is(tell($tst), 0, "tell() for new file returns 0");
113 print $tst "fred\n";
115 is(tell($tst), 5, 'tell() after writing "fred\n" returns 5');
117 print $tst "more\n";
119 is(tell($tst), 10, 'tell() after writing "more\n" returns 10');
121 close($tst);
123 open($tst,"+>>$written") || die "Cannot open $written:$!";
124 binmode $tst i
[all...]
/openbsd-current/sys/lib/libkern/arch/sh/
H A Dffs.S43 tst #0xff,r0
47 tst r0,r0 ! ffs(0) is 0
51 tst #0xff,r0
56 tst #0xff,r0
64 tst #0x0f,r0
67 tst #0x03,r0
69 tst #0x01,r0 ! not bit 0 -> T
74 2: tst #0x04,r0
79 4: tst #0x30,r0
81 tst #
[all...]
H A Dmemmove.S56 tst r0,r0 /* (src ^ dst) & 3 */
60 tst REG_LEN,REG_LEN /* if ( len==0 ) return; */
65 tst #1,r0 /* if ( src & 1 ) */
77 tst #2,r0 /* (src & 2) { */
89 tst REG_LEN,REG_LEN
99 tst REG_LEN,REG_LEN
104 tst #1,r0
106 tst REG_LEN,REG_LEN /* if ( len == 0 ) return; */
111 tst #1,r0
123 tst REG_LE
[all...]
/openbsd-current/lib/libc/arch/sh/string/
H A Dffs.S44 tst #0xff,r0
48 tst r0,r0 ! ffs(0) is 0
52 tst #0xff,r0
57 tst #0xff,r0
65 tst #0x0f,r0
68 tst #0x03,r0
70 tst #0x01,r0 ! not bit 0 -> T
75 2: tst #0x04,r0
80 4: tst #0x30,r0
82 tst #
[all...]
H A Dmemcpy.S48 tst r0,r0 /* (src ^ dst) & 3 */
52 tst REG_LEN,REG_LEN /* if ( len==0 ) return; */
57 tst #1,r0 /* if ( src & 1 ) */
70 tst #2,r0 /* (src & 2) { */
82 tst REG_LEN,REG_LEN
92 tst REG_LEN,REG_LEN
97 tst #1,r0
99 tst REG_LEN,REG_LEN /* if ( len == 0 ) return; */
104 tst #1,r0
116 tst REG_LE
[all...]
H A Dbcopy.S47 tst r0,r0 /* (src ^ dst) & 3 */
51 tst REG_LEN,REG_LEN /* if ( len==0 ) return; */
56 tst #1,r0 /* if ( src & 1 ) */
69 tst #2,r0 /* (src & 2) { */
81 tst REG_LEN,REG_LEN
91 tst REG_LEN,REG_LEN
96 tst #1,r0
98 tst REG_LEN,REG_LEN /* if ( len == 0 ) return; */
103 tst #1,r0
115 tst REG_LE
[all...]
H A Dmemmove.S49 tst r0,r0 /* (src ^ dst) & 3 */
53 tst REG_LEN,REG_LEN /* if ( len==0 ) return; */
58 tst #1,r0 /* if ( src & 1 ) */
71 tst #2,r0 /* (src & 2) { */
83 tst REG_LEN,REG_LEN
93 tst REG_LEN,REG_LEN
98 tst #1,r0
100 tst REG_LEN,REG_LEN /* if ( len == 0 ) return; */
105 tst #1,r0
117 tst REG_LE
[all...]
H A Dmemset.S63 tst REG_LEN,REG_LEN
94 tst #1,r0
155 tst #1,r0 /* len is aligned? */
207 tst REG_TMP1,REG_DST
211 tst REG_TMP1,REG_LEN
263 tst REG_TMP1,REG_DST /* if (dst & 1) { */
266 tst REG_TMP1,REG_DST
269 tst REG_TMP1,REG_DST
278 tst #3,REG_PTR /* if (ptr & 3) { */
281 tst #
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dloop2.C24 extern int tst (const char *, const char *) throw();
29 if (tst (hi.d(), x) == 0)
/openbsd-current/gnu/usr.bin/binutils/gdb/config/djgpp/
H A Ddjcheck.sh27 > ${base}.tst
28 if diff --binary -u ${base}.out ${base}.tst ; then
29 rm -f ${base}.tst
/openbsd-current/lib/libc/arch/sh/sys/
H A Dtfork_thread.S30 tst r0, r0
H A Dsigprocmask.S42 tst r2, r2 /* check new sigset pointer */
53 tst r2, r2 /* test if old mask requested */
/openbsd-current/lib/libcurses/base/
H A Dwresize.c67 WINDOW *tst = &(wp->win); local
69 if (tst->_parent == cmp) {
72 if (tst->field > cmp->limit) \
73 tst->field = cmp->limit
79 if (tst->limit + tst->field > cmp->limit) \
80 tst->limit = (NCURSES_SIZE_T) (cmp->limit - tst->field)
86 if (tst->field > tst
[all...]
/openbsd-current/regress/lib/libz/
H A DMakefile40 .for tst in 0 1 2 3 4 5 6
42 REGRESS_TARGETS+= run-utils_unittest-${tst}
44 run-utils_unittest-${tst}: utils_unittest
45 ./utils_unittest ${tst}
/openbsd-current/sys/lib/libkern/arch/arm/
H A Ddivsi3.S104 * We abuse this below in the tst instructions.
106 tst r1, r0 /*, lsl #0 */
108 tst r1, r0, lsl #1
110 tst r1, r0, lsl #2
112 tst r1, r0, lsl #3
114 tst r1, r0, lsl #4
116 tst r1, r0, lsl #5
118 tst r1, r0, lsl #6
120 tst r1, r0, lsl #7
122 tst r
[all...]
/openbsd-current/lib/libc/arch/arm/gen/
H A Ddivsi3.S107 * We abuse this below in the tst instructions.
109 tst r1, r0 /*, lsl #0 */
111 tst r1, r0, lsl #1
113 tst r1, r0, lsl #2
115 tst r1, r0, lsl #3
117 tst r1, r0, lsl #4
119 tst r1, r0, lsl #5
121 tst r1, r0, lsl #6
123 tst r1, r0, lsl #7
125 tst r
[all...]
/openbsd-current/sys/arch/sh/sh/
H A Din_cksum.S101 tst reg_len,reg_len
104 tst reg_m,reg_m
108 tst reg_mlen,reg_mlen
121 tst #1,reg_tmp0
133 tst #2,reg_tmp0
169 tst #1,r0
178 tst reg_len,reg_len
183 tst reg_byte_swapped,reg_byte_swapped
/openbsd-current/lib/libc/arch/sparc64/sys/
H A Dsigprocmask.S52 tst %o2 /* check to see if oset requested */
/openbsd-current/regress/sys/kern/ptrace2/
H A Datf-c.h54 #define ATF_TP_ADD_TCS(tp) int atf_test(int tst, int what)
55 #define ATF_TP_ADD_TC(tp, fn) tst--; \
56 if (tst == 0) { \
62 #define atf_no_error() (-tst)
/openbsd-current/regress/lib/libm/msun/
H A Datf-c.h57 #define ATF_TP_ADD_TCS(tp) int atf_test(int tst, int what)
58 #define ATF_TP_ADD_TC(tp, fn) tst--; \
59 if (tst == 0) { \
69 #define atf_no_error() (-tst)
/openbsd-current/regress/lib/libc/sys/
H A Datf-c.h52 #define ATF_TP_ADD_TCS(tp) int atf_test(int tst, int what)
53 #define ATF_TP_ADD_TC(tp, fn) tst--; \
54 if (tst == 0) { \
64 #define atf_no_error() (-tst)
/openbsd-current/regress/lib/libc/cephes/
H A Dieetst.c438 void chkinternal( ref, tst, string )
439 unsigned short ref[], tst[];
443 if( ecmp(ref,tst) != 0 )
446 chkid( ref, tst, string );
472 void chkscan( ref, tst, string )
473 unsigned short ref[], tst[];
477 if( ecmp( ref, tst ) != 0 )
480 pvec( tst, NE );
492 void chkprint( ref, tst, string )
493 unsigned short ref[], tst[];
[all...]

Completed in 297 milliseconds

12345