/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/renesas/ |
rz-smarc-common.dtsi | 74 x1: x1-clock { label
|
/src/lib/libc/gdtoa/ |
gmisc.c | 43 ULong *x, *x1, *xe, y; local in function:rshift 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 in function:hexnan 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...] |
smisc.c | 182 ULong *x, *x0, x1, x2; local in function:any_on 190 x1 = x2 = x[n]; 191 x1 >>= k; 192 x1 <<= k; 193 if (x1 != 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 144 x1 = x->fp_mant[1]; 150 FPU_ADDCS(a1, a1, x1); \
|
fpu_sqrt.c | 193 uint32_t x0, x1, x2; local in function:fpu_sqrt 226 FPU_ADDCS(x1, x1, x1); FPU_ADDC(x0, x0, x0); \ 230 x0 = (x0 << 1) | (x1 >> 31); x1 = (x1 << 1) | (x2 >> 31); \ 242 x1 = x->fp_mant[1]; 299 FPU_SUBS(d1, x1, t1); 302 x0 = d0, x1 = d1; /* x -= t * [all...] |
fpu_cordic.c | 344 struct fpn x1; local in function:fpu_cordit1 365 * x1 = x - y*t (if sign) 366 * x1 = x + y*t 373 CPYFPN(&x1, r); 402 /* x = x1 */ 403 CPYFPN(&x, &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 in function:__gcc_qdiv 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 in function:sodium__mm_set_epi64x 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/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 165 x1 = x->fp_mant[1]; 172 FPU_ADDCS(a1, a1, x1); \
|
fpu_sqrt.c | 197 u_int x0, x1, x2, x3; local in function:fpu_sqrt 245 FPU_ADDCS(x1, x1, x1); FPU_ADDC(x0, x0, x0); \ 249 x0 = (x0 << 1) | (x1 >> 31); x1 = (x1 << 1) | (x2 >> 31); \ 261 x1 = x->fp_mant[1]; 319 FPU_SUBS(d1, x1, t1); 322 x0 = d0, x1 = d1; /* x -= t * [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 148 x1 = x->fp_mant[1]; 155 FPU_ADDCS(a1, a1, x1); \
|
fpu_sqrt.c | 193 u_int x0, x1, x2, x3; local in function:fpu_sqrt 225 FPU_ADDCS(x1, x1, x1); FPU_ADDC(x0, x0, x0); \ 229 x0 = (x0 << 1) | (x1 >> 31); x1 = (x1 << 1) | (x2 >> 31); \ 241 x1 = x->fp_mant[1]; 299 FPU_SUBS(d1, x1, t1); 302 x0 = d0, x1 = d1; /* x -= t * [all...] |
/src/sys/dev/rcons/ |
raster_text.c | 87 int x1, y1; local in function:raster_textn 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 in function:crypto_core_hsalsa20 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/sys/external/bsd/compiler_rt/dist/lib/asan/tests/ |
asan_mem_test.cc | 79 static bool AllocateTwoAdjacentArrays(char **x1, char **x2, size_t size) { 90 *x1 = reinterpret_cast<char*>(v[j-1]); 99 if (res && p == *x1) 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. 113 EXPECT_DEATH(Ident(memset)(x1, 0, size * 2), 115 delete [] x1;
|
/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 26 x1 = 0x3320646e; 31 x1 = LOAD32_LE(c + 4); 50 QUARTERROUND(x1, x5, x9, x13); 54 QUARTERROUND(x1, x6, x11, x12); 60 STORE32_LE(out + 4, x1);
|
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/ref10/ |
x25519_ref10.c | 58 fe25519 x1; local in function:crypto_scalarmult_curve25519_ref10 78 fe25519_frombytes(x1, p); 81 fe25519_copy(x3, x1); 108 fe25519_mul(z3, x1, z2);
|
/src/games/dab/ |
algor.cc | 277 size_t x1, y1; local in function:ALGOR::find_min_closure 282 if (count > (count1 = find_min_closure1(y1, x1, dir1, b, i))) { 285 x = x1;
|
/src/common/lib/libc/stdlib/ |
random.c | 277 int x1, hi, lo, t; local in function:srandom_unlocked 286 x1 = state[i - 1]; 287 hi = x1 / 127773; 288 lo = x1 % 127773;
|
/src/sys/crypto/chacha/ |
chacha_ref.c | 71 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; 75 x1 = y1 = le32dec(c + 4); 103 le32enc(out + 4, x1 + y1); 131 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; 136 x1 = le32dec(c + 4); 154 y1 = x1; 180 le32enc(s + 4, x1 + y1); 202 y1 = x1; 228 le32enc(buf + 4, x1 + y1); 256 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15 70 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; local in function:chacha_core_ref 129 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; local in function:chacha_stream_ref 252 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; local in function:chacha_stream_xor_ref [all...] |
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/salsa/ref/ |
core_salsa_ref.c | 15 uint32_t x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, local in function:crypto_core_salsa 31 j1 = x1 = LOAD32_LE(k + 0); 50 x9 ^= ROTL32(x5 + x1, 7); 52 x1 ^= ROTL32(x13 + x9, 13); 53 x5 ^= ROTL32(x1 + x13, 18); 62 x1 ^= ROTL32(x0 + x3, 7); 63 x2 ^= ROTL32(x1 + x0, 9); 64 x3 ^= ROTL32(x2 + x1, 13); 80 STORE32_LE(out + 4, x1 + j1);
|
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/chacha20/ref/ |
chacha20_ref.c | 84 uint32_t x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, local in function:chacha20_encrypt_bytes 126 x1 = j1; 143 QUARTERROUND(x1, x5, x9, x13) 147 QUARTERROUND(x1, x6, x11, x12) 152 x1 = PLUS(x1, j1); 169 x1 = XOR(x1, LOAD32_LE(m + 4)); 193 STORE32_LE(c + 4, x1);
|