Home
last modified time | relevance | path

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

/drivers/crypto/nx/
Dnx-842.c120 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()
Dnx-842.h168 u8 *sbounce, *dbounce; member