Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_core/salsa/ref/
H A Dcore_salsa_ref.c17 uint32_t j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, in crypto_core_salsa() local
21 j0 = x0 = 0x61707865; in crypto_core_salsa()
26 j0 = x0 = LOAD32_LE(c + 0); in crypto_core_salsa()
79 STORE32_LE(out + 0, x0 + j0); in crypto_core_salsa()
/f-stack/freebsd/crypto/chacha20/
H A Dchacha.c117 u32 j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, j15; in chacha_encrypt_bytes() local
124 j0 = x->input[0]; in chacha_encrypt_bytes()
150 x0 = j0; in chacha_encrypt_bytes()
176 x0 = PLUS(x0,j0); in chacha_encrypt_bytes()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_stream/chacha20/ref/
H A Dchacha20_ref.c86 uint32_t j0, j1, j2, j3, j4, j5, j6, j7, j8, j9, j10, j11, j12, j13, j14, in chacha20_encrypt_bytes() local
98 j0 = ctx->input[0]; in chacha20_encrypt_bytes()
125 x0 = j0; in chacha20_encrypt_bytes()
151 x0 = PLUS(x0, j0); in chacha20_encrypt_bytes()
/f-stack/freebsd/kern/
H A Dkern_jail.c287 struct jail_v0 j0; in sys_jail() local
291 error = copyin(uap->jail, &j0, sizeof(struct jail_v0)); in sys_jail()
294 j.version = j0.version; in sys_jail()
295 j.path = j0.path; in sys_jail()
296 j.hostname = j0.hostname; in sys_jail()
297 j.ip4s = htonl(j0.ip_number); /* jail_v0 is host order */ in sys_jail()