Searched refs:y0 (Results 1 - 25 of 36) sorted by relevance

12

/freebsd-current/contrib/bearssl/src/hash/
H A Dghash_ctmul64.c36 uint64_t y0, y1, y2, y3; local
43 y0 = y & (uint64_t)0x1111111111111111;
47 z0 = (x0 * y0) ^ (x1 * y3) ^ (x2 * y2) ^ (x3 * y1);
48 z1 = (x0 * y1) ^ (x1 * y0) ^ (x2 * y3) ^ (x3 * y2);
49 z2 = (x0 * y2) ^ (x1 * y1) ^ (x2 * y0) ^ (x3 * y3);
50 z3 = (x0 * y3) ^ (x1 * y2) ^ (x2 * y1) ^ (x3 * y0);
82 uint64_t y0, y1; local
89 y0 = br_dec64be(yb + 8);
114 y0 ^= br_dec64be(src + 8);
116 y0r = rev64(y0);
[all...]
H A Dghash_ctmul32.c52 uint32_t y0, y1, y2, y3; local
59 y0 = y & (uint32_t)0x11111111;
63 z0 = (x0 * y0) ^ (x1 * y3) ^ (x2 * y2) ^ (x3 * y1);
64 z1 = (x0 * y1) ^ (x1 * y0) ^ (x2 * y3) ^ (x3 * y2);
65 z2 = (x0 * y2) ^ (x1 * y1) ^ (x2 * y0) ^ (x3 * y3);
66 z3 = (x0 * y3) ^ (x1 * y2) ^ (x2 * y1) ^ (x3 * y0);
H A Dghash_ctmul.c74 uint32_t y0, y1, y2, y3; local
82 y0 = y & (uint32_t)0x11111111;
88 * (x0+W*x1)*(y0+W*y1) -> a0:b0
90 * ((x0+x2)+W*(x1+x3))*((y0+y2)+W*(y1+y3)) -> a6:b6
93 b0 = y0;
168 uint32_t y0, y1, y2, y3; local
176 y0 = y & (uint32_t)0x11111111;
180 z0 = MUL(x0, y0) ^ MUL(x1, y3) ^ MUL(x2, y2) ^ MUL(x3, y1);
181 z1 = MUL(x0, y1) ^ MUL(x1, y0) ^ MUL(x2, y3) ^ MUL(x3, y2);
182 z2 = MUL(x0, y2) ^ MUL(x1, y1) ^ MUL(x2, y0)
[all...]
/freebsd-current/contrib/bearssl/src/symcipher/
H A Ddes_ct.c206 uint32_t y0, y1, y2, y3, y4, y5, y6, y7, y8, y9; local
243 y0 = (uint32_t)0xEFA72C4D ^ (x0 & (uint32_t)0xEC7AC69C);
276 y0 = y0 ^ (x1 & y1);
293 y0 = y0 ^ (x2 & y1);
302 y0 = y0 ^ (x3 & y1);
307 y0 = y0
[all...]
/freebsd-current/contrib/arm-optimized-routines/pl/math/
H A Dlogf.c30 double_t z, r, r2, y, y0, invc, logc; local
67 y0 = logc + (double_t) k * Ln2;
73 y = y * r2 + (y0 + r);
H A Dlog10f.c40 double_t z, r, r2, y, y0, invc, logc; local
77 y0 = logc + (double_t) k * Ln2;
83 y = y * r2 + (y0 + r);
H A Dsv_powf_2u6.c170 svfloat64_t y0 = svadd_x (pg, logc, svcvt_f64_x (pg, k)); local
177 logx = svmla_x (pg, y0, r, logx);
/freebsd-current/contrib/arm-optimized-routines/math/
H A Dlog2f.c29 double_t z, r, r2, p, y, y0, invc, logc; local
67 y0 = logc + (double_t) k;
73 p = A[3] * r + y0;
H A Dlogf.c30 double_t z, r, r2, y, y0, invc, logc; local
67 y0 = logc + (double_t) k * Ln2;
73 y = y * r2 + (y0 + r);
H A Dpowf.c33 double_t z, r, r2, r4, p, q, y, y0, invc, logc; local
51 y0 = logc + (double_t) k;
58 q = A[4] * r + y0;
/freebsd-current/stand/liblua/
H A Dgfx_utils.c143 uint32_t x0, y0, x1, y1, wd; local
153 y0 = luaL_checknumber(L, 2);
157 gfx_fb_line(x0, y0, x1, y1, wd);
164 uint32_t x0, y0, x1, y1, x2, y2, width; local
174 y0 = luaL_checknumber(L, 2);
180 gfx_fb_bezier(x0, y0, x1, y1, x2, y2, width);
187 uint32_t x0, y0, x1, y1, fill; local
197 y0 = luaL_checknumber(L, 2);
201 gfx_fb_drawrect(x0, y0, x1, y1, fill);
208 uint32_t x0, y0, x local
[all...]
/freebsd-current/sys/powerpc/fpu/
H A Dfpu_sqrt.c192 u_int y0, y1, y2, y3; local
276 * The calculation `t = y + bit' breaks down into `t0 = y0, ...,
287 /* if (x >= (t0 = y0 | bit)) { */ /* always true */
290 y0 = bit << 1;
295 t0 = y0 | bit; /* t = y + bit */
299 y0 |= bit << 1; /* y += bit << 1 */
306 /* calculate q1. note (y0&1)==0. */
307 #define t0 y0
319 y0 |= 1; /* y += bit << 1 */
337 /* calculate q2. note (y1&1)==0; y0 (ak
[all...]
H A Dfpu_div.c155 u_int r0, r1, r2, r3, d0, d1, d2, d3, y0, y1, y2, y3; local
227 FPU_SUBCS(d1, r1, y1); FPU_SUBC(d0, r0, y0)
263 y0 = y->fp_mant[0];
/freebsd-current/stand/ficl/
H A Dgfx_loader.c50 * fb-bezier ( x0 y0 x1 y1 x2 y2 wd -- )
52 * fb-line ( x0 y0 x1 y1 wd -- )
167 FICL_UNS x0, y0, x1, y1, wd; local
176 y0 = stackPopUNS(pVM->pStack);
178 gfx_fb_line(x0, y0, x1, y1, wd);
184 FICL_UNS x0, y0, x1, y1, x2, y2, width; local
195 y0 = stackPopUNS(pVM->pStack);
197 gfx_fb_bezier(x0, y0, x1, y1, x2, y2, width);
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dvdev_raidz_math_scalar.c206 #define REC_PQ_DEFINE() v_t x0, y0, t0
208 #define REC_PQ_Y y0
217 #define REC_PR_DEFINE() v_t x0, y0, t0
219 #define REC_PR_Y y0
229 #define REC_QR_DEFINE() v_t x0, y0, t0
231 #define REC_QR_Y y0
240 #define REC_PQR_DEFINE() v_t x0, y0, z0, xs0, ys0
242 #define REC_PQR_Y y0
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/
H A Du4.h2 __m128i y0, y1, y2, y3, y4, y5, y6, y7, y8, y9, y10, y11, y12, y13, y14, variable
153 y0 = z8;
154 y0 = _mm_add_epi32(y0, z12);
155 r0 = y0;
156 y0 = _mm_slli_epi32(y0, 18);
157 z0 = _mm_xor_si128(z0, y0);
281 y0 = z2;
282 y0
[all...]
H A Du8.h2 __m256i y0, y1, y2, y3, y4, y5, y6, y7, y8, y9, y10, y11, y12, y13, y14, variable
153 y0 = z8;
154 y0 = _mm256_add_epi32(y0, z12);
155 r0 = y0;
156 y0 = _mm256_slli_epi32(y0, 18);
157 z0 = _mm256_xor_si256(z0, y0);
281 y0 = z2;
282 y0
[all...]
/freebsd-current/lib/msun/src/
H A De_jn.c18 * y0(0)=y1(0)=yn(n,0) = -inf with division by zero signal;
19 * y0(-ve)=y1(-ve)=yn(n,-ve) are NaN with invalid signal.
231 if(n==0) return(y0(x));
258 a = y0(x);
H A De_j0.c12 /* j0(x), y0(x)
37 * Method -- y0(x):
40 * y0(x) = 2/pi*(j0(x)*(ln(x/2)+Euler) + x^2/4 - ...)
41 * therefore y0(x)-2/pi*j0(x)*ln(x) is an even function.
42 * We use the following function to approximate y0,
43 * y0(x) = U(z)/V(z) + (2/pi)*(j0(x)*ln(x)), z= x^2
49 * y0(tiny) = u0 + (2/pi)*ln(tiny), (choose tiny<2**-27)
51 * y0(x) = sqrt(2/(pi*x))*(p0(x)*cos(x0)+q0(x)*sin(x0))
54 * 3. Special cases: y0(0)=-inf, y0(
142 y0(double x) function
[all...]
/freebsd-current/contrib/arm-optimized-routines/math/aarch64/
H A Dv_powf.c115 double y0 = logc + (double) k[lane]; local
122 logx = r * logx + y0;
/freebsd-current/sys/contrib/openzfs/module/icp/algs/edonr/
H A Dedonr.c85 #define LS2_512(y0, y1, y2, y3, y4, y5, y6, y7) \
87 z1 = y0 + y1, z2 = y2 + y5; z6 = z1 + z2; \
95 t7 = rotl64(z8 + y0, 55); z7 = z2 + z4; \
/freebsd-current/crypto/openssl/crypto/ec/
H A Dec2_smpl.c359 BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t; local
387 y0 = BN_CTX_get(ctx);
400 if (!BN_copy(y0, a->Y))
403 if (!EC_POINT_get_affine_coordinates(group, a, x0, y0, ctx))
419 if (!BN_GF2m_add(s, y0, y1))
432 if (BN_GF2m_cmp(y0, y1) || BN_is_zero(x1)) {
/freebsd-current/crypto/openssl/crypto/poly1305/asm/
H A Dpoly1305-ppcfp.pl79 my ($y0,$y1,$y2,$y3) = ($c3lo,$c3hi,$c1lo,$c1hi);
359 fsub $y0,$y0,$two0 # de-bias input
368 fadd $h0lo,$h0lo,$y0 # accumulate input
456 lfd $y0,`$LOCALS+8*0`($sp) # load [biased] input
/freebsd-current/stand/common/
H A Dgfx_fb.c1490 gfx_fb_line(uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, uint32_t wd) argument
1500 sy = y0 < y1? 1 : -1;
1502 dy = y1 > y0? y1 - y0 : y0 - y1;
1507 gfx_fb_setpixel(x0, y0);
1512 y2 = y0;
1530 gfx_fb_setpixel(x2, y0);
1533 if (y0 == y1)
1536 y0
1545 gfx_fb_bezier(uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, uint32_t x2, uint32_t y2, uint32_t wd) argument
[all...]
/freebsd-current/sys/dev/atkbdc/
H A Dpsm.c3792 int x0, y0; local
3819 y0 = f->y;
3829 if (y0 <= margin_bottom)
3830 y0 = margin_bottom;
3831 else if (y0 >= max_y - margin_top)
3832 y0 = max_y - margin_top;
3835 x0, y0, f->p, f->w));
3872 start_y = y0;
3940 dyp = abs(y0 - start_y);
4138 int x0, y0; local
4830 int c, x0, y0; local
[all...]

Completed in 251 milliseconds

12