Home
last modified time | relevance | path

Searched refs:crypto_int64_x (Results 1 – 1 of 1) sorted by relevance

/freebsd/crypto/openssh/
H A Dsntrup761.c1111 void crypto_int64_store(unsigned char *crypto_int64_s,crypto_int64 crypto_int64_x) { in crypto_int64_store() argument
1112 *crypto_int64_s++ = crypto_int64_x >> 0; in crypto_int64_store()
1113 *crypto_int64_s++ = crypto_int64_x >> 8; in crypto_int64_store()
1114 *crypto_int64_s++ = crypto_int64_x >> 16; in crypto_int64_store()
1115 *crypto_int64_s++ = crypto_int64_x >> 24; in crypto_int64_store()
1116 *crypto_int64_s++ = crypto_int64_x >> 32; in crypto_int64_store()
1117 *crypto_int64_s++ = crypto_int64_x >> 40; in crypto_int64_store()
1118 *crypto_int64_s++ = crypto_int64_x >> 48; in crypto_int64_store()
1119 *crypto_int64_s++ = crypto_int64_x >> 56; in crypto_int64_store()
1124 crypto_int64 crypto_int64_negative_mask(crypto_int64 crypto_int64_x) { in crypto_int64_negative_mask() argument
[all …]