Home
last modified time | relevance | path

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

/crypto/
Dfcrypt.c58 #define ror56(hi, lo, n) \ argument
61 lo = (lo >> n) | ((hi & ((1 << n) - 1)) << (32 - n)); \
62 hi = (hi >> n) | (t << (24-n)); \
350 u32 hi, lo; /* hi is upper 24 bits and lo lower 32, total 56 */ in fcrypt_setkey() local
360 hi = lo >> 4; in fcrypt_setkey()
372 ctx->sched[0x0] = cpu_to_be32(lo); ror56(hi, lo, 11); in fcrypt_setkey()
373 ctx->sched[0x1] = cpu_to_be32(lo); ror56(hi, lo, 11); in fcrypt_setkey()
374 ctx->sched[0x2] = cpu_to_be32(lo); ror56(hi, lo, 11); in fcrypt_setkey()
375 ctx->sched[0x3] = cpu_to_be32(lo); ror56(hi, lo, 11); in fcrypt_setkey()
376 ctx->sched[0x4] = cpu_to_be32(lo); ror56(hi, lo, 11); in fcrypt_setkey()
[all …]