HomeSort by: relevance | last modified time | path
    Searched refs:t1 (Results 1 - 25 of 275) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/lib/libc/time/
difftime.c 39 double t1 = time1, t0 = time0; local in function:difftime
40 return t1 - t0;
55 uintmax_t t1 = time1, t0 = time0; local in function:difftime
56 return time0 <= time1 ? t1 - t0 : dminus((double)(t0 - t1));
72 long double t1 = time1, t0 = time0; local in function:difftime
73 return t1 - t0;
  /src/common/lib/libc/arch/alpha/gen/
byte_swap_4.S 46 extbl a0, 1, t1 /* t1 = 0x 45 */
49 sll t1, 16, t1 /* t1 = 0x 45 */
52 or t1, t2, t1 /* t1 = 0x 4523 */
53 or t1, v0, v0 /* v0 = 0x67452301 */
byte_swap_2.S 46 extbl a0, 1, t1 /* t1 = 0x 01 */
47 or t0, t1, v0 /* v0 = 0x2301 */
  /src/sys/arch/mmeye/stand/boot/
clock.c 48 int t1, t2, x; local in function:delay
51 t1 = _reg_read_4(SH_(TCNT0));
54 if (t2 > t1)
55 x -= (t2 - t1 - 1);
57 x -= (t1 - t2);
58 t1 = t2;
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_generichash/blake2b/ref/
blake2b-load-avx2.h 7 t1 = _mm256_unpacklo_epi64(m2, m3); \
8 b0 = _mm256_blend_epi32(t0, t1, 0xF0); \
14 t1 = _mm256_unpackhi_epi64(m2, m3); \
15 b0 = _mm256_blend_epi32(t0, t1, 0xF0); \
21 t1 = _mm256_unpacklo_epi64(m6, m7); \
22 b0 = _mm256_blend_epi32(t0, t1, 0xF0); \
28 t1 = _mm256_unpackhi_epi64(m6, m7); \
29 b0 = _mm256_blend_epi32(t0, t1, 0xF0); \
35 t1 = _mm256_unpackhi_epi64(m4, m6); \
36 b0 = _mm256_blend_epi32(t0, t1, 0xF0);
    [all...]
  /src/common/lib/libc/arch/alpha/string/
ffs.S 44 * Initialize return value (v0), and set up t1 so that it
47 subl zero, t0, t1
49 and t0, t1, t1
51 and t1, 0xff, t2
57 zapnot t1, 0x03, t3
59 sra t1, 16, t1
66 and t1, 0xff, t4
68 sra t1, 8, t
    [all...]
  /src/tests/kernel/arch/mips/
signalsphandler.S 48 PTR_LA t1, _C_LABEL(signalsp) /* load t1 := &signalsp */
50 PTR_S sp, 0(t1) /* store signalsp := stack pointer */
  /src/sys/arch/hpcmips/stand/lcboot/
