Home
last modified time | relevance | path

Searched refs:t0 (Results 1 – 25 of 61) sorted by relevance

123

/onnv-gate/usr/src/uts/i86pc/os/
H A Dmlsetup.c264 t0.t_stk = (caddr_t)rp - MINFRAME; in mlsetup()
265 t0.t_stkbase = t0stack; in mlsetup()
266 t0.t_pri = maxclsyspri - 3; in mlsetup()
267 t0.t_schedflag = TS_LOAD | TS_DONT_SWAP; in mlsetup()
268 t0.t_procp = &p0; in mlsetup()
269 t0.t_plockp = &p0lock.pl_lock; in mlsetup()
270 t0.t_lwp = &lwp0; in mlsetup()
271 t0.t_forw = &t0; in mlsetup()
272 t0.t_back = &t0; in mlsetup()
273 t0.t_next = &t0; in mlsetup()
[all …]
/onnv-gate/usr/src/common/openssl/crypto/aes/
H A Daes_core.c900 u32 s0, s1, s2, s3, t0, t1, t2, t3; in AES_encrypt() local
918 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4]; in AES_encrypt()
923 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[ 8]; in AES_encrypt()
924 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9]; in AES_encrypt()
925 s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[10]; in AES_encrypt()
926 s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11]; in AES_encrypt()
928 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12]; in AES_encrypt()
933 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[16]; in AES_encrypt()
934 s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[17]; in AES_encrypt()
935 s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[18]; in AES_encrypt()
[all …]
/onnv-gate/usr/src/uts/sun4/os/
H A Dmlsetup.c147 t0.t_stk = (caddr_t)rp - REGOFF; in mlsetup()
149 t0.t_stkbase = t0stack; in mlsetup()
150 t0.t_pri = maxclsyspri - 3; in mlsetup()
151 t0.t_schedflag = TS_LOAD | TS_DONT_SWAP; in mlsetup()
152 t0.t_procp = &p0; in mlsetup()
153 t0.t_plockp = &p0lock.pl_lock; in mlsetup()
154 t0.t_lwp = &lwp0; in mlsetup()
155 t0.t_forw = &t0; in mlsetup()
156 t0.t_back = &t0; in mlsetup()
157 t0.t_next = &t0; in mlsetup()
[all …]
/onnv-gate/usr/src/common/crypto/sha1/amd64/
H A Dsha1-x86_64.pl50 my ($code, $ctx, $inp, $num, $xi, $t0, $t1, $i, @V, $A, $B, $C, $D, $E, $T);
71 $t0="%ebx";
129 mov $c,$t0
132 xor $d,$t0
135 and $b,$t0
138 xor $d,$t0
140 add $t0,$f
145 mov $c,$t0
148 xor $d,$t0
151 and $b,$t0
[all …]
/onnv-gate/usr/src/lib/libsqlite/test/
H A Dlaststmtchanges.test34 create table t0 (x);
35 insert into t0 values (1);
36 insert into t0 values (1);
37 insert into t0 values (2);
38 insert into t0 values (2);
39 insert into t0 values (1);
40 insert into t0 values (1);
41 insert into t0 values (1);
42 insert into t0 values (2);
50 update t0 set x=3 where x=1;
[all …]
H A Dconflict.test39 # t0 True if there is an error from $cmd
43 foreach {i conf cmd t0 t1 t2} {
77 } [list $t0 $t1 $t2]
97 # t0 True if there is an error from $cmd
101 foreach {i conf cmd t0 t1 t2} {
135 } [list $t0 $t1 $t2]
155 # t0 True if there is an error from $cmd
159 foreach {i conf cmd t0 t1 t2} {
193 } [list $t0 $t1 $t2]
210 # t0 True if there is an error from $cmd
[all …]
H A Dmemdb.test165 # t0 True if there is an error from $cmd
169 foreach {i conf cmd t0 t1 t2} {
203 } [list $t0 $t1 $t2]
227 # t0 True if there is an error from $cmd
231 foreach {i conf1 conf2 cmd t0 t1 t2} {
259 if {$t0} {set t1 {column a is not unique}}
277 } [list $t0 $t1 $t2]
/onnv-gate/usr/src/common/openssl/crypto/des/
H A Dqud_cksm.c79 DES_LONG z0,z1,t0,t1; in DES_quad_cksum() local
107 t0= (DES_LONG)(*(cp++)); in DES_quad_cksum()
108 t0|=(DES_LONG)Q_B1(*(cp++)); in DES_quad_cksum()
112 t0= (DES_LONG)(*(cp++)); in DES_quad_cksum()
115 t0+=z0; in DES_quad_cksum()
116 t0&=0xffffffffL; in DES_quad_cksum()
119 z0=((((t0*t0)&0xffffffffL)+((t1*t1)&0xffffffffL)) in DES_quad_cksum()
121 z1=((t0*((t1+NOISE)&0xffffffffL))&0xffffffffL)%0x7fffffffL; in DES_quad_cksum()
H A Dede_cbcm_enc.c141 register DES_LONG t0,t1; in DES_ede3_cbcm_encrypt() local
158 t0=tin0; in DES_ede3_cbcm_encrypt()
184 xor0=t0; in DES_ede3_cbcm_encrypt()
H A Ddes_enc.c353 register DES_LONG t0,t1; in DES_ede3_cbc_encrypt() local
362 t0=tin0; in DES_ede3_cbc_encrypt()
375 xor0=t0; in DES_ede3_cbc_encrypt()
383 t0=tin0; in DES_ede3_cbc_encrypt()
395 xor0=t0; in DES_ede3_cbc_encrypt()
/onnv-gate/usr/src/common/net/wanboot/crypt/
H A Daes.c765 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; in aes_encrypt() local
819 #define ssr0 (Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] \ in aes_encrypt()
822 ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff]) in aes_encrypt()
824 ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff]) in aes_encrypt()
825 #define ssr3 (Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] \ in aes_encrypt()
829 t0 = tsr0 ^ rk[4]; in aes_encrypt()
839 t0 = tsr0 ^ rk[12]; in aes_encrypt()
849 t0 = tsr0 ^ rk[20]; in aes_encrypt()
859 t0 = tsr0 ^ rk[28]; in aes_encrypt()
869 t0 = tsr0 ^ rk[36]; in aes_encrypt()
[all …]
/onnv-gate/usr/src/cmd/csh/
H A Dsh.time.c23 void pdeltat(struct timeval *t1, struct timeval *t0);
24 void tvadd(struct timeval *tsum, struct timeval *t0);
25 void tvsub(struct timeval *tdiff, struct timeval *t1, struct timeval *t0);
222 pdeltat(struct timeval *t1, struct timeval *t0) in pdeltat() argument
229 tvsub(&td, t1, t0); in pdeltat()
235 tvadd(struct timeval *tsum, struct timeval *t0) in tvadd() argument
241 tsum->tv_sec += t0->tv_sec; in tvadd()
242 tsum->tv_usec += t0->tv_usec; in tvadd()
250 tvsub(struct timeval *tdiff, struct timeval *t1, struct timeval *t0) in tvsub() argument
256 tdiff->tv_sec = t1->tv_sec - t0->tv_sec; in tvsub()
[all …]
/onnv-gate/usr/src/common/crypto/ecc/
H A Decp_jac.c246 mp_int t0, t1, M, S; in ec_GFp_pt_dbl_jac() local
248 MP_DIGITS(&t0) = 0; in ec_GFp_pt_dbl_jac()
252 MP_CHECKOK(mp_init(&t0, FLAG(px))); in ec_GFp_pt_dbl_jac()
264 MP_CHECKOK(group->meth->field_sqr(px, &t0, group->meth)); in ec_GFp_pt_dbl_jac()
265 MP_CHECKOK(group->meth->field_add(&t0, &t0, &M, group->meth)); in ec_GFp_pt_dbl_jac()
266 MP_CHECKOK(group->meth->field_add(&t0, &M, &t0, group->meth)); in ec_GFp_pt_dbl_jac()
268 field_add(&t0, &group->curvea, &M, group->meth)); in ec_GFp_pt_dbl_jac()
272 MP_CHECKOK(group->meth->field_add(px, &M, &t0, group->meth)); in ec_GFp_pt_dbl_jac()
274 MP_CHECKOK(group->meth->field_mul(&t0, &t1, &M, group->meth)); in ec_GFp_pt_dbl_jac()
275 MP_CHECKOK(group->meth->field_add(&M, &M, &t0, group->meth)); in ec_GFp_pt_dbl_jac()
[all …]
H A Decp_jm.c69 mp_int *t0, *t1, *M, *S; in ec_GFp_pt_dbl_jm() local
71 t0 = &scratch[0]; in ec_GFp_pt_dbl_jm()
89 MP_CHECKOK(group->meth->field_sqr(px, t0, group->meth)); in ec_GFp_pt_dbl_jm()
90 MP_CHECKOK(group->meth->field_add(t0, t0, M, group->meth)); in ec_GFp_pt_dbl_jm()
91 MP_CHECKOK(group->meth->field_add(t0, M, t0, group->meth)); in ec_GFp_pt_dbl_jm()
92 MP_CHECKOK(group->meth->field_add(t0, paz4, M, group->meth)); in ec_GFp_pt_dbl_jm()
99 MP_CHECKOK(group->meth->field_sqr(py, t0, group->meth)); in ec_GFp_pt_dbl_jm()
100 MP_CHECKOK(group->meth->field_add(t0, t0, t0, group->meth)); in ec_GFp_pt_dbl_jm()
101 MP_CHECKOK(group->meth->field_sqr(t0, t1, group->meth)); in ec_GFp_pt_dbl_jm()
105 MP_CHECKOK(group->meth->field_mul(px, t0, S, group->meth)); in ec_GFp_pt_dbl_jm()
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/t/
H A Dexpmod_t.t47 my $t0;
49 $t0 = time;
50 $DEBUG and print "# $t0\n";
55 my $diff = $until - (time() - $t0);
85 $DEBUG and print "# ", time()-$t0, "\n";
/onnv-gate/usr/src/cmd/fm/fmd/common/
H A Dfmd_time.c86 hrtime_t t0, t1, delta; in fmd_time_sync() local
89 t0 = ftop->fto_gethrtime(); in fmd_time_sync()
92 delta = t1 - t0; in fmd_time_sync()
96 hrtbase = t0 + delta / 2; in fmd_time_sync()
194 hrtime_t t0, mask; in fmd_time_ena2hrt() local
198 t0 = (ena & ENA_FMT1_TIME_MASK) >> ENA_FMT1_TIME_SHFT; in fmd_time_ena2hrt()
200 if (((hrt - t0) & ((mask + 1) >> 1)) == 0) in fmd_time_ena2hrt()
201 hrt -= (hrt - t0) & mask; in fmd_time_ena2hrt()
204 t0 = (ena & ENA_FMT2_TIME_MASK) >> ENA_FMT2_TIME_SHFT; in fmd_time_ena2hrt()
206 if (((hrt - t0) & ((mask + 1) >> 1)) == 0) in fmd_time_ena2hrt()
[all …]
/onnv-gate/usr/src/common/openssl/crypto/idea/
H A Didea_lcl.h205 t0=(x1^x3)&0xffff; \
206 idea_mul(t0,t0,*p,ul); p++; \
207 t1=(t0+(x2^x4))&0xffff; \
209 t0+=t1; \
211 x4^=t0; \
212 ul=x2^t0; /* do the swap to x3 */ \
H A Di_cbc.c139 register unsigned long x1,x2,x3,x4,t0,t1,ul; in idea_encrypt() local
160 t0= x3+ *(p++); in idea_encrypt()
166 d[0]=(t0&0xffff)|((x1&0xffff)<<16); in idea_encrypt()
/onnv-gate/usr/src/common/crypto/aes/
H A Daes_impl.c1323 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; in rijndael_encrypt() local
1343 t0 = Te0[s0 >> 24] ^ in rijndael_encrypt()
1373 s0 = Te0[t0 >> 24] ^ in rijndael_encrypt()
1382 Te3[t0 & 0xff] ^ in rijndael_encrypt()
1387 Te2[(t0 >> 8) & 0xff] ^ in rijndael_encrypt()
1392 Te1[(t0 >> 16) & 0xff] ^ in rijndael_encrypt()
1403 s0 = (Te4[(t0 >> 24)] & 0xff000000) ^ in rijndael_encrypt()
1413 (Te4[t0 & 0xff] & 0x000000ff) ^ in rijndael_encrypt()
1419 (Te4[(t0 >> 8) & 0xff] & 0x0000ff00) ^ in rijndael_encrypt()
1425 (Te4[(t0 >> 16) & 0xff] & 0x00ff0000) ^ in rijndael_encrypt()
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/uni/
H A Dfold.t37 my $t0 = ":$a:" =~ /:$a:/ ? 1 : 0;
45 print $t0 && $t1 && $t2 && $t3 && $t4 && $t5 && $t6 && $t7 ?
47 "not ok $i \# - $code - $name - $mapping - $status - $t0 $t1 $t2 $t3 $t4 $t5 $t6 $t7\n";
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Time/HiRes/t/
H A DHiRes.t308 my ($t0, $td);
313 $t0 = gettimeofday();
315 $td = gettimeofday() - $t0;
326 $t0 = gettimeofday();
328 $td = gettimeofday() - $t0;
/onnv-gate/usr/src/cmd/sgs/prof/common/
H A Dprof.c360 float t, t0; in main() local
785 t0 = 0.0; /* Time accumulator. */ in main()
892 t0 += t; /* Accumulate total time. */ in main()
1024 "Time unaccounted for: %.7G\n", t_tot - t0)); in main()
1046 t0 = snymp->tot_sl_time; in main()
1050 t0 = slp->sl_time; in main()
1057 if (t0 == 0.0 && count == 0 && !(flags & F_ZSYMS)) in main()
1074 t += t0; /* move here; compiler bug !! */ in main()
1075 Print("%6.1f%8.2f%8.2f", t0 * t_tot, t0, t); in main()
1081 1000.0*t0/count); in main()
/onnv-gate/usr/src/lib/libc/i386/gen/
H A D_div64.s159 / uint32_t t0, t1, x2;
180 / A_MUL32(y0, q0, t0, t1);
181 / if (t1 > x1 || (t1 == x1 && t0 > x0)) {
183 / A_SUB2(y0, y1, t0, t1);
187 / A_SUB2(t0, t1, x0, x1);
323 movl %ebp, %eax / y0, t0
331 subl %eax,%esi / t0, x0
355 cmpl %esi, %eax / x0, t0
359 subl %ebp,%eax / y0, t0
440 / uint32_t t0, t1, x2;
[all …]
/onnv-gate/usr/src/common/openssl/crypto/bn/
H A Dbn_asm.c472 BN_ULONG ta=(a),tb=(b),t0; \
473 BN_UMULT_LOHI(t0,t1,ta,tb); \
475 t1 = t0+t0; t2 += (t1<t0)?1:0; \
501 BN_ULONG ta=(a),tb=(b),t0; \
503 t0 = ta * tb; \
505 t1 = t0+t0; t2 += (t1<t0)?1:0; \
/onnv-gate/usr/src/common/util/i386/
H A Dmuldiv.s205 / uint32_t t0, t1, x2;
226 / A_MUL32(y0, q0, t0, t1);
227 / if (t1 > x1 || (t1 == x1 && t0 > x0)) {
229 / A_SUB2(y0, y1, t0, t1);
233 / A_SUB2(t0, t1, x0, x1);
369 movl %ebp, %eax / y0, t0
377 subl %eax,%esi / t0, x0
401 cmpl %esi, %eax / x0, t0
405 subl %ebp,%eax / y0, t0
486 / uint32_t t0, t1, x2;
[all …]

123