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

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_shorthash/siphash24/ref/
shorthash_siphash24_ref.c 15 uint64_t k0 = LOAD64_LE(k);
16 uint64_t k1 = LOAD64_LE(k + 8);
27 m = LOAD64_LE(in);
shorthash_siphashx24_ref.c 14 uint64_t k0 = LOAD64_LE(k);
15 uint64_t k1 = LOAD64_LE(k + 8);
26 m = LOAD64_LE(in);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/ed25519/ref10/fe_51/
fe.h 11 h0 = (LOAD64_LE(s ) ) & mask;
12 h1 = (LOAD64_LE(s + 6) >> 3) & mask;
13 h2 = (LOAD64_LE(s + 12) >> 6) & mask;
14 h3 = (LOAD64_LE(s + 19) >> 1) & mask;
15 h4 = (LOAD64_LE(s + 24) >> 12) & mask;
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/donna/
poly1305_donna64.h 40 t0 = LOAD64_LE(&key[0]);
41 t1 = LOAD64_LE(&key[8]);
54 st->pad[0] = LOAD64_LE(&key[16]);
55 st->pad[1] = LOAD64_LE(&key[24]);
88 t0 = LOAD64_LE(&m[0]);
89 t1 = LOAD64_LE(&m[8]);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_generichash/blake2b/ref/
blake2b-compress-ref.c 38 m[i] = LOAD64_LE(block + i * sizeof(m[i]));
blake2b-ref.c 118 S->h[i] ^= LOAD64_LE(p + sizeof(S->h[i]) * i);
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
common.h 46 #define LOAD64_LE(SRC) load64_le(SRC)
48 load64_le(const uint8_t src[8]) function in typeref:typename:uint64_t
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_pwhash/argon2/
argon2-core.c 51 dst->v[i] = LOAD64_LE((const uint8_t *) input + i * sizeof(dst->v[i]));

Completed in 17 milliseconds