/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_shorthash/siphash24/ref/ |
shorthash_siphash24_ref.c | 16 uint64_t k1 = LOAD64_LE(k + 8); local in function:crypto_shorthash_siphash24 22 v3 ^= k1; 24 v1 ^= k1;
|
shorthash_siphashx24_ref.c | 15 uint64_t k1 = LOAD64_LE(k + 8); local in function:crypto_shorthash_siphashx24 21 v3 ^= k1; 23 v1 ^= k1;
|
/src/sys/opencrypto/ |
aesxcbcmac.c | 53 uint8_t k1[AES_BLOCKSIZE]; local in function:aes_xcbc_mac_init 69 aes_enc(&r_ks, k1seed, k1, ctx->r_nr); 72 aes_setenckey128(&ctx->r_k1s, k1); 75 explicit_memset(k1, 0, sizeof(k1));
|
/src/tests/lib/libc/gen/ |
t_ftok.c | 65 key_t k1, k2, k3; local in function:ATF_TC_BODY 75 k1 = ftok(path, key); 79 ATF_REQUIRE(k1 != -1); 83 if (k1 != k2) 86 if (k1 != k3)
|
/src/sys/crypto/chacha/ |
chacha_selftest.c | 82 static const uint8_t k1[32] = { 111 (*ci->ci_chacha_core)(out, in1, k1, chacha_const32, 12); 80 static const uint8_t k1[32] = { local in function:chacha_core_selftest
|
/src/sys/external/isc/libsodium/dist/test/default/ |
box_easy2.c | 20 unsigned char *k1; local in function:main 43 k1 = (unsigned char *) sodium_malloc(crypto_box_BEFORENMBYTES); 79 ret = crypto_box_beforenm(k1, small_order_p, bobsk); 84 ret = crypto_box_beforenm(k1, alicepk, bobsk); 91 if (crypto_box_easy_afternm(c, m, 0, nonce, k1) != 0) { 96 crypto_box_easy_afternm(c, m, (unsigned long long) mlen, nonce, k1); 128 k1); 141 sodium_free(k1);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/ |
tsan_posix.cc | 61 thread_key k1 = thread_key(key, &mtx, 42, &cnt); local in function:TEST 64 EXPECT_EQ(__interceptor_pthread_create(&th[0], 0, dtors_thread, &k1), 0);
|
/src/sys/crypto/skipjack/ |
skipjack.c | 70 * k0, k1..k9 86 #define g(k0, k1, k2, k3, ih, il, oh, ol) \ 89 ol = k##k1 [oh] ^ il; \ 101 #define g_inv(k0, k1, k2, k3, ih, il, oh, ol) \ 105 ol = k##k1 [oh] ^ ol; \ 142 u_int8_t * k1 = key_tables [1]; local in function:skipjack_forwards 210 u_int8_t * k1 = key_tables [1]; local in function:skipjack_backwards
|
/src/usr.bin/tset/ |
tset.c | 69 const char *k1, *k2; local in function:main 206 k1 = "set noglob;\nsetenv TERM "; 209 k1 = "TERM="; 212 (void)printf("%s%s%s", k1, ttype, k2);
|
/src/sys/arch/hpcmips/stand/romboot/ |
romboot.S | 60 #define k1 $27 macro
|
/src/sys/arch/mips/include/ |
regdef.h | 81 #define k1 $27 macro
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/ |
nouveau_dispnv04_tvmodesnv17.c | 262 int64_t k1; member in struct:filter_params 343 int64_t c = (p->k1 + p->ki*i + p->ki2*i*i +
|
/src/lib/libc/gdtoa/ |
misc.c | 476 int i, k1, n, n1; local in function:lshift 481 k1 = b->k; 484 k1++; 485 b1 = Balloc(k1); 495 k1 = 32 - k; 499 z = *x++ >> k1; 505 k1 = 16 - k; 509 z = *x++ >> k1;
|
strtodg.c | 187 int bdif, e, j, k, k1, nb, rv; local in function:rvOK 264 k1 = k - 1; 265 if (k1 > 0 && !lostbits) 266 lostbits = any_on(b, k1); 270 carry = b->x[(unsigned int)k1>>kshift] & 271 (1 << (k1 & kmask));
|
/src/sys/dev/pci/ |
fms.c | 237 uint16_t k1; local in function:fms_attach 303 k1 = bus_space_read_2(sc->sc_iot, sc->sc_ioh, FM_INTMASK); 305 (k1 & ~(FM_INTMASK_PLAY | FM_INTMASK_REC | FM_INTMASK_MPU)) | 536 uint16_t k1; local in function:fms_halt_output 539 k1 = bus_space_read_2(sc->sc_iot, sc->sc_ioh, FM_PLAY_CTL); 541 (k1 & ~(FM_PLAY_STOPNOW | FM_PLAY_START)) | 551 uint16_t k1; local in function:fms_halt_input 554 k1 = bus_space_read_2(sc->sc_iot, sc->sc_ioh, FM_REC_CTL); 556 (k1 & ~(FM_REC_STOPNOW | FM_REC_START)) |
|
/src/sys/crypto/adiantum/ |
adiantum.c | 225 uint64_t k0, k1, k2, k3, k4; /* 64-bit extension of h */ 261 k1 = h1 + (m1 & 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
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/ |
atom.h | 234 u8 k1; member in struct:nv50_wndw_atom::__anonf635598f1808
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_r100.c | 3223 fixed20_12 mc_latency_sclk, mc_latency_mclk, k1; local in function:r100_bandwidth_update 3434 k1.full = dfixed_const(40); 3437 k1.full = dfixed_const(20); 3441 k1.full = dfixed_const(40); 3452 mc_latency_mclk.full += k1.full;
|