Searched refs:y2 (Results 1 - 25 of 55) sorted by relevance

123

/freebsd-current/stand/ficl/
H A Dgfx_loader.c50 * fb-bezier ( x0 y0 x1 y1 x2 y2 wd -- )
51 * fb-drawrect ( x1 y1 x2 y2 fill -- )
53 * fb-putimage ( flags x1 y1 x2 y2 -- flag )
55 * term-drawrect ( x1 y1 x2 y2 fill -- )
56 * term-putimage ( flags x1 y1 x2 y2 -- flag )
59 /* ( flags x1 y1 x2 y2 -- flag ) */
66 uint32_t x1, y1, x2, y2, f; local
75 y2 = stackPopINT(pVM->pStack);
87 if (y2 != 0) {
88 y2
117 uint32_t x1, y1, x2, y2, f; local
184 FICL_UNS x0, y0, x1, y1, x2, y2, width; local
203 FICL_UNS x1, x2, y1, y2, fill; local
220 FICL_UNS x1, x2, y1, y2; local
[all...]
/freebsd-current/lib/msun/src/
H A De_log10.c40 double f,hfsq,hi,lo,r,val_hi,val_lo,w,y,y2; local
72 y2 = y*log10_2hi;
81 w = y2 + val_hi;
82 val_lo += (y2 - w) + val_hi;
H A De_hypotf.c22 float a,b,t1,t2,y1,y2,w; local
71 y2 = b - y1;
74 w = sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b)));
H A De_hypot.c29 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
31 * y1= y with lower 32 bits chopped, y2 = y-y1.
53 double a,b,t1,t2,y1,y2,w; local
110 y2 = b - y1;
114 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
H A De_hypotl.c47 long double a=x,b=y,t1,t2,y1,y2,w; local
107 y2 = b - y1;
111 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b)));
/freebsd-current/contrib/bearssl/src/hash/
H A Dghash_ctmul64.c36 uint64_t y0, y1, y2, y3; local
45 y2 = y & (uint64_t)0x4444444444444444;
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);
99 uint64_t y0r, y1r, y2, y2r; local
118 y2 = y0 ^ y1;
123 z2 = bmul64(y2, h2);
H A Dghash_ctmul32.c52 uint32_t y0, y1, y2, y3; local
61 y2 = y & (uint32_t)0x44444444;
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
84 y2 = y & (uint32_t)0x44444444;
89 * (x2+W*x3)*(y2+W*y3) -> a3:b3
90 * ((x0+x2)+W*(x1+x3))*((y0+y2)+W*(y1+y3)) -> a6:b6
99 b3 = y2 >> 2;
168 uint32_t y0, y1, y2, y3; local
178 y2 = y & (uint32_t)0x44444444;
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)
[all...]
/freebsd-current/contrib/arm-optimized-routines/pl/math/
H A Dsv_math.h50 svfloat64_t y2 = sv_f64 (elem); local
51 y = svsel (p, y2, y);
67 svfloat64_t y2 = sv_f64 (ret); local
68 y = svsel (p, y2, y);
108 svfloat32_t y2 = sv_f32 (elem); local
109 y = svsel (p, y2, y);
125 svfloat32_t y2 = sv_f32 (ret); local
126 y = svsel (p, y2, y);
/freebsd-current/stand/liblua/
H A Dgfx_utils.c50 uint32_t x1, y1, x2, y2, f; local
63 y2 = luaL_checknumber(L, 5);
72 if (y2 != 0) {
73 y2 = gfx_state.tg_origin.tp_row +
74 y2 * gfx_state.tg_font.vf_height;
81 if (gfx_fb_putimage(&png, x1, y1, x2, y2, f) == 0)
94 uint32_t x1, y1, x2, y2, f; local
107 y2 = luaL_checknumber(L, 5);
114 if (gfx_fb_putimage(&png, x1, y1, x2, y2, f) == 0)
164 uint32_t x0, y0, x1, y1, x2, y2, widt local
[all...]
/freebsd-current/sys/powerpc/fpu/
H A Dfpu_sqrt.c192 u_int y0, y1, y2, y3; local
341 y2 = 0;
356 t2 = y2 | bit;
363 y2 |= bit << 1;
370 /* calculate q3. y0, t0, y1, t1 all fixed; y2, t2, almost done. */
371 #define t2 y2
385 y2 |= 1;
H A Dfpu_div.c155 u_int r0, r1, r2, r3, d0, d1, d2, d3, y0, y1, y2, y3; local
226 FPU_SUBS(d3, r3, y3); FPU_SUBCS(d2, r2, y2); \
265 y2 = y->fp_mant[2];
/freebsd-current/crypto/openssl/crypto/sm2/
H A Dsm2_crypt.c120 BIGNUM *y2 = NULL;
165 y2 = BN_CTX_get(ctx);
167 if (y2 == NULL) {
190 || !EC_POINT_get_affine_coordinates(group, kP, x2, y2, ctx)) {
196 || BN_bn2binpad(y2, x2y2 + field_size, field_size) < 0) {
282 BIGNUM *y2 = NULL;
328 y2 = BN_CTX_get(ctx);
330 if (y2 == NULL) {
354 || !EC_POINT_get_affine_coordinates(group, C1, x2, y2, ctx)) {
360 || BN_bn2binpad(y2, x2y
[all...]
/freebsd-current/contrib/bearssl/src/ssl/
H A Dssl_lru.c197 uint32_t y1, y2; local
201 y2 = x + TREE_LEFT_OFF;
207 *al = y2;
210 y2 = y1 + TREE_RIGHT_OFF;
216 y2 = x + TREE_RIGHT_OFF;
222 *al = y2;
225 y2 = y1 + TREE_LEFT_OFF;
/freebsd-current/contrib/bearssl/src/symcipher/
H A Ddes_ct.c206 uint32_t y0, y1, y2, y3, y4, y5, y6, y7, y8, y9; local
245 y2 = (uint32_t)0x37396665 ^ (x0 & (uint32_t)0x40EFA809);
277 y1 = y2 ^ (x1 & y3);
278 y2 = y4 ^ (x1 & y5);
294 y1 = y2 ^ (x2 & y3);
295 y2 = y4 ^ (x2 & y5);
303 y1 = y2 ^ (x3 & y3);
304 y2 = y4 ^ (x3 & y5);
308 y1 = y2 ^ (x4 & y3);
/freebsd-current/lib/libvgl/
H A Dvgl.h141 void VGLLine(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color);
142 void VGLBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color);
143 void VGLFilledBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color);
H A Dsimple.c185 VGLLine(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) argument
191 dy = SL_ABSOLUTE(y2, y1, sign_y);
200 SL_SWAP(x2, y2);
208 y = y2;
215 y1 = y2;
369 VGLBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) argument
372 VGLLine(object, x2, y1, x2, y2, color);
373 VGLLine(object, x2, y2, x1, y2, color);
374 VGLLine(object, x1, y2, x
378 VGLFilledBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) argument
[all...]
/freebsd-current/contrib/arm-optimized-routines/pl/math/test/
H A Dulp_wrappers.h23 mpfr_t y2; local
24 mpfr_init(y2);
25 mpfr_trunc(y2, y);
26 return mpfr_pow(ret, x, y2, rnd);
/freebsd-current/usr.bin/calendar/
H A Ddates.c173 int y2, m2, d2; local
179 y2 = tp2->tm_year;
183 if (y1 == y2) {
210 * - Take all days from <y1 .. y2>
211 * - Take all days from y2-[1 .. m2>
212 * - Take the first days of y2-m2
220 for (y = y1 + 1; y < y2; y++) {
226 monthdays = monthdaytab[isleap(y2)];
229 createdate(y2, m, d);
231 createdate(y2, m
[all...]
/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
185 y2 = z10;
186 y2 = _mm_add_epi32(y2, z14);
187 r2 = y2;
188 y2 = _mm_slli_epi32(y2, 9);
189 z2 = _mm_xor_si128(z2, y2);
249 y2 = z0;
250 y2
[all...]
H A Du8.h2 __m256i y0, y1, y2, y3, y4, y5, y6, y7, y8, y9, y10, y11, y12, y13, y14, variable
185 y2 = z10;
186 y2 = _mm256_add_epi32(y2, z14);
187 r2 = y2;
188 y2 = _mm256_slli_epi32(y2, 9);
189 z2 = _mm256_xor_si256(z2, y2);
249 y2 = z0;
250 y2
[all...]
/freebsd-current/tools/tools/indent_wrapper/
H A Dindent_wrapper.c380 uint64_t y2 = 0; local
434 y2 = 0;
468 p2->data[y2++] = ch;
469 if (y2 == BLOCK_SIZE) {
472 y2 = 0;
489 p2->data[y2++] = ch;
490 if (y2 == BLOCK_SIZE) {
493 y2 = 0;
523 p2->length = y2;
675 y2
[all...]
/freebsd-current/crypto/openssl/crypto/ec/
H A Dec2_smpl.c359 BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t; local
391 y2 = BN_CTX_get(ctx);
451 if (!BN_GF2m_add(y2, x1, x2))
453 if (!group->meth->field_mul(group, y2, y2, s, ctx))
455 if (!BN_GF2m_add(y2, y2, x2))
457 if (!BN_GF2m_add(y2, y2, y1))
460 if (!EC_POINT_set_affine_coordinates(group, r, x2, y2, ct
512 BIGNUM *lh, *y2; local
[all...]
/freebsd-current/contrib/dialog/
H A Dprogressbox.c112 int y2, x2; local
116 getyx(obj->obj.win, y2, x2);
118 ++y2;
119 wmove(obj->obj.win, y2, MARGIN);
122 y += y2;
123 thigh -= y2;
/freebsd-current/sys/dev/qat/qat_api/include/lac/
H A Dcpa_cy_ecsm2.h431 CpaFlatBuffer y2; member in struct:_CpaCyEcsm2KeyExPhase2OpData
465 CpaFlatBuffer y2; member in struct:_CpaCyEcsm2EncryptOutputData
489 CpaFlatBuffer y2; member in struct:_CpaCyEcsm2DecryptOutputData

Completed in 173 milliseconds

123