Searched refs:pbytes (Results 1 – 2 of 2) sorted by relevance
/openbmc/u-boot/drivers/video/ |
H A D | console_rotate.c | 17 int pbytes = VNBYTES(vid_priv->bpix); in console_set_row_1() local 22 (row + 1) * VIDEO_FONT_HEIGHT * pbytes; in console_set_row_1() 67 int pbytes = VNBYTES(vid_priv->bpix); in console_move_rows_1() local 71 (rowdst + count) * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_1() 73 (rowsrc + count) * VIDEO_FONT_HEIGHT * pbytes; in console_move_rows_1() 76 memmove(dst, src, VIDEO_FONT_HEIGHT * pbytes * count); in console_move_rows_1() 89 int pbytes = VNBYTES(vid_priv->bpix); in console_putc_xy_1() local 96 vid_priv->line_length - (y + 1) * pbytes; in console_putc_xy_1() 276 int pbytes = VNBYTES(vid_priv->bpix); in console_set_row_3() local 280 line = vid_priv->fb + row * VIDEO_FONT_HEIGHT * pbytes; in console_set_row_3() [all …]
|
/openbmc/linux/crypto/ |
H A D | sm2.c | 223 MPI m, unsigned int pbytes) in sm2_z_digest_update() argument 234 if (inlen < pbytes) { in sm2_z_digest_update() 236 err = crypto_shash_update(desc, zero, pbytes - inlen) ?: in sm2_z_digest_update() 238 } else if (inlen > pbytes) { in sm2_z_digest_update() 240 err = crypto_shash_update(desc, in + inlen - pbytes, pbytes); in sm2_z_digest_update() 251 unsigned int pbytes) in sm2_z_digest_update_point() argument 260 sm2_z_digest_update(desc, x, pbytes) ?: in sm2_z_digest_update_point() 261 sm2_z_digest_update(desc, y, pbytes); in sm2_z_digest_update_point() 273 unsigned int pbytes; in sm2_compute_z_digest() local 293 pbytes = MPI_NBYTES(ec->p); in sm2_compute_z_digest() [all …]
|