Searched refs:sbounce (Results 1 – 2 of 2) sorted by relevance
/Linux-v5.10/drivers/crypto/nx/ |
D | nx-842.c | 111 ctx->sbounce = (u8 *)__get_free_pages(GFP_KERNEL, BOUNCE_BUFFER_ORDER); in nx842_crypto_init() 113 if (!ctx->wmem || !ctx->sbounce || !ctx->dbounce) { in nx842_crypto_init() 115 free_page((unsigned long)ctx->sbounce); in nx842_crypto_init() 129 free_page((unsigned long)ctx->sbounce); in nx842_crypto_exit() 187 memset(ctx->sbounce + slen, 0, adj_slen - slen); in compress() 188 memcpy(ctx->sbounce, src, slen); in compress() 189 src = ctx->sbounce; in compress() 373 memset(ctx->sbounce + slen, 0, adj_slen - slen); in decompress() 374 memcpy(ctx->sbounce, src, slen); in decompress() 375 src = ctx->sbounce; in decompress()
|
D | nx-842.h | 172 u8 *sbounce, *dbounce; member
|