Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libtnfctl/
H A Dcomb.c535 decode_key_t *k1p = (decode_key_t *) v1p; in decode_compare() local
537 return (int) ((uintptr_t) k1p->addr - (uintptr_t) k0p->addr); in decode_compare()
548 comb_key_t *k1p = (comb_key_t *) v1p; in comb_compare() local
550 if (k0p->op != k1p->op) in comb_compare()
551 return ((k0p->op < k1p->op) ? -1 : 1); in comb_compare()
553 if (k0p->down != k1p->down) in comb_compare()
554 return ((k0p->down < k1p->down) ? -1 : 1); in comb_compare()
556 if (k0p->next != k1p->next) in comb_compare()
557 return ((k0p->next < k1p->next) ? -1 : 1); in comb_compare()
/titanic_41/usr/src/common/crypto/ecc/
H A Decl_mult.c324 const mp_int *k1p, *k2p; in ECPoints_mul() local
336 k1p = &k1t; in ECPoints_mul()
338 k1p = k1; in ECPoints_mul()
341 k1p = k1; in ECPoints_mul()
357 res = group->points_mul(k1p, k2p, px, py, rx, ry, group); in ECPoints_mul()
359 res = ec_pts_mul_simul_w2(k1p, k2p, px, py, rx, ry, group); in ECPoints_mul()