Searched refs:y1 (Results 1 - 25 of 63) sorted by relevance

123

/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dmath64.h114 uint64_t x1, y1, y1z; local
119 y1 = y - y1z * z;
122 * INVARIANT: x * y = res * z + rem + (y1 + y1z * z) * x1
123 * INVARIANT: y1 < z
131 rem += y1;
132 if ((rem < y1) || (rem >= z)) {
138 /* Shift x1 right and (y1 + y1z * z) left */
140 if ((y1 * 2 < y1) || (y1 *
[all...]
/freebsd-current/contrib/bearssl/src/hash/
H A Dghash_ctmul64.c36 uint64_t y0, y1, y2, y3; local
44 y1 = y & (uint64_t)0x2222222222222222;
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
88 y1 = br_dec64be(yb);
113 y1 ^= br_dec64be(src);
117 y1r = rev64(y1);
[all...]
H A Dghash_ctmul32.c52 uint32_t y0, y1, y2, y3; local
60 y1 = y & (uint32_t)0x22222222;
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
83 y1 = y & (uint32_t)0x22222222;
88 * (x0+W*x1)*(y0+W*y1) -> a0:b0
90 * ((x0+x2)+W*(x1+x3))*((y0+y2)+W*(y1+y3)) -> a6:b6
95 b1 = y1 >> 1;
168 uint32_t y0, y1, y2, y3; local
177 y1 = y & (uint32_t)0x22222222;
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)
[all...]
/freebsd-current/stand/liblua/
H A Dgfx_utils.c50 uint32_t x1, y1, x2, y2, f; local
61 y1 = luaL_checknumber(L, 3);
67 y1 = gfx_state.tg_origin.tp_row + y1 * 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
105 y1 = luaL_checknumber(L, 3);
114 if (gfx_fb_putimage(&png, x1, y1, x2, y2, f) == 0)
143 uint32_t x0, y0, x1, y1, wd; local
155 y1
164 uint32_t x0, y0, x1, y1, x2, y2, width; local
187 uint32_t x0, y0, x1, y1, fill; local
208 uint32_t x0, y0, x1, y1; local
[all...]
/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 -- )
52 * fb-line ( x0 y0 x1 y1 wd -- )
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
77 y1 = stackPopINT(pVM->pStack);
82 y1
117 uint32_t x1, y1, x2, y2, f; local
167 FICL_UNS x0, y0, x1, y1, wd; 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_hypotf.c22 float a,b,t1,t2,y1,y2,w; local
70 SET_FLOAT_WORD(y1,hb&0xfffff000);
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
108 y1 = 0;
109 SET_HIGH_WORD(y1,hb);
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
104 y1 = b;
106 uv.e = y1; uv.bits.manl = 0; y1 = uv.e;
107 y2 = b - y1;
111 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b)));
H A De_pow.c100 double y1,t1,t2,r,s,t,u,v,w; local
256 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
257 y1 = y;
258 SET_LOW_WORD(y1,0);
259 p_l = (y-y1)*t1+y*t2;
260 p_h = y1*t1;
/freebsd-current/contrib/bearssl/src/ssl/
H A Dssl_lru.c197 uint32_t y1, y2; local
199 y1 = get_left(cc, x);
200 if (y1 != ADDR_NULL) {
205 z = get_right(cc, y1);
208 return y1;
210 y2 = y1 + TREE_RIGHT_OFF;
211 y1 = z;
214 y1 = get_right(cc, x);
215 if (y1 != ADDR_NULL) {
220 z = get_left(cc, y1);
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dgcc_qdiv.c15 register double x = dst.s.hi, x1 = dst.s.lo, y = src.s.hi, y1 = src.s.lo; local
45 tmp = ((tmp + x1) - y1 * q) / y;
/freebsd-current/lib/libvgl/
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);
199 SL_SWAP(x1, y1);
210 y1 = y1; */
213 y = y1;
215 y1 = y2;
229 plot(object, x1, y1, reverse, color); /* plot first two points */
244 plot(object, x1, y1, reverse, color);
245 plot(object, --x1, y1, revers
369 VGLBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) argument
378 VGLFilledBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color) argument
[all...]
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);
/freebsd-current/usr.bin/calendar/
H A Ddates.c172 int y1, m1, d1; local
176 y1 = tp1->tm_year;
183 if (y1 == y2) {
187 createdate(y1, m1, d);
196 monthdays = monthdaytab[isleap(y1)];
198 createdate(y1, m1, d);
201 createdate(y1, m, d);
203 createdate(y1, m2, d);
208 * - Take the leftover days from y1-m1
209 * - Take all days from y1
[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
244 y1 = (uint32_t)0xAEAAEDFF ^ (x0 & (uint32_t)0x500FB821);
276 y0 = y0 ^ (x1 & y1);
277 y1 = y2 ^ (x1 & y3);
293 y0 = y0 ^ (x2 & y1);
294 y1 = y2 ^ (x2 & y3);
302 y0 = y0 ^ (x3 & y1);
303 y1 = y2 ^ (x3 & y3);
307 y0 = y0 ^ (x4 & y1);
308 y1
[all...]
H A Daes_ct.c42 uint32_t y1, y2, y3, y4, y5, y6, y7, y8, y9; local
73 y1 = t0 ^ x7;
74 y4 = y1 ^ x3;
76 y2 = y1 ^ x0;
77 y5 = y1 ^ x6;
101 t8 = y5 & y1;
145 z4 = t40 & y1;
/freebsd-current/crypto/openssl/crypto/bn/
H A Dbn_rsa_fips186_4.c252 BIGNUM *tmp, *R, *r1r2x2, *y1, *r1x2; local
262 y1 = BN_CTX_get(ctx);
339 if (BN_copy(y1, Y) == NULL
340 || !BN_sub_word(y1, 1)
341 || !BN_gcd(tmp, y1, e, ctx))
364 BN_clear(y1);
/freebsd-current/sys/powerpc/fpu/
H A Dfpu_sqrt.c192 u_int y0, y1, y2, y3; local
310 y1 = 0;
324 t1 = y1 | bit;
330 y1 |= bit << 1;
337 /* calculate q2. note (y1&1)==0; y0 (aka t0) is fixed. */
338 #define t1 y1
351 y1 |= 1; /* now t1, y1 are set in concrete */
370 /* calculate q3. y0, t0, y1, t1 all fixed; y2, t2, almost done. */
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)
264 y1 = y->fp_mant[1];
/freebsd-current/contrib/ncurses/ncurses/widechar/
H A Dlib_get_wstr.c67 int y1 = win->_cury; local
76 while (win->_cury < y1
77 || (win->_cury == y1 && win->_curx < x1))
/freebsd-current/contrib/ncurses/ncurses/base/
H A Dlib_getstr.c57 int y1 = win->_cury; local
63 while (win->_cury < y1
64 || (win->_cury == y1 && win->_curx < x1))
/freebsd-current/tools/tools/indent_wrapper/
H A Dindent_wrapper.c379 uint64_t y1 = 0; local
432 y1 = 0;
448 p1->mask[y1] = BLOCK_ADD >> 8;
449 p1->data[y1++] = ch;
450 if (y1 == BLOCK_SIZE) {
453 y1 = 0;
483 p1->data[y1++] = ch;
484 if (y1 == BLOCK_SIZE) {
487 y1 = 0;
522 p1->length = y1;
[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
145 y1 = z9;
146 y1 = _mm_add_epi32(y1, z13);
147 r1 = y1;
148 y1 = _mm_slli_epi32(y1, 13);
149 z1 = _mm_xor_si128(z1, y1);
225 y1 = z3;
226 y1
[all...]
H A Du8.h2 __m256i y0, y1, y2, y3, y4, y5, y6, y7, y8, y9, y10, y11, y12, y13, y14, variable
145 y1 = z9;
146 y1 = _mm256_add_epi32(y1, z13);
147 r1 = y1;
148 y1 = _mm256_slli_epi32(y1, 13);
149 z1 = _mm256_xor_si256(z1, y1);
225 y1 = z3;
226 y1
[all...]

Completed in 148 milliseconds

123