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

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/hsalsa20/ref2/
core_hsalsa20_ref2.c 23 x9, x10, x11, x12, x13, x14, x15; local in function:crypto_core_hsalsa20
48 x9 = LOAD32_LE(in + 12);
55 x9 ^= ROTL32(x5 + x1, 7);
56 x13 ^= ROTL32(x9 + x5, 9);
57 x1 ^= ROTL32(x13 + x9, 13);
75 x11 ^= ROTL32(x10 + x9, 7);
77 x9 ^= ROTL32(x8 + x11, 13);
78 x10 ^= ROTL32(x9 + x8, 18);
92 STORE32_LE(out + 28, x9);
  /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
40 x9 = LOAD32_LE(k + 20);
50 QUARTERROUND(x1, x5, x9, x13);
56 QUARTERROUND(x3, x4, x9, x14);
  /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;
83 x9 = y9 = le32dec(k + 20);
111 le32enc(out + 36, x9 + y9);
131 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15;
144 x9 = le32dec(k + 20);
162 y9 = x9;
188 le32enc(s + 36, x9 + y9);
210 y9 = x9;
236 le32enc(buf + 36, x9 + y9);
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
43 j9 = x9 = LOAD32_LE(in + 12);
50 x9 ^= ROTL32(x5 + x1, 7);
51 x13 ^= ROTL32(x9 + x5, 9);
52 x1 ^= ROTL32(x13 + x9, 13);
70 x11 ^= ROTL32(x10 + x9, 7);
72 x9 ^= ROTL32(x8 + x11, 13);
73 x10 ^= ROTL32(x9 + x8, 18);
88 STORE32_LE(out + 36, x9 + j9);
  /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
134 x9 = j9;
143 QUARTERROUND(x1, x5, x9, x13)
149 QUARTERROUND(x3, x4, x9, x14)
160 x9 = PLUS(x9, j9);
177 x9 = XOR(x9, LOAD32_LE(m + 36));
201 STORE32_LE(c + 36, x9);
  /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;
220 x9 = load1_epi32(k + 20);
241 y9 = x9;
267 y9 = _mm_add_epi32(y9, x9);
363 __m128i x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15;
380 x9 = load1_epi32(k + 20);
400 y9 = x9;
426 y9 = _mm_add_epi32(y9, x9);
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
149 j9 = x9 = crypto_le32dec(k + 20);
159 QUARTERROUND( x1, x5, x9,x13);
165 QUARTERROUND( x3, x4, x9,x14);
177 crypto_le32enc(out + 36, x9 + j9);
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
ed25519_ref10_fe_25_5.h 172 int32_t x9 = f9 ^ g[9]; local in function:fe25519_cmov
183 x9 &= mask;
194 f[9] = f9 ^ x9;
233 int32_t x9 = f9 ^ g9; local in function:fe25519_cswap
244 x9 &= mask;
255 f[9] = f9 ^ x9;
266 g[9] = g9 ^ x9;
  /src/sys/lib/libkern/arch/hppa/
milli.S 1101 x9: comb,<> %r25,0,l0 ! sh3add %r26,%r26,%r1 ! bv 0(r31) ! add %r29,%r1,%r29 label

Completed in 17 milliseconds