Searched refs:sbounce (Results 1 – 2 of 2) sorted by relevance
/drivers/crypto/nx/ |
D | nx-842.c | 120 ctx->sbounce = (u8 *)__get_free_pages(GFP_KERNEL, BOUNCE_BUFFER_ORDER); in nx842_crypto_init() 122 if (!ctx->wmem || !ctx->sbounce || !ctx->dbounce) { in nx842_crypto_init() 124 free_page((unsigned long)ctx->sbounce); in nx842_crypto_init() 138 free_page((unsigned long)ctx->sbounce); in nx842_crypto_exit() 196 memset(ctx->sbounce + slen, 0, adj_slen - slen); in compress() 197 memcpy(ctx->sbounce, src, slen); in compress() 198 src = ctx->sbounce; in compress() 382 memset(ctx->sbounce + slen, 0, adj_slen - slen); in decompress() 383 memcpy(ctx->sbounce, src, slen); in decompress() 384 src = ctx->sbounce; in decompress()
|
D | nx-842.h | 168 u8 *sbounce, *dbounce; member
|