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

1234567891011>>

/freebsd-10-stable/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-stable/lib/libkse/thread/
H A Dthr_equal.c40 _pthread_equal(pthread_t t1, pthread_t t2) argument
43 return (t1 == t2);
/freebsd-10-stable/lib/libthr/thread/
H A Dthr_equal.c39 _pthread_equal(pthread_t t1, pthread_t t2) argument
42 return (t1 == t2);
/freebsd-10-stable/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-stable/lib/libproc/test/t1-bkpt/
H A DMakefile3 PROG= t1-bkpt
5 SRCS= t1-bkpt.c
/freebsd-10-stable/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-stable/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-stable/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-stable/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...]
/freebsd-10-stable/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-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_equal.c56 pthread_t t1, t2; local
58 ATF_REQUIRE(pthread_create(&t1, NULL, func, NULL) == 0);
61 ATF_REQUIRE(pthread_equal(t1, t1) != 0);
63 ATF_REQUIRE(pthread_equal(t1, t2) == 0);
65 ATF_REQUIRE(pthread_join(t1, NULL) == 0);
/freebsd-10-stable/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-stable/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-stable/lib/libproc/test/
H A DMakefile3 SUBDIR= t1-bkpt t2-name2map t3-name2sym
/freebsd-10-stable/usr.bin/bmake/tests/basic/
H A DMakefile5 TESTS_SUBDIRS= t0 t1 t2 t3
/freebsd-10-stable/usr.bin/bmake/tests/sysmk/
H A DMakefile5 TESTS_SUBDIRS= t0 t1 t2
/freebsd-10-stable/usr.bin/bmake/tests/sysmk/t1/2/
H A DMakefile3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/sysmk/t1/2
/freebsd-10-stable/usr.bin/bmake/tests/sysmk/t1/
H A DMakefile3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/sysmk/t1
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_time.c52 time_t t1, t2 = 0; local
54 t1 = time(&t2);
56 if (t1 != t2)
69 time_t t1, t2; local
74 t1 = time(NULL);
79 (int64_t)t1, (int64_t)t2);
81 if (t1 >= t2)
95 time_t t1, t2; local
97 t1 = time(NULL);
102 (int64_t)t1, (int64_
[all...]
/freebsd-10-stable/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-stable/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...]
/freebsd-10-stable/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...]
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/string/
H A Dt_strcat.c25 unsigned int a0, a1, t0, t1; local
89 for (t1 = 0; t1 < __arraycount(tab); ++t1) {
93 memcpy(&buf1[a1], tab[t1].val,
94 tab[t1].len + 1);
104 "t0 %d, t1 %d\n",
105 a0, a1, t0, t1);
113 tab[t1].len + 1) != 0) {
115 "t0 %d, t1
[all...]

Completed in 245 milliseconds

1234567891011>>