Searched refs:t1 (Results 1 - 25 of 252) sorted by relevance

1234567891011

/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dtimeval.c46 * Make `t1' consistent.
50 timevalfix(struct timeval *t1) argument
52 if (t1->tv_usec < 0) {
53 t1->tv_sec--;
54 t1->tv_usec += 1000000;
56 if (t1->tv_usec >= 1000000) {
57 t1->tv_sec++;
58 t1->tv_usec -= 1000000;
63 * t1 += t2
67 timevaladd(struct timeval *t1, cons argument
79 timevalsub(struct timeval *t1, const struct timeval *t2) argument
[all...]
/freebsd-9.3-release/lib/libkse/thread/
H A Dthr_equal.c40 _pthread_equal(pthread_t t1, pthread_t t2) argument
43 return (t1 == t2);
/freebsd-9.3-release/lib/libthr/thread/
H A Dthr_equal.c39 _pthread_equal(pthread_t t1, pthread_t t2) argument
42 return (t1 == t2);
/freebsd-9.3-release/usr.bin/ktrace/
H A Dsubr.c100 timevaladd(struct timeval *t1, struct timeval *t2) argument
102 t1->tv_sec += t2->tv_sec;
103 t1->tv_usec += t2->tv_usec;
104 timevalfix(t1);
108 timevalsub(struct timeval *t1, struct timeval *t2) argument
110 t1->tv_sec -= t2->tv_sec;
111 t1->tv_usec -= t2->tv_usec;
112 timevalfix(t1);
116 timevalfix(struct timeval *t1) argument
118 if (t1
[all...]
/freebsd-9.3-release/lib/libproc/test/t1-bkpt/
H A DMakefile3 PROG= t1-bkpt
5 SRCS= t1-bkpt.c
/freebsd-9.3-release/tools/regression/sockets/unix_cmsg/
H A Dunix_cmsg.t26 for t1 in \
40 run ${n} stream "-z ${t2%% *}" STREAM "${t1} ${t2#* }"
44 for t1 in \
53 run ${n} stream "-z ${t2%% *}" STREAM "${t1} ${t2#* }"
60 for t1 in \
74 run ${n} dgram "-z ${t2%% *}" DGRAM "${t1} ${t2#* }"
78 for t1 in \
86 run ${n} dgram "-z ${t2%% *}" DGRAM "${t1} ${t2#* }"
/freebsd-9.3-release/sys/rpc/
H A Drpcm_subs.h96 { t1 = mtod(md, caddr_t)+md->m_len-dpos; \
97 if (t1 >= (s)) { \
100 } else if ((t1 = rpcm_disct(&md, &dpos, (s), t1, &cp2)) != 0){ \
101 error = t1; \
110 (t1 = rpcm_mbuftouio(&md,(p),(s),&dpos)) != 0) { \
111 error = t1; \
119 { t1 = mtod(md, caddr_t)+md->m_len-dpos; \
120 if (t1 >= (s)) { \
122 } else if ((t1
[all...]
/freebsd-9.3-release/sys/nfsclient/
H A Dnfsm_subs.h95 #define nfsm_bcheck(t1, mreq) \
97 if (t1) { \
98 error = t1; \
106 int32_t t1; \
107 t1 = nfsm_fhtom_xx((v), (v3), &mb, &bpos); \
108 nfsm_bcheck(t1, mreq); \
117 int t1; \
118 t1 = nfsm_uiotombuf((p), &mb, (s), &bpos); \
119 nfsm_bcheck(t1, mreq); \
124 int t1; \
[all...]
/freebsd-9.3-release/lib/msun/src/
H A De_hypot.c33 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
34 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
57 double a=x,b=y,t1,t2,y1,y2,w; local
90 t1=0;
91 SET_HIGH_WORD(t1,0x7fd00000); /* t1=2^1022 */
92 b *= t1;
93 a *= t1;
[all...]
H A De_hypotl.c66 long double a=x,b=y,t1,t2,y1,y2,w; local
100 t1=0;
101 SET_HIGH_WORD(t1,ESW(MAX_EXP-2)); /* t1=2^(MAX_EXP-2) */
102 b *= t1;
103 a *= t1;
116 t1 = a;
118 uv.e = t1; uv.bits.manl = 0; t1 = uv.e;
119 t2 = a-t1;
[all...]
H A De_hypotf.c25 float a=x,b=y,t1,t2,y1,y2,w; local
53 SET_FLOAT_WORD(t1,0x7e800000); /* t1=2^126 */
54 b *= t1;
55 a *= t1;
68 SET_FLOAT_WORD(t1,ha&0xfffff000);
69 t2 = a-t1;
70 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
[all...]
/freebsd-9.3-release/sys/mips/rmi/
H A Dmpwait.S46 PTR_LA t1, _C_LABEL(xlr_ap_release)
50 add t1, t2
52 1: lw t0, 0(t1)
65 PTR_LA t1, _C_LABEL(mpentry)
66 jr t1
/freebsd-9.3-release/lib/libc/mips/string/
H A Dstrcmp.S53 lbu t1, 0(a1)
55 bne t0, t1, NotEq
57 lbu t1, 1(a1)
61 beq t0, t1, 1b
63 subu v0, t0, t1
66 subu v0, zero, t1
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/
H A Dconstructors_destructor_fn_imps.hpp63 PB_DS_CLASS_NAME(T0 t0, T1 t1) : base_type(t0, t1) argument
68 PB_DS_CLASS_NAME(T0 t0, T1 t1, T2 t2) : base_type(t0, t1, t2) argument
73 PB_DS_CLASS_NAME(T0 t0, T1 t1, T2 t2, T3 t3) argument
74 : base_type(t0, t1, t2, t3)
79 PB_DS_CLASS_NAME(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4) argument
80 : base_type(t0, t1, t2, t3, t4)
86 PB_DS_CLASS_NAME(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5) argument
87 : base_type(t0, t1, t
93 PB_DS_CLASS_NAME(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6) argument
100 PB_DS_CLASS_NAME(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7) argument
107 PB_DS_CLASS_NAME(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8) argument
[all...]
/freebsd-9.3-release/lib/libproc/test/
H A DMakefile3 SUBDIR= t1-bkpt t2-name2map t3-name2sym
/freebsd-9.3-release/sys/nfsserver/
H A Dnfsm_subs.h83 int t1; \
84 t1 = nfsm_srvstrsiz_xx(&(s), (m), &md, &dpos); \
85 if (t1) { \
86 error = t1; \
93 int t1; \
94 t1 = nfsm_srvnamesiz_xx(&(s), NFS_MAXNAMLEN, &md, &dpos); \
95 if (t1) { \
96 error = t1; \
103 int t1; \
104 t1
[all...]
/freebsd-9.3-release/crypto/openssh/
H A Dsmult_curve25519_ref.c191 unsigned int t1[32]; local
195 /* 4 */ square(t1,z2);
196 /* 8 */ square(t0,t1);
203 /* 2^7 - 2^2 */ square(t1,t0);
204 /* 2^8 - 2^3 */ square(t0,t1);
205 /* 2^9 - 2^4 */ square(t1,t0);
206 /* 2^10 - 2^5 */ square(t0,t1);
210 /* 2^12 - 2^2 */ square(t1,t0);
211 /* 2^20 - 2^10 */ for (i = 2;i < 10;i += 2) { square(t0,t1); square(t1,t
[all...]
H A Dfe25519.c132 fe25519 t1 = *x; local
134 fe25519_freeze(&t1);
137 if(t1.v[i] != t2.v[i]) return 0;
229 fe25519 t1; local
233 /* 4 */ fe25519_square(&t1,&z2);
234 /* 8 */ fe25519_square(&t0,&t1);
241 /* 2^7 - 2^2 */ fe25519_square(&t1,&t0);
242 /* 2^8 - 2^3 */ fe25519_square(&t0,&t1);
243 /* 2^9 - 2^4 */ fe25519_square(&t1,&t0);
244 /* 2^10 - 2^5 */ fe25519_square(&t0,&t1);
[all...]
/freebsd-9.3-release/sys/nfs/
H A Dnfs_common.h69 #define nfsm_dcheck(t1, mrep) \
71 if (t1 != 0) { \
72 error = t1; \
107 int t1; \
108 t1 = nfsm_strsiz_xx(&(s), (m), &md, &dpos); \
109 nfsm_dcheck(t1, mrep); \
114 int32_t t1 = 0; \
116 t1 = nfsm_mbuftouio(&md, (p), (s), &dpos); \
117 nfsm_dcheck(t1, mrep); \
124 int t1; \
[all...]
/freebsd-9.3-release/tools/regression/tls/ttls2/
H A Dttls2.c30 pthread_t t1, t2; local
32 pthread_create(&t1, 0, foo1, 0);
34 pthread_join(t1, 0);
/freebsd-9.3-release/lib/libc/mips/gen/
H A Dldexp.S69 sll t1, v1, 1 # get x exponent
70 srl t1, t1, 32 - 11
71 beq t1, DEXP_INF, 9f # is it a NAN or infinity?
72 beq t1, zero, 1f # zero or denormalized number?
73 addu t1, t1, a2 # scale exponent
75 bge t1, DEXP_INF, 8f # overflow?
77 ble t1, zero, 4f # underflow?
125 li t1, DEXP_MI
[all...]
/freebsd-9.3-release/sys/mips/nlm/
H A Dmpreset.S50 li t1, 0x80000
51 and t1, t0, t1
52 bnez t1, nmi_handler
60 li t1, 1
61 sll t0, t1, t0
66 lw t1, 0(t2)
67 and t1, t1, t0
68 sw t1,
[all...]
/freebsd-9.3-release/crypto/openssl/fips/dh/
H A Ddh_gen.c112 BIGNUM *t1, *t2; local
120 t1 = BN_CTX_get(ctx);
122 if (t1 == NULL || t2 == NULL)
136 if (!BN_set_word(t1, 24))
144 if (!BN_set_word(t1, 12))
152 if (!BN_set_word(t1, 10))
166 if (!BN_set_word(t1, 2))
173 if (!BN_generate_prime_ex(ret->p, prime_len, 1, t1, t2, cb))
/freebsd-9.3-release/crypto/openssl/crypto/dh/
H A Ddh_gen.c112 BIGNUM *t1, *t2; local
120 t1 = BN_CTX_get(ctx);
122 if (t1 == NULL || t2 == NULL)
136 if (!BN_set_word(t1, 24))
144 if (!BN_set_word(t1, 12))
152 if (!BN_set_word(t1, 10))
166 if (!BN_set_word(t1, 2))
173 if (!BN_generate_prime_ex(ret->p, prime_len, 1, t1, t2, cb))
/freebsd-9.3-release/crypto/openssl/bugs/
H A Dsgiccbug.c41 register unsigned long t1, t2, *ap, *bp, *rp; local
52 t1 = *(ap++);
54 t1 = (t1 - t2);
56 dummy = t1;
58 *(rp++) = t1 & 0xffffffff;

Completed in 157 milliseconds

1234567891011