Lines Matching defs:extralen
47 static void *esp_alloc_tmp(struct crypto_aead *aead, int nfrags, int extralen)
51 len = extralen;
74 static inline u8 *esp_tmp_iv(struct crypto_aead *aead, void *tmp, int extralen)
77 PTR_ALIGN((u8 *)tmp + extralen,
78 crypto_aead_alignmask(aead) + 1) : tmp + extralen;
102 int extralen = 0;
108 extralen += sizeof(struct esp_output_extra);
110 iv = esp_tmp_iv(aead, tmp, extralen);
499 int extralen;
509 extralen = 0;
512 extralen += sizeof(*extra);
520 tmp = esp_alloc_tmp(aead, esp->nfrags + 2, extralen);
525 iv = esp_tmp_iv(aead, tmp, extralen);