Home
last modified time | relevance | path

Searched refs:i0 (Results 1 – 25 of 70) sorted by relevance

123

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bitvector.h128 for (uptr i0 = 0; i0 < kLevel1Size; i0++) { in setAll() local
129 l1_[i0].setAll(); in setAll()
131 l2_[i0][i1].setAll(); in setAll()
145 uptr i0 = idx0(idx); in setBit() local
148 if (!l1_[i0].getBit(i1)) { in setBit()
149 l1_[i0].setBit(i1); in setBit()
150 l2_[i0][i1].clear(); in setBit()
152 bool res = l2_[i0][i1].setBit(i2); in setBit()
160 uptr i0 = idx0(idx); in clearBit() local
164 if (l1_[i0].getBit(i1)) { in clearBit()
[all …]
/freebsd/crypto/openssl/crypto/aes/asm/
H A Daes-mips.pl124 my ($i0,$i1,$i2,$i3)=($at,$t0,$t1,$t2);
150 ext $i0,$s1,16,8
155 lwxs $t0,$i0($Tbl) # Te1[s1>>16]
156 ext $i0,$s2,8,8
164 lwxs $t4,$i0($Tbl) # Te2[s2>>8]
165 ext $i0,$s3,0,8
173 lwxs $t8,$i0($Tbl) # Te3[s3]
174 ext $i0,$s0,24,8
193 lwxs $t4,$i0($Tbl) # Te0[s0>>24]
228 ext $i0,$s1,16,8
[all …]
H A Daes-sparcv9.pl71 $s0="%i0";
532 ld [%i0+0],%o0
533 ld [%i0+4],%o1
534 ld [%i0+8],%o2
535 ld [%i0+12],%o3
552 ldub [%i0+0],%l0
553 ldub [%i0+1],%l1
554 ldub [%i0+2],%l2
557 ldub [%i0+3],%l3
559 ldub [%i0+4],%l4
[all …]
/freebsd/lib/msun/src/
H A Ds_rint.c36 int32_t i0,j0,sx; in rint() local
39 EXTRACT_WORDS(i0,i1,x); in rint()
40 sx = (i0>>31)&1; in rint()
41 j0 = ((i0>>20)&0x7ff)-0x3ff; in rint()
44 if(((i0&0x7fffffff)|i1)==0) return x; in rint()
45 i1 |= (i0&0x0fffff); in rint()
46 i0 &= 0xfffe0000; in rint()
47 i0 |= ((i1|-i1)>>12)&0x80000; in rint()
48 SET_HIGH_WORD(x,i0); in rint()
51 GET_HIGH_WORD(i0,t); in rint()
[all …]
H A Ds_floor.c31 int32_t i0,i1,j0; in floor() local
33 EXTRACT_WORDS(i0,i1,x); in floor()
34 j0 = ((i0>>20)&0x7ff)-0x3ff; in floor()
38 if(i0>=0) {i0=i1=0;} in floor()
39 else if(((i0&0x7fffffff)|i1)!=0) in floor()
40 { i0=0xbff00000;i1=0;} in floor()
44 if(((i0&i)|i1)==0) return x; /* x is integral */ in floor()
46 if(i0<0) i0 += (0x00100000)>>j0; in floor()
47 i0 &= (~i); i1=0; in floor()
57 if(i0<0) { in floor()
[all …]
H A Ds_ceil.c31 int32_t i0,i1,j0; in ceil() local
33 EXTRACT_WORDS(i0,i1,x); in ceil()
34 j0 = ((i0>>20)&0x7ff)-0x3ff; in ceil()
38 if(i0<0) {i0=0x80000000;i1=0;} in ceil()
39 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;} in ceil()
43 if(((i0&i)|i1)==0) return x; /* x is integral */ in ceil()
45 if(i0>0) i0 += (0x00100000)>>j0; in ceil()
46 i0 &= (~i); i1=0; in ceil()
56 if(i0>0) { in ceil()
57 if(j0==20) i0+=1; in ceil()
[all …]
H A Ds_floorf.c33 int32_t i0,j0; in floorf() local
35 GET_FLOAT_WORD(i0,x); in floorf()
36 j0 = ((i0>>23)&0xff)-0x7f; in floorf()
40 if(i0>=0) {i0=0;} in floorf()
41 else if((i0&0x7fffffff)!=0) in floorf()
42 { i0=0xbf800000;} in floorf()
46 if((i0&i)==0) return x; /* x is integral */ in floorf()
48 if(i0<0) i0 += (0x00800000)>>j0; in floorf()
49 i0 &= (~i); in floorf()
56 SET_FLOAT_WORD(x,i0); in floorf()
H A Ds_ceilf.c24 int32_t i0,j0; in ceilf() local
27 GET_FLOAT_WORD(i0,x); in ceilf()
28 j0 = ((i0>>23)&0xff)-0x7f; in ceilf()
32 if(i0<0) {i0=0x80000000;} in ceilf()
33 else if(i0!=0) { i0=0x3f800000;} in ceilf()
37 if((i0&i)==0) return x; /* x is integral */ in ceilf()
39 if(i0>0) i0 += (0x00800000)>>j0; in ceilf()
40 i0 &= (~i); in ceilf()
47 SET_FLOAT_WORD(x,i0); in ceilf()
H A Ds_truncf.c29 int32_t i0,j0; in truncf() local
31 GET_FLOAT_WORD(i0,x); in truncf()
32 j0 = ((i0>>23)&0xff)-0x7f; in truncf()
36 i0 &= 0x80000000; in truncf()
39 if((i0&i)==0) return x; /* x is integral */ in truncf()
41 i0 &= (~i); in truncf()
47 SET_FLOAT_WORD(x,i0); in truncf()
H A Ds_rintf.c31 int32_t i0,j0,sx; in rintf() local
33 GET_FLOAT_WORD(i0,x); in rintf()
34 sx = (i0>>31)&1; in rintf()
35 j0 = ((i0>>23)&0xff)-0x7f; in rintf()
38 if((i0&0x7fffffff)==0) return x; in rintf()
41 GET_FLOAT_WORD(i0,t); in rintf()
42 SET_FLOAT_WORD(t,(i0&0x7fffffff)|(sx<<31)); in rintf()
H A Ds_trunc.c31 int32_t i0,i1,j0; in trunc() local
33 EXTRACT_WORDS(i0,i1,x); in trunc()
34 j0 = ((i0>>20)&0x7ff)-0x3ff; in trunc()
38 i0 &= 0x80000000U; in trunc()
43 if(((i0&i)|i1)==0) return x; /* x is integral */ in trunc()
45 i0 &= (~i); i1=0; in trunc()
57 INSERT_WORDS(x,i0,i1); in trunc()
H A Ds_exp2.c332 * by i0 = i + TBLSIZE/2. For cache efficiency, exp2t[] and eps[] are
344 uint32_t hx, ix, lx, i0; in exp2() local
366 /* Reduce x, computing z, i0, and k. */ in exp2()
368 GET_LOW_WORD(i0, t); in exp2()
369 i0 += TBLSIZE / 2; in exp2()
370 k = (i0 >> TBLBITS) << 20; in exp2()
371 i0 = (i0 & (TBLSIZE - 1)) << 1; in exp2()
375 /* Compute r = exp2(y) = exp2t[i0] * p(z - eps[i]). */ in exp2()
376 t = tbl[i0]; /* exp2 in exp2()
[all...]
H A Ds_modf.c30 int32_t i0,i1,j0; in modf() local
32 EXTRACT_WORDS(i0,i1,x); in modf()
33 j0 = ((i0>>20)&0x7ff)-0x3ff; /* exponent of x */ in modf()
36 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */ in modf()
40 if(((i0&i)|i1)==0) { /* x is integral */ in modf()
47 INSERT_WORDS(*iptr,i0&(~i),0); in modf()
70 INSERT_WORDS(*iptr,i0,i1&(~i)); in modf()
H A Ds_modff.c24 int32_t i0,j0; in modff() local
26 GET_FLOAT_WORD(i0,x); in modff()
27 j0 = ((i0>>23)&0xff)-0x7f; /* exponent of x */ in modff()
30 SET_FLOAT_WORD(*iptr,i0&0x80000000); /* *iptr = +-0 */ in modff()
34 if((i0&i)==0) { /* x is integral */ in modff()
41 SET_FLOAT_WORD(*iptr,i0&(~i)); in modff()
H A Ds_exp2f.c98 uint32_t hx, ix, i0; in exp2f() local
119 /* Reduce x, computing z, i0, and k. */ in exp2f()
121 GET_FLOAT_WORD(i0, t); in exp2f()
122 i0 += TBLSIZE / 2; in exp2f()
123 k = (i0 >> TBLBITS) << 20; in exp2f()
124 i0 &= TBLSIZE - 1; in exp2f()
129 /* Compute r = exp2(y) = exp2ft[i0] * p(z). */ in exp2f()
130 tv = exp2ft[i0]; in exp2f()
/freebsd/crypto/openssh/
H A Dlibcrux_mlkem768_sha3.h804 size_t i0 = i; in libcrux_ml_kem_constant_time_ops_compare() local
806 ((uint32_t)Eurydice_slice_index(lhs, i0, uint8_t, uint8_t *) ^ in libcrux_ml_kem_constant_time_ops_compare()
807 (uint32_t)Eurydice_slice_index(rhs, i0, uint8_t, uint8_t *)); in libcrux_ml_kem_constant_time_ops_compare()
830 size_t i0 = i; in libcrux_ml_kem_constant_time_ops_select_ct() local
831 out[i0] = ((uint32_t)Eurydice_slice_index(lhs, i0, uint8_t, uint8_t *) & in libcrux_ml_kem_constant_time_ops_select_ct()
833 ((uint32_t)Eurydice_slice_index(rhs, i0, uint8_t, uint8_t *) & in libcrux_ml_kem_constant_time_ops_select_ct()
1106 size_t i0 = i; in libcrux_sha3_portable_keccak_load_block_2c() local
1111 Eurydice_slice_subslice2(blocks[0U], (size_t)8U * i0, in libcrux_sha3_portable_keccak_load_block_2c()
1112 (size_t)8U * i0 + (size_t)8U, uint8_t), in libcrux_sha3_portable_keccak_load_block_2c()
1115 size_t uu____1 = i0 / (size_t)5U; in libcrux_sha3_portable_keccak_load_block_2c()
[all …]
/freebsd/crypto/openssl/crypto/bn/asm/
H A Dx86_64-gf2m.pl47 ($i0,$i1)=("%rsi","%rdi");
63 lea ($a,$a),$i0
70 sar \$63,$i0 # broadcast 62nd bit
76 and $b,$i0
78 mov $i0,$t1
79 shl \$62,$i0
82 xor $i0,$lo
119 mov $mask,$i0
121 and $b,$i0
129 movq (%rsp,$i0,8),$R # half of calculations is done in SSE2
[all …]
H A Darmv4-gf2m.pl78 ($hi,$lo,$t0,$t1, $i0,$i1 )=map("r$_",(4..9),12);
101 and $i0,$mask,$b,lsl#2
105 ldr $lo,[sp,$i0] @ tab[b & 0x7]
106 and $i0,$mask,$b,lsr#4
109 ldr $t0,[sp,$i0] @ tab[b >> 6 & 0x7]
114 and $i0,$mask,$b,lsr#10
117 ldr $t0,[sp,$i0] @ tab[b >> 12 & 0x7]
124 and $i0,$mask,$b,lsr#16
127 ldr $t0,[sp,$i0] @ tab[b >> 18 & 0x7]
134 and $i0,$mask,$b,lsr#22
[all …]
/freebsd/lib/libc/gen/
H A Dmodf.c90 int32_t i0,i1,j0; in modf() local
92 EXTRACT_WORDS(i0,i1,x); in modf()
93 j0 = ((i0>>20)&0x7ff)-0x3ff; /* exponent of x */ in modf()
96 INSERT_WORDS(*iptr,i0&0x80000000,0); /* *iptr = +-0 */ in modf()
100 if(((i0&i)|i1)==0) { /* x is integral */ in modf()
107 INSERT_WORDS(*iptr,i0&(~i),0); in modf()
130 INSERT_WORDS(*iptr,i0,i1&(~i)); in modf()
/freebsd/lib/msun/ld80/
H A Ds_exp2l.c221 uint32_t hx, ix, i0; in exp2l() local
259 i0 = u.bits.manl + TBLSIZE / 2; in exp2l()
260 k = (int)i0 >> TBLBITS; in exp2l()
261 i0 = (i0 & (TBLSIZE - 1)) << 1; in exp2l()
274 long double t_hi = tbl[i0]; in exp2l()
275 long double t_lo = tbl[i0 + 1]; in exp2l()
/freebsd/lib/msun/ld128/
H A Ds_exp2l.c357 uint32_t hx, ix, i0; in exp2l() local
397 i0 = (u.bits.manl & 0xffffffff) + TBLSIZE / 2; in exp2l()
398 k = (int)i0 >> TBLBITS; in exp2l()
399 i0 = i0 & (TBLSIZE - 1); in exp2l()
413 t = tbl[i0]; /* exp2t[i0] */ in exp2l()
414 z -= eps[i0]; /* eps[i0] */ in exp2l()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_stats_timing.h50 const tsc_tick_count::tsc_interval_t &i0);
52 const tsc_tick_count::tsc_interval_t &i0);
88 const tsc_tick_count::tsc_interval_t &i0) {
89 return tsc_tick_count::tsc_interval_t(i1.value - i0.value);
94 const tsc_tick_count::tsc_interval_t &i0) {
95 i1.value += i0.value;
/freebsd/crypto/openssl/crypto/poly1305/asm/
H A Dpoly1305-ia64.S108 i0=r20; i1=r21;
159 (p8) ld8 i0=[r10],16 // aligned input
170 (p15) shrp i0=r15,r14,56 }
172 (p14) shrp i0=r15,r14,48 }
174 (p13) shrp i0=r15,r14,40 }
176 (p12) shrp i0=r15,r14,32 }
178 (p11) shrp i0=r15,r14,24 }
180 (p10) shrp i0=r15,r14,16 }
182 (p9) shrp i0=r15,r14,8 }
188 { .mmi; add h0=h0,i0
[all …]
/freebsd/contrib/diff/src/
H A Dside.c203 lin i0 = next0, i1 = next1; in print_sdiff_common_lines() local
205 if (!suppress_common_lines && (i0 != limit0 || i1 != limit1)) in print_sdiff_common_lines()
209 long int len0 = limit0 - i0; in print_sdiff_common_lines()
216 while (i0 != limit0 && i1 != limit1) in print_sdiff_common_lines()
217 print_1sdiff_line (&files[0].linbuf[i0++], ' ', in print_sdiff_common_lines()
222 while (i0 != limit0) in print_sdiff_common_lines()
223 print_1sdiff_line (&files[0].linbuf[i0++], '(', 0); in print_sdiff_common_lines()
/freebsd/contrib/tcpdump/
H A Dprint-udp.c112 uint32_t i0, i1; in vat_print() local
118 i0 = GET_BE_U_4(&((const u_int *)hdr)[0]); in vat_print()
122 i0 & 0xffff, in vat_print()
123 i1, i0 & 0x800000? "*" : ""); in vat_print()
125 if (i0 & 0x1f0000) in vat_print()
126 ND_PRINT(" f%u", (i0 >> 16) & 0x1f); in vat_print()
127 if (i0 & 0x3f000000) in vat_print()
128 ND_PRINT(" s%u", (i0 >> 24) & 0x3f); in vat_print()
138 uint32_t i0, i1; in rtp_print() local
146 i0 = GET_BE_U_4(&((const u_int *)hdr)[0]); in rtp_print()
[all …]

123