Searched refs:t2 (Results 1 - 25 of 246) sorted by relevance

12345678910

/freebsd-10.3-release/lib/libkse/thread/
H A Dthr_equal.c40 _pthread_equal(pthread_t t1, pthread_t t2) argument
43 return (t1 == t2);
/freebsd-10.3-release/lib/libthr/thread/
H A Dthr_equal.c39 _pthread_equal(pthread_t t1, pthread_t t2) argument
42 return (t1 == t2);
/freebsd-10.3-release/crypto/heimdal/lib/roken/
H A Dtimeval.c60 * t1 += t2
64 timevaladd(struct timeval *t1, const struct timeval *t2) argument
66 t1->tv_sec += t2->tv_sec;
67 t1->tv_usec += t2->tv_usec;
72 * t1 -= t2
76 timevalsub(struct timeval *t1, const struct timeval *t2) argument
78 t1->tv_sec -= t2->tv_sec;
79 t1->tv_usec -= t2->tv_usec;
/freebsd-10.3-release/lib/libproc/test/t2-name2map/
H A DMakefile1 # $FreeBSD: releng/10.3/lib/libproc/test/t2-name2map/Makefile 276486 2014-12-31 23:25:37Z ngie $
3 PROG= t2-name2map
5 SRCS= t2-name2map.c
/freebsd-10.3-release/lib/libc/string/
H A Dstrcoll.c46 const char *t, *t2; local
59 t2 = tt2 = __collate_substitute(table, s2);
63 t2 = s2;
65 while(*t && *t2) {
71 while(*t2 && !prim2) {
72 __collate_lookup(table, t2, &len2, &prim2, &sec2);
73 t2 += len2;
84 if(!*t && *t2)
85 ret = -(int)((u_char)*t2);
86 else if(*t && !*t2)
[all...]
/freebsd-10.3-release/sys/mips/rmi/
H A Dmpwait.S47 mfc0 t2, $15, 1
48 andi t2, 0x1f
49 sll t2, t2, 2
50 add t1, t2
/freebsd-10.3-release/contrib/netbsd-tests/lib/libpthread/
H A Dt_equal.c56 pthread_t t1, t2; local
59 ATF_REQUIRE(pthread_create(&t2, NULL, func, NULL) == 0);
62 ATF_REQUIRE(pthread_equal(t2, t2) != 0);
63 ATF_REQUIRE(pthread_equal(t1, t2) == 0);
66 ATF_REQUIRE(pthread_join(t2, NULL) == 0);
/freebsd-10.3-release/lib/libproc/test/
H A DMakefile3 SUBDIR= t1-bkpt t2-name2map t3-name2sym
/freebsd-10.3-release/usr.bin/bmake/tests/basic/
H A DMakefile5 TESTS_SUBDIRS= t0 t1 t2 t3
/freebsd-10.3-release/usr.bin/bmake/tests/sysmk/
H A DMakefile5 TESTS_SUBDIRS= t0 t1 t2
/freebsd-10.3-release/usr.bin/bmake/tests/sysmk/t2/2/
H A DMakefile1 # $FreeBSD: releng/10.3/usr.bin/bmake/tests/sysmk/t2/2/Makefile 266074 2014-05-14 18:43:13Z jmmv $
3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/sysmk/t2/2
/freebsd-10.3-release/usr.bin/bmake/tests/sysmk/t2/
H A DMakefile1 # $FreeBSD: releng/10.3/usr.bin/bmake/tests/sysmk/t2/Makefile 266074 2014-05-14 18:43:13Z jmmv $
3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/sysmk/t2
/freebsd-10.3-release/contrib/libstdc++/include/ext/pb_ds/detail/
H A Dconstructors_destructor_fn_imps.hpp68 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, t2, t3, t4, t5)
93 PB_DS_CLASS_NAME(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6) argument
94 : base_type(t0, t1, t2, t
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.3-release/lib/msun/src/
H A Dk_logf.h29 float hfsq,s,z,R,w,t1,t2; local
35 t2= z*(Lg1+w*Lg3);
36 R = t2+t1;
H A Dk_log.h90 double hfsq,s,z,R,w,t1,t2; local
96 t2= z*(Lg1+w*(Lg3+w*(Lg5+w*Lg7)));
97 R = t2+t1;
/freebsd-10.3-release/tools/regression/tls/ttls2/
H A Dttls2.c34 pthread_t t1, t2; local
37 pthread_create(&t2, 0, foo2, 0);
39 pthread_join(t2, 0);
/freebsd-10.3-release/usr.bin/bmake/tests/sysmk/t2/mk/
H A DMakefile1 # $FreeBSD: releng/10.3/usr.bin/bmake/tests/sysmk/t2/mk/Makefile 266074 2014-05-14 18:43:13Z jmmv $
3 TESTSDIR= ${TESTSBASE}/usr.bin/bmake/sysmk/t2/mk
/freebsd-10.3-release/crypto/heimdal/lib/wind/
H A Dcombining.c44 const struct translation *t2 = (const struct translation *)data; local
46 return t1->key - t2->key;
/freebsd-10.3-release/tools/regression/sockets/unix_cmsg/
H A Dunix_cmsg.t33 for t2 in \
40 run ${n} stream "-z ${t2%% *}" STREAM "${t1} ${t2#* }"
48 for t2 in \
53 run ${n} stream "-z ${t2%% *}" STREAM "${t1} ${t2#* }"
67 for t2 in \
74 run ${n} dgram "-z ${t2%% *}" DGRAM "${t1} ${t2#* }"
81 for t2 i
[all...]
/freebsd-10.3-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;
111 timevalsub(struct timeval *t1, struct timeval *t2) argument
113 t1->tv_sec -= t2->tv_sec;
114 t1->tv_usec -= t2->tv_usec;
/freebsd-10.3-release/lib/libc/mips/gen/
H A Dldexp.S82 sll t2, v1, 32 - 20 # get x fraction
83 srl t2, t2, 32 - 20
85 bne t2, zero, 1f
89 * Find out how many leading zero bits are in t2,t3 and put in t9.
91 move v0, t2
93 bne t2, zero, 1f
121 * Now shift t2,t3 the correct number of bits.
131 sll t2, t3, t9
136 sll t2, t
[all...]
/freebsd-10.3-release/contrib/netbsd-tests/lib/libc/gen/
H A Dt_time.c54 time_t t1, t2 = 0; local
56 t1 = time(&t2);
58 if (t1 != t2)
71 time_t t1, t2; local
78 t2 = time(NULL);
81 (int64_t)t1, (int64_t)t2);
83 if (t1 >= t2)
/freebsd-10.3-release/contrib/sendmail/libsm/
H A Db-strl.c69 struct timeval t1, t2;
119 if (gettimeofday(&t2, NULL) < 0)
122 printf("\tstrlcat() result: %ld seconds\n", one = toseconds(t2, t1));
130 if (gettimeofday(&t2, NULL) < 0)
133 printf("\tsm_strlcat() result: %ld seconds\n", two = toseconds(t2, t1));
160 if (gettimeofday(&t2, NULL) < 0)
163 printf("\tstrlcpy() result: %ld seconds\n", one = toseconds(t2, t1));
171 if (gettimeofday(&t2, NULL) < 0)
174 printf("\tsm_strlcpy() result: %ld seconds\n", two = toseconds(t2, t1));
/freebsd-10.3-release/lib/libmp/tests/
H A Dlegacy_test.c53 MINT *t2; local
67 t2 = mp_xtom(str42);
68 testmcmp(c42, t2, "xtom");
69 s = mp_mtox(t2);
74 mp_mfree(t2);
101 MINT *t2; local
113 t2 = mp_itom(ro); // Simpler to use common testmcmp()
114 testmcmp(t2, c2, "sdiv1");
115 mp_mfree(t2);
119 t2
[all...]
/freebsd-10.3-release/crypto/openssl/crypto/sha/asm/
H A Dsha1-thumb.pl30 $t2="r2";
47 lsl $t2,$a,#5
48 add $t2,$e
50 add $t2,$e @ E+=ROR(A,27)
51 add $t2,$t1 @ E+=X[i]
62 add $a,$t2,$t1 @ A=E+F_xx_xx(B,C,D)
134 mov $t2,sp
135 sub $t2,#16*4 @ [3]
149 cmp sp,$t2
153 sub $t2,#3
[all...]

Completed in 111 milliseconds

12345678910