HomeSort by: relevance | last modified time | path
    Searched defs:x1 (Results 1 - 25 of 202) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/lib/libc/gdtoa/
gmisc.c 43 ULong *x, *x1, *xe, y; local
46 x = x1 = b->x;
55 *x1++ = (y | (*x << n)) & ALL_ON;
58 if ((*x1 = y) !=0)
59 x1++;
63 *x1++ = *x++;
66 ptrdiff_t td = x1 - b->x;
hexnan.c 38 L_shift(x, x1, i) ULong *x; ULong *x1; int i;
40 L_shift(ULong *x, ULong *x1, int i)
51 } while(++x < x1);
62 ULong c, h, *x, *x1, *xe; local
73 x1 = xe = x;
86 if (x < x1 && i < 8)
87 L_shift(x, x1, i);
94 x1 = x;
129 if (x < x1 && i < 8
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/
arm64cpuid.pl 85 cbz x1,.Lret // len==0?
86 cmp x1,#15
91 subs x1,x1,#1
99 sub x1,x1,#1 subroutine
105 sub x1,x1,#8 subroutine
106 tst x1,#-8
108 cbnz x1,.Little // len!=0
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
paramless.cc 41 int x1 = outer1.fn (0); local
45 return x1 + x2;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
paramless.cc 41 int x1 = outer1.fn (0); local
45 return x1 + x2;
  /src/external/lgpl3/gmp/dist/mpz/
prodlimbs.c 85 mpz_t x1, x2; local
94 PTR (x1) = factors + i;
95 ALLOC (x1) = j;
97 i = mpz_prodlimbs (x1, factors, i);
101 cy = mpn_mul (prod, PTR(x1), i, PTR(x2), j);
103 cy = mpn_mul (prod, PTR(x2), j, PTR(x1), i);
  /src/sys/arch/m68k/fpe/
fpu_mul.c 103 uint32_t a2, a1, a0, x2, x1, x0, bit, m; local
144 x1 = x->fp_mant[1];
150 FPU_ADDCS(a1, a1, x1); \
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/
gcc_qdiv.c 17 register double x = dst.s.hi, x1 = dst.s.lo, local
48 tmp = ((tmp + x1) - y1 * q) / y;
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
curve25519_sandy2x.c 20 #define x1 var[0] macro
41 fe_frombytes(x1, p);
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
sse2_64_32.h 22 union { int64_t as64; int32_t as32[2]; } x0, x1; local
23 x0.as64 = q0; x1.as64 = q1;
24 return _mm_set_epi32(x1.as32[1], x1.as32[0], x0.as32[1], x0.as32[0]);
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_mp_karatsuba_mul.c 51 mp_int x0, x1, y0, y1, t1, x0y0, x1y1; local
66 if (mp_init_size (&x1, a->used - B) != MP_OKAY)
69 goto X1;
83 x1.used = a->used - B;
103 tmpx = x1.dp;
115 * upper words x1/y1 must have a known number of digits
124 if (mp_mul (&x1, &y1, &x1y1) != MP_OKAY)
125 goto X1Y1; /* x1y1 = x1*y1 */
127 /* now calc x1+x0 and y1+y0 */
128 if (s_mp_add (&x1, &x0, &t1) != MP_OKAY
    [all...]
bn_mp_karatsuba_sqr.c 29 mp_int x0, x1, t1, t2, x0x0, x1x1; local
43 if (mp_init_size (&x1, a->used - B) != MP_OKAY)
48 goto X1;
68 dst = x1.dp;
75 x1.used = a->used - B;
79 /* now calc the products x0*x0 and x1*x1 */
82 if (mp_sqr (&x1, &x1x1) != MP_OKAY)
83 goto X1X1; /* x1x1 = x1*x1 */
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/
arm64cpuid.pl 95 cbz x1,.Lret // len==0?
96 cmp x1,#15
101 subs x1,x1,#1
109 sub x1,x1,#1 subroutine
115 sub x1,x1,#8 subroutine
116 tst x1,#-8
118 cbnz x1,.Little // len!=0
    [all...]
  /src/external/lgpl3/gmp/dist/mpn/generic/
sqr_basecase.c 178 mp_limb_t x0, x1; local
213 x1 = rp[i + 1];
214 rp[i + 1] = (-x1 - (x0 != 0)) & GMP_NUMB_MASK;
215 __GMPN_SUB_1 (cy, rp + i + 2, rp + i + 2, 2, (x1 | x0) != 0);
223 mp_limb_t x0, x1; local
263 x1 = rp[i + 1];
264 rp[i + 1] = (-x1 - (x0 != 0)) & GMP_NUMB_MASK;
267 __GMPN_SUB_1 (cy, rp + i + 2, rp + i + 2, 2, (x1 | x0) != 0);
270 mpn_decr_u (rp + i + 2, (x1 | x0) != 0);
  /src/sys/arch/powerpc/fpu/
fpu_mul.c 109 u_int a3, a2, a1, a0, x3, x2, x1, x0, bit, m; local
165 x1 = x->fp_mant[1];
172 FPU_ADDCS(a1, a1, x1); \
  /src/sys/arch/sparc/fpu/
fpu_mul.c 105 u_int a3, a2, a1, a0, x3, x2, x1, x0, bit, m; local
148 x1 = x->fp_mant[1];
155 FPU_ADDCS(a1, a1, x1); \
  /src/sys/dev/rcons/
raster_text.c 87 int x1, y1; local
111 for ( i = 0, x1 = x, y1 = y;
113 ++i, x1 += c->nextx, y1 += c->nexty )
119 if ( x1 + c->homex < 0 || y1 + c->homey < 0 ||
120 x1 + c->homex + charrast->width > r->width ||
131 for ( i = 0, x1 = x, y1 = y;
133 ++i, x1 += c->nextx, y1 += c->nexty )
140 thisx = x1 + c->homex;
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_rect.h 40 * @x1: horizontal starting coordinate (inclusive)
46 int x1, y1, x2, y2; member in struct:drm_rect
57 #define DRM_RECT_ARG(r) drm_rect_width(r), drm_rect_height(r), (r)->x1, (r)->y1
73 (r)->x1 >> 16, (((r)->x1 & 0xffff) * 15625) >> 10, \
87 r->x1 = x;
107 r->x1 -= dw >> 1;
124 r->x1 += dx;
141 drm_rect_translate(r, x - r->x1, y - r->y1);
154 r->x1 /= horz
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/hsalsa20/ref2/
core_hsalsa20_ref2.c 22 uint32_t x0, x1, x2, x3, x4, x5, x6, x7, x8, local
37 x1 = LOAD32_LE(k + 0);
55 x9 ^= ROTL32(x5 + x1, 7);
57 x1 ^= ROTL32(x13 + x9, 13);
58 x5 ^= ROTL32(x1 + x13, 18);
67 x1 ^= ROTL32(x0 + x3, 7);
68 x2 ^= ROTL32(x1 + x0, 9);
69 x3 ^= ROTL32(x2 + x1, 13);
  /src/crypto/external/apache2/openssl/dist/crypto/
arm64cpuid.pl 144 cbz x1,.Lret // len==0?
145 cmp x1,#15
150 subs x1,x1,#1
158 sub x1,x1,#1 subroutine
164 sub x1,x1,#8 subroutine
165 tst x1,#-8
167 cbnz x1,.Little // len!=0
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/idea/
i_cbc.c 99 register unsigned long x1, x2, x3, x4, t0, t1, ul; local
102 x1 = (x2 >> 16);
117 x1 &= 0xffff;
118 idea_mul(x1, x1, *p, ul);
127 d[0] = (t0 & 0xffff) | ((x1 & 0xffff) << 16);
  /src/crypto/external/apache2/openssl/dist/crypto/rc2/
rc2_cbc.c 98 register RC2_INT x0, x1, x2, x3, t; local
103 x1 = (RC2_INT)(l >> 16L);
113 t = (x0 + (x1 & ~x3) + (x2 & x3) + *(p0++)) & 0xffff;
115 t = (x1 + (x2 & ~x0) + (x3 & x0) + *(p0++)) & 0xffff;
116 x1 = (t << 2) | (t >> 14);
117 t = (x2 + (x3 & ~x1) + (x0 & x1) + *(p0++)) & 0xffff;
119 t = (x3 + (x0 & ~x2) + (x1 & x2) + *(p0++)) & 0xffff;
128 x1 += p1[x0 & 0x3f];
129 x2 += p1[x1 & 0x3f]
142 register RC2_INT x0, x1, x2, x3, t; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/idea/
i_cbc.c 99 register IDEA_INT x1, x2, x3, x4, t0, t1, ul; local
102 x1 = (x2 >> 16);
117 x1 &= 0xffff;
118 idea_mul(x1, x1, *p, ul);
127 d[0] = (t0 & 0xffff) | ((x1 & 0xffff) << 16);
  /src/crypto/external/bsd/openssl/dist/crypto/rc2/
rc2_cbc.c 98 register RC2_INT x0, x1, x2, x3, t; local
103 x1 = (RC2_INT) (l >> 16L);
113 t = (x0 + (x1 & ~x3) + (x2 & x3) + *(p0++)) & 0xffff;
115 t = (x1 + (x2 & ~x0) + (x3 & x0) + *(p0++)) & 0xffff;
116 x1 = (t << 2) | (t >> 14);
117 t = (x2 + (x3 & ~x1) + (x0 & x1) + *(p0++)) & 0xffff;
119 t = (x3 + (x0 & ~x2) + (x1 & x2) + *(p0++)) & 0xffff;
128 x1 += p1[x0 & 0x3f];
129 x2 += p1[x1 & 0x3f]
144 register RC2_INT x0, x1, x2, x3, t; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/idea/
i_cbc.c 92 register IDEA_INT x1, x2, x3, x4, t0, t1, ul; local
95 x1 = (x2 >> 16);
110 x1 &= 0xffff;
111 idea_mul(x1, x1, *p, ul);
120 d[0] = (t0 & 0xffff) | ((x1 & 0xffff) << 16);

Completed in 44 milliseconds

1 2 3 4 5 6 7 8 9