start.S 103 li t1, 0x00125482
104 mtc0 t1, $16
111 mfc0 t1, $12
113 and t1, t1, t2
115 or t1, t1, t2
116 mtc0 t1, $12
125 li t1, 0x0001
126 sh t1, (t0
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_mop.cc 26 ScopedThread t1, t2; local in function:TEST
28 t1.Write1(l1);
33 ScopedThread t1, t2; local in function:TEST
35 t1.Write1(l);
40 ScopedThread t1, t2; local in function:TEST
42 t1.Read1(l);
47 ScopedThread t1, t2; local in function:TEST
49 t1.Write1(l);
54 ScopedThread t1, t2; local in function:TEST
56 t1.Read1(l)
62 ScopedThread t1, t2; local in function:TEST
74 ScopedThread t1, t2; local in function:TEST
93 ScopedThread t1, t2; local in function:TEST
108 ScopedThread t1, t2; local in function:TEST
142 ScopedThread t1, t2; local in function:TEST
156 ScopedThread t1, t2; local in function:TEST
181 ScopedThread t1, t2; local in function:TEST
190 ScopedThread t1, t2; local in function:TEST
209 ScopedThread t1; local in function:TEST
228 ScopedThread t1; local in function:TEST
    [all...]
tsan_thread.cc 21 ScopedThread t1; local in function:TEST
22 t1.Write1(l);
28 ScopedThread t1(true); local in function:TEST
30 t1.Write1(l);
34 ScopedThread t1; local in function:TEST
36 t1.Write1(l);
37 t1.Detach();
tsan_string.cc 44 ScopedThread t1, t2; local in function:__tsan::TEST
45 t1.Memcpy(data, data1, 10);
53 ScopedThread t1, t2; local in function:__tsan::TEST
54 t1.Memcpy(data+5, data1, 1);
62 ScopedThread t1, t2; local in function:__tsan::TEST
63 t1.Memcpy(data, data1, 10);
70 ScopedThread t1, t2; local in function:__tsan::TEST
71 t1.Memcpy(data, data1, 10);
77 ScopedThread t1, t2; local in function:__tsan::TEST
78 t1.Memset(data, 1, 10)
    [all...]
  /src/lib/libm/src/
e_hypot.c 34 * t1*yy1+((x-y)*(x-y)+(t1*y2+t2*y))
35 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
56 double a=x,b=y,t1,t2,yy1,y2,w; local in function:__ieee754_hypot
88 t1=0;
89 SET_HIGH_WORD(t1,0x7fd00000); /* t1=2^1022 */
90 b *= t1;
91 a *= t1;
    [all...]
e_hypotl.c 60 long double a=x,b=y,t1,t2,y1,y2,w; local in function:hypotl
95 t1=1;
96 SET_HIGH_WORD(t1,ESW(MAX_EXP-2)); /* t1=2^(MAX_EXP-2) */
97 b *= t1;
98 a *= t1;
111 t1 = a;
113 uv.extu_ld = t1; uv.extu_fracl = 0; t1 = uv.extu_ld;
114 t2 = a-t1;
    [all...]
e_hypotf.c 27 float a=x,b=y,t1,t2,yy1,y2,w; local in function:__ieee754_hypotf
54 SET_FLOAT_WORD(t1,0x7e800000); /* t1=2^126 */
55 b *= t1;
56 a *= t1;
69 SET_FLOAT_WORD(t1,ha&0xfffff000);
70 t2 = a-t1;
71 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
    [all...]
  /src/tests/kernel/arch/hppa/
h_execregs.S 43 stw %t1, (4*(0 - NEXECREGS))(%sp) /* order matches execregs.h */
102 addc %t1, %r0, %r0 /* t1 := PSW[C/B]{0} */
103 zdep %t1, 23, 8, %t1 /* t1 := PSW */
104 stw %t1, (4*(31 - NEXECREGS))(%sp)
107 ldo (4*(32 - NEXECREGS))(%sp), %t1
108 fstd,ma %fr0, 8(%t1)
109 fstd,ma %fr1, 8(%t1)
    [all...]
  /src/games/hack/
hack.end.c 330 struct toptenentry *t0, *t1, *tprev; local in function:topten
375 t1 = tt_head = newttentry();
380 t1->date, &t1->uid,
381 &t1->level, &t1->maxlvl,
382 &t1->hp, &t1->maxhp, &t1->points,
383 &t1->plchar, &t1->sex, t1->name, t1->death) != 1
688 struct toptenentry *t1, *t2; local in function:prscore
    [all...]
  /src/common/lib/libc/arch/mips/string/
strcmp.S 48 lbu t1, 0(a1)
50 bne t0, t1, NotEq
52 lbu t1, 1(a1)
56 beq t0, t1, 1b
58 subu v0, t0, t1
61 subu v0, zero, t1
  /src/tests/lib/libpthread/
t_equal.c 56 pthread_t t1, t2; local in function:ATF_TC_BODY
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);
  /src/lib/libc/arch/riscv/sys/
sbrk.S 42 lla t1, _C_LABEL(__curbrk)
43 PTR_L t2, 0(t1)
48 PTR_S t5, 0(t1) // save new val of curbrk from above
  /src/lib/libc/arch/hppa/string/
bcmp.S 70 copy %t1,%t2
73 ldbs,ma 1(%arg0),%t1
75 comb,<>,n %t1,%t2,$bcmp_exit
81 sub %t1,%t2,%ret0
  /src/lib/libc/compat/arch/hppa/sys/
compat_sigpending.S 44 ldi EINVAL, %t1
compat_sigprocmask.S 44 ldi EINVAL, %t1
compat_sigreturn.S 44 ldi EINVAL, %t1
compat_sigsuspend.S 44 ldi EINVAL, %t1
  /src/tests/lib/libc/gen/
t_time.c 52 time_t t1, t2 = 0; local in function:ATF_TC_BODY
54 t1 = time(&t2);
56 if (t1 != t2)
69 time_t t1, t2; local in function:ATF_TC_BODY
74 t1 = time(NULL);
79 (int64_t)t1, (int64_t)t2);
81 if (t1 >= t2)
95 time_t t1, t2; local in function:ATF_TC_BODY
97 t1 = time(NULL);
102 (int64_t)t1, (int64_t)tv.tv_sec)
    [all...]

Completed in 18 milliseconds

1 2 3 4 5 6 7 8 91011