Lines Matching refs:g
73 #define NX842_CRYPTO_HEADER_SIZE(g) \ argument
75 sizeof(struct nx842_crypto_header_group) * (g))
169 struct nx842_crypto_header_group *g, in compress() argument
243 g->padding = cpu_to_be16(dskip); in compress()
244 g->compressed_length = cpu_to_be32(dlen); in compress()
245 g->uncompressed_length = cpu_to_be32(slen); in compress()
346 struct nx842_crypto_header_group *g, in decompress() argument
350 unsigned int slen = be32_to_cpu(g->compressed_length); in decompress()
351 unsigned int required_len = be32_to_cpu(g->uncompressed_length); in decompress()
355 u16 padding = be16_to_cpu(g->padding); in decompress()
412 slen = be32_to_cpu(g->compressed_length); in decompress()
471 struct nx842_crypto_header_group g = { in nx842_crypto_decompress() local
477 ret = decompress(ctx, &p, &g, &c, 0); in nx842_crypto_decompress()