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

1234567891011

/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dtimeval.c43 * Make `t1' consistent.
47 timevalfix(struct timeval *t1) argument
49 if (t1->tv_usec < 0) {
50 t1->tv_sec--;
51 t1->tv_usec += 1000000;
53 if (t1->tv_usec >= 1000000) {
54 t1->tv_sec++;
55 t1->tv_usec -= 1000000;
60 * t1 += t2
64 timevaladd(struct timeval *t1, cons argument
76 timevalsub(struct timeval *t1, const struct timeval *t2) argument
[all...]
/freebsd-10.0-release/lib/libkse/thread/
H A Dthr_equal.c40 _pthread_equal(pthread_t t1, pthread_t t2) argument
43 return (t1 == t2);
/freebsd-10.0-release/lib/libthr/thread/
H A Dthr_equal.c39 _pthread_equal(pthread_t t1, pthread_t t2) argument
42 return (t1 == t2);
/freebsd-10.0-release/usr.bin/ktrace/
H A Dsubr.c103 timevaladd(struct timeval *t1, struct timeval *t2) argument
105 t1->tv_sec += t2->tv_sec;
106 t1->tv_usec += t2->tv_usec;
107 timevalfix(t1);
111 timevalsub(struct timeval *t1, struct timeval *t2) argument
113 t1->tv_sec -= t2->tv_sec;
114 t1->tv_usec -= t2->tv_usec;
115 timevalfix(t1);
119 timevalfix(struct timeval *t1) argument
121 if (t1
[all...]
/freebsd-10.0-release/lib/libproc/test/t1-bkpt/
H A DMakefile3 PROG= t1-bkpt
5 SRCS= t1-bkpt.c
/freebsd-10.0-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-10.0-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-10.0-release/sys/nfsclient/
H A Dnfsm_subs.h67 #define nfsm_bcheck(t1, mreq) \
69 if (t1) { \
70 error = t1; \
78 int32_t t1; \
79 t1 = nfsm_fhtom_xx((v), (v3), &mb, &bpos); \
80 nfsm_bcheck(t1, mreq); \
89 int t1; \
90 t1 = nfsm_uiotombuf((p), &mb, (s), &bpos); \
91 nfsm_bcheck(t1, mreq); \
96 int t1; \
[all...]
/freebsd-10.0-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,b,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.c51 long double a=x,b=y,t1,t2,y1,y2,w; local
85 t1=0;
86 SET_HIGH_WORD(t1,ESW(MAX_EXP-2)); /* t1=2^(MAX_EXP-2) */
87 b *= t1;
88 a *= t1;
101 t1 = a;
103 uv.e = t1; uv.bits.manl = 0; t1 = uv.e;
104 t2 = a-t1;
[all...]
H A De_hypotf.c25 float a,b,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...]
H A Dk_logf.h29 float hfsq,s,z,R,w,t1,t2; local
34 t1= w*(Lg2+w*Lg4);
36 R = t2+t1;
/freebsd-10.0-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-10.0-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-10.0-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-10.0-release/lib/libproc/test/
H A DMakefile3 SUBDIR= t1-bkpt t2-name2map t3-name2sym
/freebsd-10.0-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-10.0-release/crypto/openssl/crypto/sha/asm/
H A Dsha1-thumb.pl29 $t1="r1";
45 ldr $t1,[$t0]
51 add $t2,$t1 @ E+=X[i]
62 add $a,$t2,$t1 @ A=E+F_xx_xx(B,C,D)
69 mov $t1,$c
70 eor $t1,$d
71 and $t1,$b
72 eor $t1,$d @ F_00_19(B,C,D)
80 mov $t1,$b
81 eor $t1,
[all...]
H A Dsha512-armv4.pl55 $t1="r10";
80 mov $t1,$Ehi,lsr#14
84 eor $t1,$t1,$Elo,lsl#18
87 eor $t1,$t1,$Ehi,lsr#18
89 eor $t1,$t1,$Elo,lsl#14
91 eor $t1,$t1,
[all...]
/freebsd-10.0-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-10.0-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-10.0-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-10.0-release/sys/mips/nlm/
H A Dmpreset.S86 li t1, 0x80000
87 and t1, t0, t1
88 bnez t1, nmi_handler
96 li t1, 1
97 sll t0, t1, t0
102 lw t1, 0(t2)
103 and t1, t1, t0
104 sw t1,
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/wind/
H A Dcombining.c43 const struct translation *t1 = (const struct translation *)key; local
46 return t1->key - t2->key;
/freebsd-10.0-release/contrib/sendmail/libsm/
H A Db-strl.c69 struct timeval t1, t2;
113 if (gettimeofday(&t1, NULL) < 0)
122 printf("\tstrlcat() result: %ld seconds\n", one = toseconds(t2, t1));
124 if (gettimeofday(&t1, NULL) < 0)
133 printf("\tsm_strlcat() result: %ld seconds\n", two = toseconds(t2, t1));
154 if (gettimeofday(&t1, NULL) < 0)
163 printf("\tstrlcpy() result: %ld seconds\n", one = toseconds(t2, t1));
165 if (gettimeofday(&t1, NULL) < 0)
174 printf("\tsm_strlcpy() result: %ld seconds\n", two = toseconds(t2, t1));

Completed in 230 milliseconds

1234567891011