HomeSort by: relevance | last modified time | path
    Searched defs:k0 (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); local in function:crypto_shorthash_siphash24
23 v2 ^= k0;
25 v0 ^= k0;
shorthash_siphashx24_ref.c 14 uint64_t k0 = LOAD64_LE(k); local in function:crypto_shorthash_siphashx24
22 v2 ^= k0;
24 v0 ^= k0;
  /src/sys/crypto/skipjack/
skipjack.c 70 * k0, k1..k9
86 #define g(k0, k1, k2, k3, ih, il, oh, ol) \
88 oh = k##k0 [il] ^ ih; \
101 #define g_inv(k0, k1, k2, k3, ih, il, oh, ol) \
106 oh = k##k0 [ol] ^ oh; \
141 u_int8_t * k0 = key_tables [0]; local in function:skipjack_forwards
209 u_int8_t * k0 = key_tables [0]; local in function:skipjack_backwards
  /src/sys/arch/hpcmips/stand/romboot/
romboot.S 59 #define k0 $26 macro
  /src/sys/arch/mips/include/
regdef.h 80 #define k0 $26 /* kernel temporary */ macro
  /src/lib/libc/gdtoa/
dtoa.c 121 j, jj1, k, k0, k_check, leftright, m2, m5, s2, s5, local in function:dtoa
348 k0 = k;
440 k = k0;
gdtoa.c 163 int j, jj1, k, k0, k_check, kind, leftright, m2, m5, nbits; local in function:gdtoa
353 k0 = k;
450 k = k0;
  /src/sys/crypto/adiantum/
adiantum.c 225 uint64_t k0, k1, k2, k3, k4; /* 64-bit extension of h */
260 k0 = h0 + (m0 & 0x03ffffff);
267 p0 = r0*k0 + 5*r4*k1 + 5*r3*k2 + 5*r2*k3 + 5*r1*k4;
268 p1 = r1*k0 + r0*k1 + 5*r4*k2 + 5*r3*k3 + 5*r2*k4;
269 p2 = r2*k0 + r1*k1 + r0*k2 + 5*r4*k3 + 5*r3*k4;
270 p3 = r3*k0 + r2*k1 + r1*k2 + r0*k3 + 5*r4*k4;
271 p4 = r4*k0 + r3*k1 + r2*k2 + r1*k3 + r0*k4;
223 uint64_t k0, k1, k2, k3, k4; \/* 64-bit extension of h *\/ local in function:poly1305_update_blocks

Completed in 15 milliseconds