Home
last modified time | relevance | path

Searched refs:t1 (Results 51 – 75 of 268) sorted by relevance

1234567891011

/illumos-gate/usr/src/test/util-tests/tests/dis/risc-v/
H A Dtst.rv32a.out9 libdis_test+0x20: af a2 63 08 amoswap.w t0,t1,(t2)
10 libdis_test+0x24: 2f 23 7e 0c amoswap.w.aq t1,t2,(t3)
13 libdis_test+0x30: af a2 63 00 amoadd.w t0,t1,(t2)
14 libdis_test+0x34: 2f 23 7e 04 amoadd.w.aq t1,t2,(t3)
17 libdis_test+0x40: af a2 63 20 amoxor.w t0,t1,(t2)
18 libdis_test+0x44: 2f 23 7e 24 amoxor.w.aq t1,t2,(t3)
21 libdis_test+0x50: af a2 63 60 amoand.w t0,t1,(t2)
25 libdis_test+0x60: af a2 63 40 amoor.w t0,t1,(t2)
26 libdis_test+0x64: 2f 23 7e 44 amoor.w.aq t1,t2,(t3)
29 libdis_test+0x70: af a2 63 80 amomin.w t0,t1,(t2)
[all …]
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dselect5.test30 CREATE TABLE t1(x int, y int);
31 COPY t1 FROM 'data1.txt'
36 execsql {SELECT DISTINCT y FROM t1 ORDER BY y}
42 execsql {SELECT y, count(*) FROM t1 GROUP BY y ORDER BY y}
55 SELECT y, count(*) FROM t1 GROUP BY z ORDER BY y
61 SELECT y, count(*) FROM t1 GROUP BY z(y) ORDER BY y
96 SELECT avg(x) FROM t1 WHERE x>100
101 SELECT count(x) FROM t1 WHERE x>100
106 SELECT min(x) FROM t1 WHERE x>100
111 SELECT max(x) FROM t1 WHERE x>100
[all …]
H A Dcopy.test147 COPY t1 FROM 'data6.txt';
157 DELETE FROM t1;
158 COPY t1 FROM 'data6.txt';
169 DELETE FROM t1;
183 DELETE FROM t1;
198 DROP TABLE t1;
201 SELECT * FROM t1;
210 SELECT * FROM t1;
219 SELECT * FROM t1;
228 SELECT * FROM t1;
[all …]
H A Dlock.test36 } {t1}
46 } {0 t1}
50 execsql {SELECT * FROM t1}
53 execsql {SELECT * FROM t1} db2
57 execsql {SELECT * FROM t1} db2
60 execsql {SELECT * FROM t1}
64 execsql {SELECT * FROM t1}
67 catchsql {SELECT * FROM t1} db2
71 catchsql {SELECT * FROM t1}
300 SELECT * FROM t1
[all …]
H A Dmisc3.test28 INSERT INTO t1
30 UPDATE t1 SET b=b||b;
48 DROP TABLE t1;
52 INSERT INTO t1
54 INSERT INTO t1 SELECT a+1, b||b FROM t1;
55 INSERT INTO t1 SELECT a+2, b||b FROM t1;
56 INSERT INTO t1 SELECT a+4, b FROM t1;
57 INSERT INTO t1 SELECT a+8, b FROM t1;
58 INSERT INTO t1 SELECT a+16, b FROM t1;
59 INSERT INTO t1 SELECT a+32, b FROM t1;
[all …]
H A Dinsert2.test36 CREATE TABLE t1(log int, cnt int);
49 catch {execsql {DROP TABLE t1}}
52 INSERT INTO t1
59 SELECT * FROM t1 ORDER BY log;
63 catch {execsql {DROP TABLE t1}}
67 INSERT INTO t1
74 SELECT * FROM t1 ORDER BY log;
78 catch {execsql {DROP TABLE t1}}
81 CREATE INDEX i1 ON t1(log);
82 CREATE INDEX i2 ON t1(cnt);
[all …]
H A Dview.test21 CREATE TABLE t1(a,b,c);
22 INSERT INTO t1 VALUES(1,2,3);
25 SELECT * FROM t1;
69 DROP TABLE t1;
72 } {1 {no such table: main.t1}}
75 CREATE TABLE t1(x,a,b,c);
146 CREATE VIEW v3 AS SELECT a FROM t1 UNION SELECT b FROM t1 ORDER BY b;
153 SELECT a, b FROM t1
164 DROP VIEW t1;
169 SELECT 1 FROM t1 LIMIT 1;
[all …]
H A Dindex.test257 CREATE INDEX i1 ON t1(a);
258 INSERT INTO t1 VALUES(1,2);
259 INSERT INTO t1 VALUES(2,4);
260 INSERT INTO t1 VALUES(3,8);
272 DELETE FROM t1 WHERE b=12;
278 DELETE FROM t1 WHERE b=2;
284 DELETE FROM t1;
306 DELETE FROM t1 WHERE b>2;
312 DELETE FROM t1 WHERE b=1;
497 DELETE FROM t1;
[all …]
H A Dthread1.test32 CREATE TABLE t1(a,b);
33 INSERT INTO t1 VALUES(1,'abcdefgh');
34 INSERT INTO t1 SELECT a+1, b||b FROM t1;
35 INSERT INTO t1 SELECT a+2, b||b FROM t1;
36 INSERT INTO t1 SELECT a+4, b||b FROM t1;
37 SELECT count(*), max(length(b)) FROM t1;
56 thread_compile A {SELECT a FROM t1}
67 thread_compile B {SELECT b FROM t1}
97 } {t1 t2}
112 thread_compile A {SELECT a FROM t1}
[all …]
H A Djoin2.test23 CREATE TABLE t1(a,b);
24 INSERT INTO t1 VALUES(1,11);
25 INSERT INTO t1 VALUES(2,22);
26 INSERT INTO t1 VALUES(3,33);
27 SELECT * FROM t1;
52 t1 NATURAL JOIN t2 NATURAL JOIN t3
58 t1 NATURAL JOIN t2 NATURAL LEFT OUTER JOIN t3
64 t1 NATURAL LEFT OUTER JOIN t2 NATURAL JOIN t3
70 t1 NATURAL LEFT OUTER JOIN (t2 NATURAL JOIN t3)
H A Dlimit.test30 CREATE TABLE t1(x int, y int);
31 COPY t1 FROM 'data1.txt'
36 execsql {SELECT count(*) FROM t1}
39 execsql {SELECT count(*) FROM t1 LIMIT 5}
42 execsql {SELECT x FROM t1 ORDER BY x LIMIT 5}
63 execsql {SELECT * FROM t1 AS a, t1 AS b ORDER BY a.x, b.x LIMIT 5}
66 execsql {SELECT * FROM t1 AS a, t1 AS b ORDER BY a.x, b.x LIMIT 5 OFFSET 32}
71 CREATE VIEW v1 AS SELECT * FROM t1 LIMIT 2;
77 CREATE TABLE t2 AS SELECT * FROM t1 LIMIT 2;
83 SELECT count(*) FROM t1 WHERE rowid IN (SELECT rowid FROM t1 LIMIT 2);
[all …]
H A Dtclsqlite.test40 execsql {CREATE TABLE t1(a int, b int)}
41 execsql {INSERT INTO t1 VALUES(10,20)}
43 db eval {SELECT * FROM t1} data {
59 db eval {SELECT * FROM t1} data {
67 db eval {SELECT * FROM t1} data {
104 INSERT INTO t1 SELECT a*2, b*2 FROM t1;
105 INSERT INTO t1 SELECT a*2+1, b*2+1 FROM t1;
106 INSERT INTO t1 SELECT a*2+3, b*2+3 FROM t1;
108 set rc [catch {db onecolumn {SELECT * FROM t1 ORDER BY a}} msg]
112 db onecolumn {SELECT * FROM t1 WHERE a<0}
H A Dbind.test24 execsql {CREATE TABLE t1(a,b,c)}
25 set VM [sqlite_compile $DB {INSERT INTO t1 VALUES(?,?,?)} TAIL]
32 execsql {SELECT rowid, * FROM t1}
40 execsql {SELECT rowid, * FROM t1}
48 execsql {SELECT rowid, * FROM t1}
56 execsql {DELETE FROM t1}
58 execsql {SELECT rowid, * FROM t1}
64 execsql {SELECT rowid, * FROM t1}
H A Dmemdb.test164 # t1 Content of "c" column of t1 assuming no error in $cmd
190 DELETE FROM t1;
201 } [list $t0 $t1 $t2]
226 # t1 Content of "b" column of t1 assuming no error in $cmd
262 DROP TABLE t1;
268 $cmd t1 SET b=b*2;
275 } [list $t0 $t1 $t2]
289 } {t1 t3 t4}
295 } {t1 t2 t3 t4}
329 } {t1 t2 t3 t4 t5}
[all …]
/illumos-gate/usr/src/cmd/acct/lib/
H A Dtmless.c37 tmless(t1, t2) in tmless() argument
38 register struct tm *t1, *t2; in tmless()
40 if (t1->tm_hour != t2->tm_hour)
41 return(t1->tm_hour < t2->tm_hour);
42 if (t1->tm_min != t2->tm_min)
43 return(t1->tm_min < t2->tm_min);
44 return(t1->tm_sec < t2->tm_sec);
H A Dtmsecs.c35 tmsecs(t1, t2) in tmsecs() argument
36 register struct tm *t1, *t2; in tmsecs()
38 return((t2->tm_sec - t1->tm_sec) +
39 60*(t2->tm_min - t1->tm_min) +
40 3600L*(t2->tm_hour - t1->tm_hour));
/illumos-gate/usr/src/lib/librstp/common/
H A Dtimes.c28 STP_compare_times (IN TIMEVALUES_T *t1, IN TIMEVALUES_T *t2) in STP_compare_times() argument
30 if (t1->MessageAge < t2->MessageAge) return -1; in STP_compare_times()
31 if (t1->MessageAge > t2->MessageAge) return 1; in STP_compare_times()
33 if (t1->MaxAge < t2->MaxAge) return -2; in STP_compare_times()
34 if (t1->MaxAge > t2->MaxAge) return 2; in STP_compare_times()
36 if (t1->ForwardDelay < t2->ForwardDelay) return -3; in STP_compare_times()
37 if (t1->ForwardDelay > t2->ForwardDelay) return 3; in STP_compare_times()
39 if (t1->HelloTime < t2->HelloTime) return -4; in STP_compare_times()
40 if (t1->HelloTime > t2->HelloTime) return 4; in STP_compare_times()
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dtgamma.c1253 t1 = y + z; in large_gam()
1255 r = one / t1; in large_gam()
1256 t1 = (double) ((float) t1); in large_gam()
1268 t2 = t5 + r * ((two * t2 - v * t1) - v * (y - (t1 - z))); in large_gam()
1287 t1 += t2; in large_gam()
1301 w_h = t1 + w_l; in large_gam()
1340 t1 = z * x; in kpsin()
1342 t4 = t1 * ks[0]; in kpsin()
1380 t2 = npi_2_l * z + npi_2_h * (x + t1) * (x - t1); in kpcos()
1383 t4 = t1 * t1; /* 48 bits mantissa */ in kpcos()
[all …]
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Drpc_sel2poll.c105 int t1, tmp; in __rpc_timeval_to_msec() local
112 t1 = -tmp; in __rpc_timeval_to_msec()
113 t1 += t1 << 1; in __rpc_timeval_to_msec()
114 t1 += tmp << 7; in __rpc_timeval_to_msec()
116 t1 += t->tv_usec / 1000; in __rpc_timeval_to_msec()
118 return (t1); in __rpc_timeval_to_msec()
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dstrcoll.c53 wchar_t *t1 = NULL, *t2 = NULL; in strcoll_l() local
73 if ((t1 = malloc(sz1 * sizeof (wchar_t))) == NULL) in strcoll_l()
75 w1 = t1; in strcoll_l()
96 if (t1) in strcoll_l()
97 free(t1); in strcoll_l()
104 if (t1) in strcoll_l()
105 free(t1); in strcoll_l()
/illumos-gate/usr/src/common/crypto/ecc/
H A Dec2_mont.c63 mp_int t1; in gf2m_Mdouble() local
65 MP_DIGITS(&t1) = 0; in gf2m_Mdouble()
66 MP_CHECKOK(mp_init(&t1, kmflag)); in gf2m_Mdouble()
72 MP_CHECKOK(group->meth->field_sqr(&t1, &t1, group->meth)); in gf2m_Mdouble()
74 field_mul(&group->curveb, &t1, &t1, group->meth)); in gf2m_Mdouble()
78 mp_clear(&t1); in gf2m_Mdouble()
91 mp_int t1, t2; in gf2m_Madd() local
93 MP_DIGITS(&t1) = 0; in gf2m_Madd()
95 MP_CHECKOK(mp_init(&t1, kmflag)); in gf2m_Madd()
98 MP_CHECKOK(mp_copy(x, &t1)); in gf2m_Madd()
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.ripngd/
H A Dmain.c63 static void timevalsub(struct timeval *t1, struct timeval *t2);
296 timevaladd(struct timeval *t1, struct timeval *t2) in timevaladd() argument
298 t1->tv_sec += t2->tv_sec; in timevaladd()
299 if ((t1->tv_usec += t2->tv_usec) > 1000000) { in timevaladd()
300 t1->tv_sec++; in timevaladd()
301 t1->tv_usec -= 1000000; in timevaladd()
306 timevalsub(struct timeval *t1, struct timeval *t2) in timevalsub() argument
308 t1->tv_sec -= t2->tv_sec; in timevalsub()
309 if ((t1->tv_usec -= t2->tv_usec) < 0) { in timevalsub()
310 t1->tv_sec--; in timevalsub()
[all …]
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/
H A Dillumos_13434_chunked_heredoc.sh132 t1=`mktemp`
134 if [[ ! -f "$t1" || ! -f "$t2" ]]; then
141 cat > "$t1" << EOF
148 if ! cmp -s "$t1" "$t2"; then
154 rm -f "$t1" "$t2"
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vatan2f.c56 double t0, t1, t2; in __vatan2f() local
430 t1 = num1 / den1; in __vatan2f()
434 sx1 = t1 * t1; in __vatan2f()
438 t1 += t1 * sx1 * (q1 + sx1 * q2); in __vatan2f()
442 t1 += ah1; in __vatan2f()
446 *pz1 = sign1 * t1; in __vatan2f()
458 t1 = (y1 - x1 * (double)base1) / in __vatan2f()
460 sx1 = t1 * t1; in __vatan2f()
461 t1 += t1 * sx1 * (q1 + sx1 * q2); in __vatan2f()
462 t1 += ah1; in __vatan2f()
[all …]
/illumos-gate/usr/src/cmd/crypt/
H A Dcrypt.c46 char t1[ROTORSZ]; variable
77 t1[i] = i;
86 temp = t1[k];
87 t1[k] = t1[ic];
88 t1[ic] = temp;
96 t2[t1[i]&MASK] = i;
169 *p1 = t2[(t3[(t1[(*p1 + n1)&MASK]+ in main()
189 i = t2[(t3[(t1[(i+n1)&MASK]+n2)&MASK]-n2)&MASK]-n1; in main()

1234567891011