Searched refs:t1 (Results 1 - 25 of 1219) sorted by last modified time

1234567891011>>

/netbsd-current/usr.bin/xlint/lint2/
H A Dchk.c239 tspec_t t1; local
249 t1 = (tp1 = TP(def->s_type)->t_subt)->t_tspec;
256 if ((t1 == STRUCT || t1 == UNION) && !eq) {
443 tspec_t t1, t2; local
486 t1 = arg1->t_tspec;
488 if (is_integer(t1) && is_integer(t2) &&
498 if (t1 == FLOAT) {
499 t1 = DOUBLE;
500 } else if (t1
596 tspec_t sz, t1, t2 = NO_TSPEC; local
823 tspec_t sz, t1 = NO_TSPEC, t2 = NO_TSPEC; local
[all...]
/netbsd-current/usr.bin/xlint/lint1/
H A Dtree.c96 portable_rank_cmp(tspec_t t1, tspec_t t2) argument
98 const ttab_t *p1 = type_properties(t1), *p2 = type_properties(t2);
/netbsd-current/sys/nfs/
H A Dnfs_vfsops.c166 int32_t t1, t2; local
253 int32_t t1, t2; local
/netbsd-current/lib/libm/src/
H A De_hypotl.c60 long double a=x,b=y,t1,t2,y1,y2,w; local
94 t1=1;
95 SET_HIGH_WORD(t1,ESW(MAX_EXP-2)); /* t1=2^(MAX_EXP-2) */
96 b *= t1;
97 a *= t1;
110 t1 = a;
112 uv.extu_ld = t1; uv.extu_fracl = 0; t1 = uv.extu_ld;
113 t2 = a-t1;
[all...]
/netbsd-current/lib/libm/arch/vax/
H A Dn_support.S40 .asciz "@(#)support.s\t1.3 (Berkeley) 8/21/85; 8.1 (ucb.elefunt) 6/4/93"
203 movq %r10,%r6 #t1=y1
210 addw2 %r8,%r6 #t1+=k, scale up t and t1
215 subd2 %r6,%r4 #t:=t-t1
216 muld2 %r8,%r4 #n*(t-t1)
217 muld2 %r8,%r6 #n*t1
218 subd2 %r6,%r0 #x-n*t1
219 subd2 %r4,%r0 #(x-n*t1)-n*(t-t1)
[all...]
/netbsd-current/sys/arch/riscv/riscv/
H A Dcpu_switch.S64 PTR_L t1, L_CPU(tp) // # get curcpu
85 PTR_S tp, CI_CURLWP(t1) // # update curcpu with the new curlwp
111 // t1 = curcpu()
135 // INT_L t1, CI_MTX_COUNT(t0) // get mutex count
136 // addi t1, t1, 1 // increment mutex count
137 // INT_S t1, CI_MTX_COUNT(t0) // save it
178 PTR_L t1, L_CPU(tp) // get curcpu()
183 PTR_S tp, CI_CURLWP(t1) // update curlwp
197 PTR_L t1, L_CP
[all...]
H A Dcopy.S70 li t1, SR_SUM
71 csrs sstatus, t1
76 li t1, SR_SUM
77 csrc sstatus, t1
103 sc.w t1, a2, 0(t0) /* store new value */
104 bnez t1, 1b /* succeed? nope, try again. */
144 sc.d t1, a2, 0(t0) /* store new value */
145 bnez t1, 1b /* succeed? nope, try again. */
/netbsd-current/sys/arch/x86/x86/
H A Dcpu.c1419 uint64_t freq = 0, freq_from_cpuid, t0, t1; local
1454 t1 = cpu_counter();
1457 overhead += (t1 - t0);
1470 t1 = cpu_counter();
1472 freq += t1 - t0 - overhead;
H A Dlapic.c663 uint64_t l0, l1, t0, t1; local
670 t1 = cpu_counter();
672 t1 += cpu_counter();
674 tmp = (l0 - l1) * cpu_frequency(ci) / ((t1 - t0 + 1) / 2);
/netbsd-current/usr.bin/make/unit-tests/
H A Dvarmod-assign.mk54 .if "${1:?${THEN1::=then1${IT1::=t1}}:${ELSE1::=else1${IE1::=e1}}} ${THEN1}${ELSE1}${IT1}${IE1}" != " then1t1"
/netbsd-current/lib/libm/ld80/
H A De_lgammal_r.c97 #define t1 (t1u.extu_ld) macro
313 p = t0+y*t1+tt+y*y*(t2+y*(t3+y*(t4+y*(t5+y*(t6+y*(t7+y*(t8+
/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3.c4695 ** SELECT eval('DELETE FROM t1') FROM t2;
5197 ** CREATE TABLE t1(c1 VARIANT);
5201 ** SELECT c1 + 1, c1 FROM t1;
12680 ** INSERT of the same key on "CREATE TABLE t1(a PRIMARY KEY, b)":
12682 ** local: INSERT INTO t1 VALUES(1, 'v1');
12683 ** remote: INSERT INTO t1 VALUES(1, 'v2');
12690 ** UPDATE t1 SET b = 'v2' WHERE a=1;
88421 static const u64 t1 = ((u64)0x3ff00000)<<32; local
[all...]
/netbsd-current/external/mpl/bind/dist/lib/isc/
H A Dtimer.c645 isc_timer_t *t1, *t2; local
647 t1 = v1;
649 REQUIRE(VALID_TIMER(t1));
652 if (isc_time_compare(&t1->due, &t2->due) < 0) {
H A Dtime.c207 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2) { argument
208 REQUIRE(t1 != NULL && t2 != NULL);
209 INSIST(t1->nanoseconds < NS_PER_SEC && t2->nanoseconds < NS_PER_SEC);
211 if (t1->seconds < t2->seconds) {
214 if (t1->seconds > t2->seconds) {
217 if (t1->nanoseconds < t2->nanoseconds) {
220 if (t1->nanoseconds > t2->nanoseconds) {
290 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2) { argument
293 REQUIRE(t1 != NULL && t2 != NULL);
294 INSIST(t1
[all...]
/netbsd-current/external/mpl/bind/dist/bin/tests/system/serve-stale/
H A Dtests.sh625 t1=$($PERL -e 'print time()')
726 elapsed=$((t2 - t1))
1765 t1=$($PERL -e 'print time()')
1785 [ $((t2 - t1)) -le 10 ] || {
1786 echo_i "query took $((t2 - t1))s to resolve."
/netbsd-current/external/mpl/bind/dist/bin/tests/system/rpzrecurse/
H A Dtests.sh496 t1=$($PERL -e 'print time()."\n";')
499 p1=$((t2 - t1))
531 t1=$($PERL -e 'print time()."\n";')
534 p1=$((t2 - t1))
/netbsd-current/external/mpl/bind/dist/bin/tests/system/nsupdate/
H A Dtests.sh1319 t1=$($PERL -e 'print time()')
1329 elapsed=$((t2 - t1))
1341 t1=$($PERL -e 'print time()')
1351 elapsed=$((t2 - t1))
1363 t1=$($PERL -e 'print time()')
1373 elapsed=$((t2 - t1))
1385 t1=$($PERL -e 'print time()')
1395 elapsed=$((t2 - t1))
1407 t1=$($PERL -e 'print time()')
1417 elapsed=$((t2 - t1))
[all...]
/netbsd-current/external/mpl/bind/dist/bin/tests/system/mkeys/
H A Dtests.sh179 t1=$(grep "trust pending" ns2/managed-keys.bind) || true
192 [ "$t1" = "$t2" ] && ret=1
199 t1=$t2
229 [ "$t1" = "$t2" ] && ret=1
236 t1=$t2
263 [ "$t1" = "$t2" ] && ret=1
270 t1=$t2
301 [ "$t1" = "$t2" ] && ret=1
611 # machines, when $t1 equals $t2 due to the time elapsed between "rndc
617 t1
[all...]
/netbsd-current/external/mpl/bind/dist/bin/named/
H A Dstatschannel.c3449 time_t t1, t2; local
3459 result = isc_time_secondsastimet(when, &t1);
3471 if (t1 < t2) {
/netbsd-current/external/mpl/bind/dist/tests/dns/
H A Dname_test.c606 dns_name_t t1, t2; local
611 dns_name_init(&t1, NULL);
626 testcases[i].range, &t1);
630 assert_true(dns_name_equal(&t1, &t2));
/netbsd-current/external/mpl/bind/dist/lib/isc/include/isc/
H A Dtime.h223 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2);
225 * Compare the times referenced by 't1' and 't2'
229 *\li 't1' and 't2' are valid pointers.
233 *\li -1 t1 < t2 (comparing times, not pointers)
234 *\li 0 t1 = t2
235 *\li 1 t1 > t2
271 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2);
273 * Find the difference in microseconds between time t1 and time t2.
274 * t2 is the subtrahend of t1; ie, difference = t1
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/unix/include/isc/
H A Dtime.h205 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2);
207 * Compare the times referenced by 't1' and 't2'
211 *\li 't1' and 't2' are valid pointers.
215 *\li -1 t1 < t2 (comparing times, not pointers)
216 *\li 0 t1 = t2
217 *\li 1 t1 > t2
253 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2);
255 * Find the difference in microseconds between time t1 and time t2.
256 * t2 is the subtrahend of t1; ie, difference = t1
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/unix/
H A Dtime.c209 isc_time_compare(const isc_time_t *t1, const isc_time_t *t2) { argument
210 REQUIRE(t1 != NULL && t2 != NULL);
211 INSIST(t1->nanoseconds < NS_PER_S && t2->nanoseconds < NS_PER_S);
213 if (t1->seconds < t2->seconds) {
216 if (t1->seconds > t2->seconds) {
219 if (t1->nanoseconds < t2->nanoseconds) {
222 if (t1->nanoseconds > t2->nanoseconds) {
280 isc_time_microdiff(const isc_time_t *t1, const isc_time_t *t2) { argument
283 REQUIRE(t1 != NULL && t2 != NULL);
284 INSIST(t1
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/
H A Dtimer.c657 isc_timer_t *t1, *t2; local
659 t1 = v1;
661 REQUIRE(VALID_TIMER(t1));
664 if (isc_time_compare(&t1->due, &t2->due) < 0) {
/netbsd-current/sys/arch/sparc64/sparc64/
H A Dlocore.s624 rdpr %wstate, t1
625 cmp t1, WSTATE_KERN
627 sethi %hi(_C_LABEL(redzone)), t1
628 ldx [t1 + %lo(_C_LABEL(redzone))], t2
1269 #define CHECK_SP_REDZONE(t1, t2) \
1270 sethi KERNBASE, t1; \
1271 cmp %sp, t1; \
1273 sethi %hi(_C_LABEL(redzone)), t1; \
1274 ldx [t1 + %lo(_C_LABEL(redzone))], t2; \
1281 stx %g0, [t1
[all...]

Completed in 708 milliseconds

1234567891011>>