Home
last modified time | relevance | path

Searched refs:x1 (Results 1 – 25 of 112) sorted by relevance

12345

/dragonfly/contrib/gcc-8.0/gcc/
H A Dtarget-insns.def36 DEF_TARGET_INSN (allocate_stack, (rtx x0, rtx x1))
49 DEF_TARGET_INSN (clear_cache, (rtx x0, rtx x1))
50 DEF_TARGET_INSN (doloop_begin, (rtx x0, rtx x1))
51 DEF_TARGET_INSN (doloop_end, (rtx x0, rtx x1))
64 DEF_TARGET_INSN (movstr, (rtx x0, rtx x1, rtx x2))
67 DEF_TARGET_INSN (oacc_dim_pos, (rtx x0, rtx x1))
68 DEF_TARGET_INSN (oacc_dim_size, (rtx x0, rtx x1))
75 DEF_TARGET_INSN (omp_simt_ordered, (rtx x0, rtx x1))
83 DEF_TARGET_INSN (ptr_extend, (rtx x0, rtx x1))
102 DEF_TARGET_INSN (tablejump, (rtx x0, rtx x1))
[all …]
H A Drtl-tests.c249 rtx x1 = gen_int_mode (poly_int64 (1, 1), QImode);
253 ASSERT_EQ (x1, gen_int_mode (poly_int64 (1, 1), QImode));
254 ASSERT_NE (x1, gen_int_mode (poly_int64 (1, 1), HImode));
255 ASSERT_NE (x1, x255);
258 ASSERT_KNOWN_EQ (const_poly_int_value (x1), poly_int64 (1, 1));
262 ASSERT_KNOWN_EQ (rtx_to_poly_int64 (x1), poly_int64 (1, 1));
283 ASSERT_EQ (plus_constant (QImode, x1, poly_int64 (4, -2)),
H A Dipa-icf-gimple.c392 tree x1, x2, y1, y2, z1, z2; in compare_operand() local
429 x1 = TREE_OPERAND (t1, 0); in compare_operand()
441 if (!compare_operand (x1, x2)) in compare_operand()
446 x1 = TREE_OPERAND (t1, 0); in compare_operand()
462 if (!compare_operand (x1, x2)) in compare_operand()
470 x1 = TREE_OPERAND (t1, 0); in compare_operand()
475 ret = compare_operand (x1, x2) in compare_operand()
505 x1 = TREE_OPERAND (t1, 0); in compare_operand()
508 ret = compare_operand (x1, x2); in compare_operand()
513 x1 = TREE_OPERAND (t1, 0); in compare_operand()
[all …]
/dragonfly/contrib/gdtoa/
H A Dhexnan.c36 L_shift(x, x1, i) ULong *x; ULong *x1; int i; in L_shift() argument
49 } while(++x < x1);
71 x1 = xe = x;
92 x1 = x;
130 x1 = x0;
131 do *x1++ = *x++;
133 do *x1++ = 0;
141 for(x1 = xe;; --x1) {
142 if (*x1 != 0)
144 if (x1 == x0) {
[all …]
H A Dgmisc.c41 ULong *x, *x1, *xe, y; local
44 x = x1 = b->x;
53 *x1++ = (y | (*x << n)) & ALL_ON;
56 if ((*x1 = y) !=0)
57 x1++;
61 *x1++ = *x++;
63 if ((b->wds = x1 - b->x) == 0)
H A Dsmisc.c171 ULong *x, *x0, x1, x2; local
179 x1 = x2 = x[n];
180 x1 >>= k;
181 x1 <<= k;
182 if (x1 != x2)
/dragonfly/crypto/libressl/crypto/rc2/
H A Drc2_cbc.c140 RC2_INT x0,x1,x2,x3,t; in RC2_encrypt() local
145 x1=(RC2_INT)(l>>16L); in RC2_encrypt()
159 x1=(t<<2)|(t>>14); in RC2_encrypt()
160 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff; in RC2_encrypt()
171 x1+=p1[x0&0x3f]; in RC2_encrypt()
172 x2+=p1[x1&0x3f]; in RC2_encrypt()
185 RC2_INT x0,x1,x2,x3,t; in RC2_decrypt() local
190 x1=(RC2_INT)(l>>16L); in RC2_decrypt()
205 x2=(t-(x3& ~x1)-(x0&x1)- *(p0--))&0xffff; in RC2_decrypt()
206 t=((x1<<14)|(x1>>2))&0xffff; in RC2_decrypt()
[all …]
H A Drc2_locl.h148 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff; \
150 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff; \
151 x1=(t<<2)|(t>>14); \
152 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff; \
154 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff; \
/dragonfly/sys/dev/drm/
H A Ddrm_rect.c44 r1->x1 = max(r1->x1, r2->x1); in drm_rect_intersect()
74 diff = clip->x1 - dst->x1; in drm_rect_clip_scaled()
332 r->x1 = tmp.y1; in drm_rect_rotate()
335 r->y2 = width - tmp.x1; in drm_rect_rotate()
339 r->x1 = width - tmp.x2; in drm_rect_rotate()
340 r->x2 = width - tmp.x1; in drm_rect_rotate()
348 r->y1 = tmp.x1; in drm_rect_rotate()
392 r->x1 = width - tmp.y2; in drm_rect_rotate_inv()
394 r->y1 = tmp.x1; in drm_rect_rotate_inv()
399 r->x1 = width - tmp.x2; in drm_rect_rotate_inv()
[all …]
/dragonfly/crypto/libressl/crypto/ec/
H A Dec2_mult.c142 if (!group->meth->field_mul(group, x1, x1, z2, ctx)) in gf2m_Madd()
148 if (!BN_GF2m_add(z1, z1, x1)) in gf2m_Madd()
154 if (!BN_GF2m_add(x1, x1, t2)) in gf2m_Madd()
209 if (!BN_GF2m_add(z1, z1, x1)) in gf2m_Mxy()
213 if (!group->meth->field_mul(group, x1, z2, x1, ctx)) in gf2m_Mxy()
266 BIGNUM *x1, *x2, *z1, *z2; in ec_GF2m_montgomery_point_multiply() local
285 if ((x1 = BN_CTX_get(ctx)) == NULL) in ec_GF2m_montgomery_point_multiply()
293 if (!bn_wexpand(x1, group->field.top)) in ec_GF2m_montgomery_point_multiply()
302 if (!BN_GF2m_mod_arr(x1, &point->X, group->poly)) in ec_GF2m_montgomery_point_multiply()
306 if (!group->meth->field_sqr(group, z2, x1, ctx)) in ec_GF2m_montgomery_point_multiply()
[all …]
H A Dec2_smpl.c445 BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t; in ec_GF2m_simple_add() local
468 if ((x1 = BN_CTX_get(ctx)) == NULL) in ec_GF2m_simple_add()
491 if (!BN_copy(x1, &b->X)) in ec_GF2m_simple_add()
496 if (!EC_POINT_get_affine_coordinates(group, b, x1, y1, ctx)) in ec_GF2m_simple_add()
501 if (BN_GF2m_cmp(x0, x1)) { in ec_GF2m_simple_add()
502 if (!BN_GF2m_add(t, x0, x1)) in ec_GF2m_simple_add()
517 if (BN_GF2m_cmp(y0, y1) || BN_is_zero(x1)) { in ec_GF2m_simple_add()
523 if (!group->meth->field_div(group, s, y1, x1, ctx)) in ec_GF2m_simple_add()
525 if (!BN_GF2m_add(s, s, x1)) in ec_GF2m_simple_add()
536 if (!BN_GF2m_add(y2, x1, x2)) in ec_GF2m_simple_add()
/dragonfly/sys/dev/drm/include/drm/
H A Ddrm_rect.h42 int x1, y1, x2, y2; member
53 #define DRM_RECT_ARG(r) drm_rect_width(r), drm_rect_height(r), (r)->x1, (r)->y1
69 (r)->x1 >> 16, (((r)->x1 & 0xffff) * 15625) >> 10, \
86 r->x1 -= dw >> 1; in drm_rect_adjust_size()
103 r->x1 += dx; in drm_rect_translate()
119 r->x1 /= horz; in drm_rect_downscale()
134 return r->x2 - r->x1; in drm_rect_width()
172 return r1->x1 == r2->x1 && r1->x2 == r2->x2 && in drm_rect_equals()
/dragonfly/contrib/gcc-4.7/libgcc/config/i386/32/
H A Dsfp-machine.h11 #define __FP_FRAC_ADD_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \ argument
24 "%2" ((USItype) (x1)), \
28 #define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ argument
37 "%1" ((USItype) (x1)), \
41 #define __FP_FRAC_SUB_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \ argument
54 "2" ((USItype) (x1)), \
58 #define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ argument
67 "1" ((USItype) (x1)), \
/dragonfly/contrib/gmp/mpn/generic/
H A Dsqr_basecase.c148 mp_limb_t x0, x1; in mpn_sqr_basecase() local
183 x1 = rp[i + 1]; in mpn_sqr_basecase()
184 rp[i + 1] = (-x1 - (x0 != 0)) & GMP_NUMB_MASK; in mpn_sqr_basecase()
185 __GMPN_SUB_1 (cy, rp + i + 2, rp + i + 2, 2, (x1 | x0) != 0); in mpn_sqr_basecase()
193 mp_limb_t x0, x1; in mpn_sqr_basecase() local
229 x1 = rp[i + 1]; in mpn_sqr_basecase()
230 rp[i + 1] = (-x1 - (x0 != 0)) & GMP_NUMB_MASK; in mpn_sqr_basecase()
233 __GMPN_SUB_1 (cy, rp + i + 2, rp + i + 2, 2, (x1 | x0) != 0); in mpn_sqr_basecase()
236 mpn_decr_u (rp + i + 2, (x1 | x0) != 0); in mpn_sqr_basecase()
/dragonfly/crypto/libressl/crypto/idea/
H A Di_cbc.c139 unsigned long x1,x2,x3,x4,t0,t1,ul; in idea_encrypt() local
142 x1=(x2>>16); in idea_encrypt()
157 x1&=0xffff; in idea_encrypt()
158 idea_mul(x1,x1,*p,ul); p++; in idea_encrypt()
166 d[0]=(t0&0xffff)|((x1&0xffff)<<16); in idea_encrypt()
H A Didea_lcl.h134 x1&=0xffff; \
135 idea_mul(x1,x1,*p,ul); p++; \
140 t0=(x1^x3)&0xffff; \
145 x1^=t1; \
/dragonfly/contrib/gcc-8.0/libgcc/soft-fp/
H A Dop-4.h668 r1 = x1 + y1; \
669 __FP_FRAC_ADD_3_c2 = r1 < x1; \
685 r1 = x1 + y1; \
686 __FP_FRAC_ADD_4_c2 = r1 < x1; \
705 r1 = x1 - y1; \
706 __FP_FRAC_SUB_3_c2 = r1 > x1; \
722 r1 = x1 - y1; \
723 __FP_FRAC_SUB_4_c2 = r1 > x1; \
742 __FP_FRAC_DEC_3_t1 = x1; \
758 __FP_FRAC_DEC_4_t1 = x1; \
[all …]
/dragonfly/contrib/gcc-4.7/libgcc/soft-fp/
H A Dop-4.h531 r1 = x1 + y1; \
532 _c2 = r1 < x1; \
545 r1 = x1 + y1; \
546 _c2 = r1 < x1; \
563 r1 = x1 - y1; \
564 _c2 = r1 > x1; \
566 _c2 |= _c1 && (y1 == x1); \
577 r1 = x1 - y1; \
578 _c2 = r1 > x1; \
580 _c2 |= _c1 && (y1 == x1); \
[all …]
/dragonfly/crypto/openssh/
H A Dchacha.c92 u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; in chacha_encrypt_bytes() local
125 x1 = j1; in chacha_encrypt_bytes()
142 QUARTERROUND( x1, x5, x9,x13) in chacha_encrypt_bytes()
146 QUARTERROUND( x1, x6,x11,x12) in chacha_encrypt_bytes()
151 x1 = PLUS(x1,j1); in chacha_encrypt_bytes()
168 x1 = XOR(x1,U8TO32_LITTLE(m + 4)); in chacha_encrypt_bytes()
191 U32TO8_LITTLE(c + 4,x1); in chacha_encrypt_bytes()
/dragonfly/lib/libvgl/
H A Dsimple.c126 VGLLine(VGLBitmap *object, int x1, int y1, int x2, int y2, byte color) in VGLLine() argument
130 dx = x2-x1; ax = ABS(dx)<<1; sx = SGN(dx); x = x1; in VGLLine()
160 VGLBox(VGLBitmap *object, int x1, int y1, int x2, int y2, byte color) in VGLBox() argument
162 VGLLine(object, x1, y1, x2, y1, color); in VGLBox()
164 VGLLine(object, x2, y2, x1, y2, color); in VGLBox()
165 VGLLine(object, x1, y2, x1, y1, color); in VGLBox()
169 VGLFilledBox(VGLBitmap *object, int x1, int y1, int x2, int y2, byte color) in VGLFilledBox() argument
173 for (y=y1; y<=y2; y++) VGLLine(object, x1, y, x2, y, color); in VGLFilledBox()
/dragonfly/crypto/libressl/crypto/chacha/
H A Dchacha-merged.c125 u32 x0, x1, x2, x3, x4, x5, x6, x7; in chacha_encrypt_bytes() local
162 x1 = j1; in chacha_encrypt_bytes()
179 QUARTERROUND(x1, x5, x9, x13) in chacha_encrypt_bytes()
183 QUARTERROUND(x1, x6, x11, x12) in chacha_encrypt_bytes()
188 x1 = PLUS(x1, j1); in chacha_encrypt_bytes()
206 U32TO8_LITTLE(x->ks + 4, x1); in chacha_encrypt_bytes()
224 x1 = XOR(x1, U8TO32_LITTLE(m + 4)); in chacha_encrypt_bytes()
250 U32TO8_LITTLE(c + 4, x1); in chacha_encrypt_bytes()
/dragonfly/sys/crypto/chacha20/
H A Dchacha.c113 u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; in chacha_encrypt_bytes() local
150 x1 = j1; in chacha_encrypt_bytes()
167 QUARTERROUND( x1, x5, x9,x13) in chacha_encrypt_bytes()
171 QUARTERROUND( x1, x6,x11,x12) in chacha_encrypt_bytes()
176 x1 = PLUS(x1,j1); in chacha_encrypt_bytes()
194 x1 = XOR(x1,U8TO32_LITTLE(m + 4)); in chacha_encrypt_bytes()
227 U32TO8_LITTLE(c + 4,x1); in chacha_encrypt_bytes()
/dragonfly/sbin/newfs_msdos/
H A Dmkfs_msdos.c248 u_int fat, bss, rds, cls, dir, lsn, x, x1, x2; in mkfs_msdos() local
547 x1 = bpb.bpbResSectors + rds; in mkfs_msdos()
553 x1 += x * bpb.bpbFATs; in mkfs_msdos()
673 x1 = sizeof(struct bs); in mkfs_msdos()
674 bsbpb = (struct bsbpb *)(img + x1); in mkfs_msdos()
687 x1 += sizeof(struct bsbpb); in mkfs_msdos()
689 bsxbpb = (struct bsxbpb *)(img + x1); in mkfs_msdos()
696 x1 += sizeof(struct bsxbpb); in mkfs_msdos()
698 bsx = (struct bsx *)(img + x1); in mkfs_msdos()
715 x1 += sizeof(struct bsx); in mkfs_msdos()
[all …]
/dragonfly/contrib/file/magic/Magdir/
H A Dxenix69 >0x1e leshort &0x1 executable
70 >0x1e leshort ^0x1 object file
79 >0 byte &0x1 executable
80 >0 byte ^0x1 relocatable
89 >0x1e leshort &0x1 executable
90 >0x1e leshort ^0x1 object file
/dragonfly/usr.bin/evtranalyze/
H A Dsvg.c66 struct xml_attribute x1, y1, x2, y2, cl; member
244 xml_attribute_init(&line->x1, "x1", NULL); in svg_line_init()
245 xml_elem_set_attribute(&line->el, &line->x1); in svg_line_init()
275 svg_line_draw(svg_document_t doc, svg_line_t line, double x1, double _y1, in svg_line_draw() argument
278 snprintf(&line->x1_val[0], sizeof(line->x1_val), "%.20lf", x1); in svg_line_draw()
279 xml_attribute_set_value(&line->x1, &line->x1_val[0]); in svg_line_draw()

12345