HomeSort by: relevance | last modified time | path
    Searched defs:x8 (Results 1 - 11 of 11) sorted by relevancy

  /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
47 x8 = LOAD32_LE(in + 8);
52 x8 ^= ROTL32(x4 + x0, 9);
53 x12 ^= ROTL32(x8 + x4, 13);
54 x0 ^= ROTL32(x12 + x8, 18);
76 x8 ^= ROTL32(x11 + x10, 9);
77 x9 ^= ROTL32(x8 + x11, 13);
78 x10 ^= ROTL32(x9 + x8, 18);
91 STORE32_LE(out + 24, x8);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/hchacha20/
core_hchacha20.c 22 uint32_t x8, x9, x10, x11, x12, x13, x14, x15; local in function:crypto_core_hchacha20
39 x8 = LOAD32_LE(k + 16);
49 QUARTERROUND(x0, x4, x8, x12);
55 QUARTERROUND(x2, x7, x8, x13);
  /src/lib/libutil/
strpct.c 106 bignum x8 = bignum_plus(x4, x4); local in function:bignum_times_10
107 return bignum_plus(x2, x8);
  /src/sys/crypto/chacha/arch/arm/
chacha_neon.c 72 uint8x16_t y8, x8 = vreinterpretq_u8_u32(x);
74 y8 = vqtbl1q_u8(x8, rol8_tab);
71 uint8x16_t y8, x8 = vreinterpretq_u8_u32(x); local in function:rol8
  /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;
82 x8 = y8 = le32dec(k + 16);
110 le32enc(out + 32, x8 + y8);
131 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15;
143 x8 = le32dec(k + 16);
161 y8 = x8;
187 le32enc(s + 32, x8 + y8);
209 y8 = x8;
235 le32enc(buf + 32, x8 + y8);
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
42 j8 = x8 = LOAD32_LE(in + 8);
47 x8 ^= ROTL32(x4 + x0, 9);
48 x12 ^= ROTL32(x8 + x4, 13);
49 x0 ^= ROTL32(x12 + x8, 18);
71 x8 ^= ROTL32(x11 + x10, 9);
72 x9 ^= ROTL32(x8 + x11, 13);
73 x10 ^= ROTL32(x9 + x8, 18);
87 STORE32_LE(out + 32, x8 + j8);
  /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
133 x8 = j8;
142 QUARTERROUND(x0, x4, x8, x12)
148 QUARTERROUND(x2, x7, x8, x13)
159 x8 = PLUS(x8, j8);
176 x8 = XOR(x8, LOAD32_LE(m + 32));
200 STORE32_LE(c + 32, x8);
  /src/sys/crypto/chacha/arch/x86/
chacha_sse2.c 203 __m128i x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15;
219 x8 = load1_epi32(k + 16);
240 y8 = x8;
266 y8 = _mm_add_epi32(y8, x8);
363 __m128i x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15;
379 x8 = load1_epi32(k + 16);
399 y8 = x8;
425 y8 = _mm_add_epi32(y8, x8);
199 __m128i x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; local in function:chacha_stream_sse2
355 __m128i x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; local in function:chacha_stream_xor_sse2
  /src/lib/libc/gen/
arc4random.c 136 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; local in function:crypto_core
148 j8 = x8 = crypto_le32dec(k + 16);
158 QUARTERROUND( x0, x4, x8,x12);
164 QUARTERROUND( x2, x7, x8,x13);
176 crypto_le32enc(out + 32, x8 + j8);
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
ed25519_ref10_fe_25_5.h 171 int32_t x8 = f8 ^ g[8]; local in function:fe25519_cmov
182 x8 &= mask;
193 f[8] = f8 ^ x8;
232 int32_t x8 = f8 ^ g8; local in function:fe25519_cswap
243 x8 &= mask;
254 f[8] = f8 ^ x8;
265 g[8] = g8 ^ x8;
  /src/sys/lib/libkern/arch/hppa/
milli.S 1099 x8: comb,<> %r25,0,l1 ! sh3add %r26,%r29,%r29 ! bv,n 0(r31) ! nop label

Completed in 16 milliseconds