HomeSort by: relevance | last modified time | path
    Searched defs:x6 (Results 1 - 14 of 14) 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
45 x6 = LOAD32_LE(in + 0);
59 x14 ^= ROTL32(x10 + x6, 7);
61 x6 ^= ROTL32(x2 + x14, 13);
62 x10 ^= ROTL32(x6 + x2, 18);
71 x6 ^= ROTL32(x5 + x4, 7);
72 x7 ^= ROTL32(x6 + x5, 9);
73 x4 ^= ROTL32(x7 + x6, 13);
89 STORE32_LE(out + 16, x6);
  /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
37 x6 = LOAD32_LE(k + 8);
51 QUARTERROUND(x2, x6, x10, x14);
54 QUARTERROUND(x1, x6, x11, x12);
  /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;
80 x6 = y6 = le32dec(k + 8);
108 le32enc(out + 24, x6 + y6);
131 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15;
141 x6 = le32dec(k + 8);
159 y6 = x6;
185 le32enc(s + 24, x6 + y6);
207 y6 = x6;
233 le32enc(buf + 24, x6 + y6);
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
129 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; local
252 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; local
    [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
40 j6 = x6 = LOAD32_LE(in + 0);
54 x14 ^= ROTL32(x10 + x6, 7);
56 x6 ^= ROTL32(x2 + x14, 13);
57 x10 ^= ROTL32(x6 + x2, 18);
66 x6 ^= ROTL32(x5 + x4, 7);
67 x7 ^= ROTL32(x6 + x5, 9);
68 x4 ^= ROTL32(x7 + x6, 13);
85 STORE32_LE(out + 24, x6 + j6);
  /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
131 x6 = j6;
144 QUARTERROUND(x2, x6, x10, x14)
147 QUARTERROUND(x1, x6, x11, x12)
157 x6 = PLUS(x6, j6);
174 x6 = XOR(x6, LOAD32_LE(m + 24));
198 STORE32_LE(c + 24, x6);
  /src/crypto/external/bsd/openssh/dist/
chacha.c 93 u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; local
131 x6 = j6;
144 QUARTERROUND( x2, x6,x10,x14)
147 QUARTERROUND( x1, x6,x11,x12)
157 x6 = PLUS(x6,j6);
174 x6 = XOR(x6,U8TO32_LITTLE(m + 24));
197 U32TO8_LITTLE(c + 24,x6);
  /src/external/bsd/unbound/dist/compat/
chacha_private.h 91 u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; local
129 x6 = j6;
142 QUARTERROUND( x2, x6,x10,x14)
145 QUARTERROUND( x1, x6,x11,x12)
155 x6 = PLUS(x6,j6);
173 x6 = XOR(x6,U8TO32_LITTLE(m + 24));
197 U32TO8_LITTLE(c + 24,x6);
  /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;
217 x6 = load1_epi32(k + 8);
238 y6 = x6;
264 y6 = _mm_add_epi32(y6, x6);
363 __m128i x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15;
377 x6 = load1_epi32(k + 8);
397 y6 = x6;
423 y6 = _mm_add_epi32(y6, x6);
199 __m128i x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; local
355 __m128i x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15; local
  /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
146 j6 = x6 = crypto_le32dec(k + 8);
160 QUARTERROUND( x2, x6,x10,x14);
163 QUARTERROUND( x1, x6,x11,x12);
174 crypto_le32enc(out + 24, x6 + j6);
  /src/sys/crypto/aes/
aes_ct.c 54 uint32_t x0, x1, x2, x3, x4, x5, x6, x7; local
75 x6 = q[1];
82 y13 = x0 ^ x6;
90 y5 = y1 ^ x6;
aes_ct64.c 69 uint64_t x0, x1, x2, x3, x4, x5, x6, x7; local
90 x6 = q[1];
97 y13 = x0 ^ x6;
105 y5 = y1 ^ x6;
  /src/sys/crypto/aes/arch/x86/
aes_sse2_4x32.c 54 __m128i x0, x1, x2, x3, x4, x5, x6, x7; local
75 x6 = q[1];
82 y13 = x0 ^ x6;
90 y5 = y1 ^ x6;
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
ed25519_ref10_fe_25_5.h 169 int32_t x6 = f6 ^ g[6]; local
180 x6 &= mask;
191 f[6] = f6 ^ x6;
230 int32_t x6 = f6 ^ g6; local
241 x6 &= mask;
252 f[6] = f6 ^ x6;
263 g[6] = g6 ^ x6;
  /src/sys/lib/libkern/arch/hppa/
milli.S 1095 x6: sh1add %r26,%r26,%r1 ! comb,<> %r25,0,l1 ! sh1add %r1,%r29,%r29 ! bv,n 0(r31) label

Completed in 31 milliseconds