Home
last modified time | relevance | path

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

/freebsd/crypto/heimdal/appl/gssmask/
H A Dgssmaestro.c410 test_mic(struct client *c1, int32_t hc1, struct client *c2, int32_t hc2) in test_mic() argument
423 val = verify_mic(c2, hc2, &msg, &mic); in test_mic()
431 test_wrap(struct client *c1, int32_t hc1, struct client *c2, int32_t hc2, in test_wrap() argument
448 val = decrypt_token(c2, hc2, conf, &wrapped, &out); in test_wrap()
470 test_wrap_ext(struct client *c1, int32_t hc1, struct client *c2, int32_t hc2, in test_wrap_ext() argument
493 val = unwrap_token_ext(c2, hc2, conf, bflags, &header, &wrapped, &trailer, &out); in test_wrap_ext()
516 test_token(struct client *c1, int32_t hc1, struct client *c2, int32_t hc2, int wrap_ext) in test_token() argument
523 test_mic(c1, hc1, c2, hc2); in test_token()
524 test_mic(c2, hc2, c1, hc1); in test_token()
527 val = test_wrap(c1, hc1, c2, hc2, 0); in test_token()
[all …]
/freebsd/stand/common/
H A Dgfx_fb.c1882 uint32_t hc2 = (hc >> 9) & 0x7f; in gfx_fb_putimage()
1883 uint32_t hc1 = 0x80 - hc2; in gfx_fb_putimage()
1919 * pixels contribute hc1 and hc2 respectively. in gfx_fb_putimage()
1922 * (pT * hc1 + pB * hc2) / (hc1 + hc2) in gfx_fb_putimage()
1928 * Since hc1 and hc2 are chosen so that in gfx_fb_putimage()
1929 * hc1 + hc2 == 128 (and same for wc1 + wc2), in gfx_fb_putimage()
1931 * (hc1 + hc2) * (wc1 + wc2) in gfx_fb_putimage()
1936 png->image[p01 + i] * hc2) * wc1 + in gfx_fb_putimage()
1938 png->image[p11 + i] * hc2) * wc in gfx_fb_putimage()
1881 uint32_t hc2 = (hc >> 9) & 0x7f; gfx_fb_putimage() local
[all...]
/freebsd/contrib/bearssl/test/
H A Dtest_crypto.c588 br_hmac_context hc1, hc2; in test_HMAC_CT() local
608 br_hmac_init(&hc2, &kc, 0); in test_HMAC_CT()
609 br_hmac_update(&hc2, data, u); in test_HMAC_CT()
610 hlen2 = br_hmac_outCT(&hc2, in test_HMAC_CT()