Lines Matching defs:temp

173 	u8 temp[SHA512_DIGEST_SIZE];
185 sg_pcopy_to_buffer(req->src, sg_nents(req->src), temp,
188 cmp = crypto_memneq(temp, (fw6_pld + 1), authsize);
232 u32 temp;
257 temp = w_ring[nk - 1];
260 /* RotWord(temp) */
261 temp = (temp << 8) | (temp >> 24);
262 temp = aes_ks_subword(temp);
263 temp ^= round_constant[i / nk];
265 temp = aes_ks_subword(temp);
267 w_ring[i % nk] ^= temp;
268 temp = w_ring[i % nk];
810 unsigned int temp = 0, transhdr_len, dst_size;
827 temp = reqctx->imm ? roundup(wrparam->bytes, 16) :
829 transhdr_len += temp;
880 temp = sizeof(struct cpl_rx_phys_dsgl) + dst_size + kctx_len + IV
883 transhdr_len, temp,
1045 u32 temp = be32_to_cpu(*--b);
1047 temp = ~temp;
1048 c = (u64)temp + 1; // No of block can processed without overflow
1572 unsigned int temp = 0;
1643 temp = param->kctx_len + DUMMY_BYTES + (req_ctx->hctx_wr.imm ?
1648 temp, 0);
2448 unsigned int dst_size = 0, temp, subtype = get_aead_subtype(tfm);
2483 temp = reqctx->imm ? roundup(req->assoclen + req->cryptlen, 16)
2485 transhdr_len += temp;
2502 temp = (reqctx->op == CHCR_ENCRYPT_OP) ? 0 : authsize;
2516 (temp & 0x1F0) >> 4);
2518 temp & 0xF,
2520 temp, temp);
2523 temp = CHCR_SCMD_CIPHER_MODE_AES_CTR;
2525 temp = CHCR_SCMD_CIPHER_MODE_AES_CBC;
2528 temp,
2562 temp = sizeof(struct cpl_rx_phys_dsgl) + dst_size + IV +
2565 transhdr_len, temp, 0);
2714 u32 temp;
2720 temp = req->assoclen + req->cryptlen +
2722 dsgl_walk_add_sg(&dsgl_walk, req->dst, temp, 0);
3046 unsigned int dst_size = 0, kctx_len, dnents, temp, snents;
3078 temp = reqctx->imm ? roundup(req->assoclen + req->cryptlen +
3081 transhdr_len += temp;
3116 temp = sizeof(struct cpl_rx_phys_dsgl) + dst_size + IV +
3120 transhdr_len, temp, 0);
3145 unsigned int dst_size = 0, temp = 0, kctx_len, assoclen = req->assoclen;
3173 temp = reqctx->imm ? roundup(req->assoclen + req->cryptlen, 16) :
3175 transhdr_len += temp;
3193 temp = (reqctx->op == CHCR_ENCRYPT_OP) ? 0 : authsize;
3204 temp, temp);
3235 temp = sizeof(struct cpl_rx_phys_dsgl) + dst_size + IV +
3238 transhdr_len, temp, reqctx->verify);