Home
last modified time | relevance | path

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

/optee_os/core/drivers/crypto/hisilicon/
H A Dhpre_dh.c187 msg->x_p = data; in hpre_dh_params_alloc()
188 msg->x_p_dma = virt_to_phys(msg->x_p); in hpre_dh_params_alloc()
190 msg->g = msg->x_p + (msg->key_bytes << 1); in hpre_dh_params_alloc()
200 if (msg->x_p) { in hpre_dh_params_free()
201 free_wipe(msg->x_p); in hpre_dh_params_free()
202 msg->x_p = NULL; in hpre_dh_params_free()
210 uint8_t *p = msg->x_p + msg->key_bytes; in hpre_dh_params_bn2bin()
211 uint8_t *x = msg->x_p; in hpre_dh_params_bn2bin()
H A Dhpre_dh.h17 uint8_t *x_p; /* X and p data in order */ member