HomeSort by: relevance | last modified time | path
    Searched defs:x10 (Results 1 - 8 of 8) 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
29 x10 = U32C(0x79622d32);
34 x10 = LOAD32_LE(c + 8);
59 x14 ^= ROTL32(x10 + x6, 7);
60 x2 ^= ROTL32(x14 + x10, 9);
62 x10 ^= ROTL32(x6 + x2, 18);
75 x11 ^= ROTL32(x10 + x9, 7);
76 x8 ^= ROTL32(x11 + x10, 9);
78 x10 ^= ROTL32(x9 + x8, 18);
87 STORE32_LE(out + 8, x10);
    [all...]
  /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
41 x10 = LOAD32_LE(k + 24);
51 QUARTERROUND(x2, x6, x10, x14);
53 QUARTERROUND(x0, x5, x10, x15);
  /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;
84 x10 = y10 = le32dec(k + 24);
112 le32enc(out + 40, x10 + y10);
131 uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15;
145 x10 = le32dec(k + 24);
163 y10 = x10;
189 le32enc(s + 40, x10 + y10);
211 y10 = x10;
237 le32enc(buf + 40, x10 + y10);
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
23 j10 = x10 = 0x79622d32;
28 j10 = x10 = LOAD32_LE(c + 8);
54 x14 ^= ROTL32(x10 + x6, 7);
55 x2 ^= ROTL32(x14 + x10, 9);
57 x10 ^= ROTL32(x6 + x2, 18);
70 x11 ^= ROTL32(x10 + x9, 7);
71 x8 ^= ROTL32(x11 + x10, 9);
73 x10 ^= ROTL32(x9 + x8, 18);
89 STORE32_LE(out + 40, x10 + j10)
    [all...]
  /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
135 x10 = j10;
144 QUARTERROUND(x2, x6, x10, x14)
146 QUARTERROUND(x0, x5, x10, x15)
161 x10 = PLUS(x10, j10);
178 x10 = XOR(x10, LOAD32_LE(m + 40));
202 STORE32_LE(c + 40, x10);
  /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;
221 x10 = load1_epi32(k + 24);
242 y10 = x10;
268 y10 = _mm_add_epi32(y10, x10);
363 __m128i x0,x1,x2,x3,x4,x5,x6,x7,x8,x9,x10,x11,x12,x13,x14,x15;
381 x10 = load1_epi32(k + 24);
401 y10 = x10;
427 y10 = _mm_add_epi32(y10, x10);
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
150 j10 = x10 = crypto_le32dec(k + 24);
160 QUARTERROUND( x2, x6,x10,x14);
162 QUARTERROUND( x0, x5,x10,x15);
178 crypto_le32enc(out + 40, x10 + j10);
251 0x64,0x6a,0xaf,0xd9,0xa7,0x49,0x10,0x59,
  /src/sys/lib/libkern/arch/hppa/
milli.S 1103 x10: sh2add %r26,%r26,%r1 ! comb,<> %r25,0,l1 ! sh1add %r1,%r29,%r29 ! bv,n 0(r31) label

Completed in 57 milliseconds