HomeSort by: relevance | last modified time | path
    Searched refs:STORE32_LE (Results 1 - 15 of 15) sorted by relevancy

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/hchacha20/
core_hchacha20.c 59 STORE32_LE(out + 0, x0);
60 STORE32_LE(out + 4, x1);
61 STORE32_LE(out + 8, x2);
62 STORE32_LE(out + 12, x3);
63 STORE32_LE(out + 16, x12);
64 STORE32_LE(out + 20, x13);
65 STORE32_LE(out + 24, x14);
66 STORE32_LE(out + 28, x15);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/salsa/ref/
core_salsa_ref.c 79 STORE32_LE(out + 0, x0 + j0);
80 STORE32_LE(out + 4, x1 + j1);
81 STORE32_LE(out + 8, x2 + j2);
82 STORE32_LE(out + 12, x3 + j3);
83 STORE32_LE(out + 16, x4 + j4);
84 STORE32_LE(out + 20, x5 + j5);
85 STORE32_LE(out + 24, x6 + j6);
86 STORE32_LE(out + 28, x7 + j7);
87 STORE32_LE(out + 32, x8 + j8);
88 STORE32_LE(out + 36, x9 + j9)
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/hsalsa20/ref2/
core_hsalsa20_ref2.c 85 STORE32_LE(out + 0, x0);
86 STORE32_LE(out + 4, x5);
87 STORE32_LE(out + 8, x10);
88 STORE32_LE(out + 12, x15);
89 STORE32_LE(out + 16, x6);
90 STORE32_LE(out + 20, x7);
91 STORE32_LE(out + 24, x8);
92 STORE32_LE(out + 28, x9);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/chacha20/ref/
chacha20_ref.c 192 STORE32_LE(c + 0, x0);
193 STORE32_LE(c + 4, x1);
194 STORE32_LE(c + 8, x2);
195 STORE32_LE(c + 12, x3);
196 STORE32_LE(c + 16, x4);
197 STORE32_LE(c + 20, x5);
198 STORE32_LE(c + 24, x6);
199 STORE32_LE(c + 28, x7);
200 STORE32_LE(c + 32, x8);
201 STORE32_LE(c + 36, x9)
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/
argon2-core.c 375 STORE32_LE(blockhash + ARGON2_PREHASH_DIGEST_LENGTH, 0);
376 STORE32_LE(blockhash + ARGON2_PREHASH_DIGEST_LENGTH + 4, l);
382 STORE32_LE(blockhash + ARGON2_PREHASH_DIGEST_LENGTH, 1);
404 STORE32_LE(value, context->lanes);
407 STORE32_LE(value, context->outlen);
410 STORE32_LE(value, context->m_cost);
413 STORE32_LE(value, context->t_cost);
416 STORE32_LE(value, ARGON2_VERSION_NUMBER);
419 STORE32_LE(value, (uint32_t) type);
422 STORE32_LE(value, context->pwdlen)
    [all...]
blake2b-long.c 25 STORE32_LE(outlen_bytes, (uint32_t) outlen);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/chacha20/dolbeau/
chacha20_dolbeau-avx2.c 142 STORE32_LE(&ic_bytes[0], ic_low);
143 STORE32_LE(&ic_bytes[4], ic_high);
163 STORE32_LE(ic_bytes, ic);
chacha20_dolbeau-ssse3.c 136 STORE32_LE(&ic_bytes[0], ic_low);
137 STORE32_LE(&ic_bytes[4], ic_high);
157 STORE32_LE(ic_bytes, ic);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa20/xmm6int/
salsa20_xmm6int-avx2.c 115 STORE32_LE(&ic_bytes[0], ic_low);
116 STORE32_LE(&ic_bytes[4], ic_high);
salsa20_xmm6int-sse2.c 106 STORE32_LE(&ic_bytes[0], ic_low);
107 STORE32_LE(&ic_bytes[4], ic_high);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/donna/
poly1305_donna32.h 228 STORE32_LE(mac + 0, (uint32_t) h0);
229 STORE32_LE(mac + 4, (uint32_t) h1);
230 STORE32_LE(mac + 8, (uint32_t) h2);
231 STORE32_LE(mac + 12, (uint32_t) h3);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_generichash/blake2b/ref/
blake2b-ref.c 135 STORE32_LE(P->leaf_length, 0);
158 STORE32_LE(P->leaf_length, 0);
192 STORE32_LE(P->leaf_length, 0);
230 STORE32_LE(P->leaf_length, 0);
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
common.h 102 #define STORE32_LE(DST, W) store32_le((DST), (W))
104 store32_le(uint8_t dst[4], uint32_t w) function in typeref:typename:void
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/
pwhash_scryptsalsa208sha256_nosse.c 277 STORE32_LE(&B[4 * k], X[k]);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/
pwhash_scryptsalsa208sha256_sse.c 293 STORE32_LE(&B[(k * 16 + (i * 5 % 16)) * 4], X32[k * 16 + i]);

Completed in 53 milliseconds