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

1 2 3

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
popcountdi2.c 22 du_int x2 = (du_int)a; local in function:__popcountdi2
23 x2 = x2 - ((x2 >> 1) & 0x5555555555555555uLL);
25 x2 = ((x2 >> 2) & 0x3333333333333333uLL) + (x2 & 0x3333333333333333uLL);
27 x2 = (x2 + (x2 >> 4)) & 0x0F0F0F0F0F0F0F0FuLL
    [all...]
popcountti2.c 34 du_int x2 = (du_int)(x3 + (x3 >> 64)); local in function:__popcountti2
36 su_int x = (su_int)(x2 + (x2 >> 32));
  /src/sys/external/isc/libsodium/dist/test/default/
hash.c 6 static unsigned char x2[] = variable in typeref:typename:unsigned char[]
22 crypto_hash(h, x2, sizeof x2 - 1U);
32 crypto_hash_sha256(h, x2, sizeof x2 - 1U);
  /src/lib/libm/complex/
catan.c 48 double a, t, x, x2, y; local in function:__weak_alias
56 x2 = x * x;
57 a = 1.0 - x2 - (y * y);
65 a = x2 + (t * t);
70 a = (x2 + (t * t))/a;
catanf.c 48 float a, t, x, x2, y; local in function:__weak_alias
56 x2 = x * x;
57 a = 1.0f - x2 - (y * y);
65 a = x2 + (t * t);
70 a = (x2 + (t * t))/a;
catanl.c 48 long double a, t, x, x2, y; local in function:__weak_alias
56 x2 = x * x;
57 a = 1.0L - x2 - (y * y);
65 a = x2 + (t * t);
70 a = (x2 + (t * t))/a;
cephes_subr.c 87 double f, x, x2, y, y2, rn, t; local in function:_ctans
97 x2 = 1.0;
107 x2 *= x;
109 t = y2 + x2;
117 x2 *= x;
119 t = y2 - x2;
cephes_subrf.c 87 float f, x, x2, y, y2, rn, t, d; local in function:_ctansf
96 x2 = 1.0f;
106 x2 *= x;
108 t = y2 + x2;
116 x2 *= x;
118 t = y2 - x2;
cephes_subrl.c 92 long double f, x, x2, y, y2, rn, t; local in function:_ctansl
102 x2 = 1.0;
112 x2 *= x;
114 t = y2 + x2;
122 x2 *= x;
124 t = y2 - x2;
  /src/sys/arch/m68k/fpe/
fpu_mul.c 103 uint32_t a2, a1, a0, x2, x1, x0, bit, m; local in function:fpu_mul
143 x2 = x->fp_mant[2];
149 FPU_ADDS(a2, a2, x2); \
fpu_sqrt.c 193 uint32_t x0, x1, x2; local in function:fpu_sqrt
225 FPU_ADDS(x2, x2, x2); \
230 x0 = (x0 << 1) | (x1 >> 31); x1 = (x1 << 1) | (x2 >> 31); \
231 x2 <<= 1; \
243 x2 = x->fp_mant[2];
330 FPU_SUBS(d2, x2, t2);
334 x0 = d0, x1 = d1, x2 = d2;
342 FPU_SUBS(d2, x2, t2)
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
curve25519_sandy2x.c 21 #define x2 var[1] macro
51 x_51.v[0] = (x2[1] << 26) + x2[0];
52 x_51.v[1] = (x2[3] << 26) + x2[2];
53 x_51.v[2] = (x2[5] << 26) + x2[4];
54 x_51.v[3] = (x2[7] << 26) + x2[6];
55 x_51.v[4] = (x2[9] << 26) + x2[8]
67 #define x2 macro
    [all...]
  /src/sys/arch/powerpc/fpu/
fpu_mul.c 109 u_int a3, a2, a1, a0, x3, x2, x1, x0, bit, m; local in function:fpu_mul
164 x2 = x->fp_mant[2];
171 FPU_ADDCS(a2, a2, x2); \
fpu_sqrt.c 197 u_int x0, x1, x2, x3; local in function:fpu_sqrt
244 FPU_ADDS(x3, x3, x3); FPU_ADDCS(x2, x2, x2); \
249 x0 = (x0 << 1) | (x1 >> 31); x1 = (x1 << 1) | (x2 >> 31); \
250 x2 = (x2 << 1) | (x3 >> 31); x3 <<= 1; \
262 x2 = x->fp_mant[2];
350 FPU_SUBS(d2, x2, t2);
354 x0 = d0, x1 = d1, x2 = d2
    [all...]
  /src/sys/arch/sparc/fpu/
fpu_mul.c 105 u_int a3, a2, a1, a0, x3, x2, x1, x0, bit, m; local in function:fpu_mul
147 x2 = x->fp_mant[2];
154 FPU_ADDCS(a2, a2, x2); \
fpu_sqrt.c 193 u_int x0, x1, x2, x3; local in function:fpu_sqrt
224 FPU_ADDS(x3, x3, x3); FPU_ADDCS(x2, x2, x2); \
229 x0 = (x0 << 1) | (x1 >> 31); x1 = (x1 << 1) | (x2 >> 31); \
230 x2 = (x2 << 1) | (x3 >> 31); x3 <<= 1; \
242 x2 = x->fp_mant[2];
330 FPU_SUBS(d2, x2, t2);
334 x0 = d0, x1 = d1, x2 = d2
    [all...]
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_rect.h 41 * @x2: horizontal ending coordinate (exclusive)
46 int x1, y1, x2, y2; member in struct:drm_rect
89 r->x2 = x + width;
109 r->x2 += (dw + 1) >> 1;
126 r->x2 += dx;
156 r->x2 /= horz;
169 return r->x2 - r->x1;
207 return r1->x1 == r2->x1 && r1->x2 == r2->x2 &&
  /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 in function:crypto_core_hsalsa20
38 x2 = LOAD32_LE(k + 4);
60 x2 ^= ROTL32(x14 + x10, 9);
61 x6 ^= ROTL32(x2 + x14, 13);
62 x10 ^= ROTL32(x6 + x2, 18);
68 x2 ^= ROTL32(x1 + x0, 9);
69 x3 ^= ROTL32(x2 + x1, 13);
70 x0 ^= ROTL32(x3 + x2, 18);
  /src/lib/libc/gdtoa/
smisc.c 182 ULong *x, *x0, x1, x2; local in function:any_on
190 x1 = x2 = x[n];
193 if (x1 != x2)
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_mem_test.cc 79 static bool AllocateTwoAdjacentArrays(char **x1, char **x2, size_t size) {
89 *x2 = reinterpret_cast<char*>(v[j]);
100 if (res && p == *x2) continue;
108 char *x1, *x2; local in function:TEST
109 if (!Ident(AllocateTwoAdjacentArrays)(&x1, &x2, size))
111 // fprintf(stderr, " large oob memset: %p %p %zd\n", x1, x2, size);
112 // Do a memset on x1 with huge out-of-bound access that will end up in x2.
116 delete [] x2;
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_mop.cc 197 int x2 = x; local in function:foo
198 (void)x2;
203 int x2 = x; local in function:bar
204 (void)x2;
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/hchacha20/
core_hchacha20.c 21 uint32_t x0, x1, x2, x3, x4, x5, x6, x7; local in function:crypto_core_hchacha20
27 x2 = 0x79622d32;
32 x2 = LOAD32_LE(c + 8);
51 QUARTERROUND(x2, x6, x10, x14);
55 QUARTERROUND(x2, x7, x8, x13);
61 STORE32_LE(out + 8, x2);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/ref10/
x25519_ref10.c 59 fe25519 x2; local in function:crypto_scalarmult_curve25519_ref10
79 fe25519_1(x2);
89 fe25519_cswap(x2, x3, swap);
93 fe25519_sub(tmp1, x2, z2);
94 fe25519_add(x2, x2, z2);
96 fe25519_mul(z3, tmp0, x2);
99 fe25519_sq(tmp1, x2);
102 fe25519_mul(x2, tmp1, tmp0);
111 fe25519_cswap(x2, x3, swap)
    [all...]
  /src/lib/libm/src/
e_coshl.c 94 long double hi,lo,x2; local in function:coshl
112 x2 = x*x;
114 long double x4 = x2*x2;
115 RETURNI(((C16*x2 + C14)*x4 + (C12*x2 + C10))*(x4*x4*x2) +
116 ((C8*x2 + C6)*x2 + C4)*x4 + C2*x2 + 1)
    [all...]
e_sinhl.c 93 long double hi,lo,x2; local in function:sinhl
116 x2 = x*x;
118 long double x4 = x2*x2;
119 RETURNI(((S17*x2 + S15)*x4 + (S13*x2 + S11))*(x2*x*x4*x4) +
120 ((S9*x2 + S7)*x2 + S5)*(x2*x*x2) + S3*(x2*x) + x)
    [all...]

Completed in 76 milliseconds

1 2 3