Home
last modified time | relevance | path

Searched refs:total_sent (Results 1 - 20 of 20) sorted by relevance

/kernel/linux/linux-5.10/drivers/crypto/bcm/
H A Dcipher.h243 unsigned int total_sent; member
262 unsigned int total_sent; member
266 * from total_sent for incremental hashing. total_sent includes previous
395 unsigned int total_sent, u32 status_padding);
H A Dcipher.c344 rctx->total_sent = rctx->src_sent; in handle_skcipher_req()
415 rctx->total_sent, stat_pad_len); in handle_skcipher_req()
696 flow_log("total_todo %u, total_sent %u\n", in handle_ahash_req()
697 rctx->total_todo, rctx->total_sent); in handle_ahash_req()
727 nbytes_to_hash = rctx->total_todo - rctx->total_sent; in handle_ahash_req()
777 hash_parms.type = spu->spu_hash_type(rctx->total_sent); in handle_ahash_req()
784 rctx->total_sent += chunksize; in handle_ahash_req()
788 if ((rctx->total_sent == rctx->total_todo) && rctx->is_final) in handle_ahash_req()
847 ctx->auth.mode, rctx->total_sent, in handle_ahash_req()
1016 if (rctx->is_final && (rctx->total_sent in handle_ahash_resp()
[all...]
H A Dspu2.h206 unsigned int total_sent, u32 status_padding);
H A Dspu2.c1233 * @total_sent: Length inserted at end of hash pad
1244 unsigned int total_sent, u32 status_padding) in spu2_request_pad()
1266 *(u64 *)ptr = cpu_to_le64((u64)total_sent * 8); in spu2_request_pad()
1268 *(u64 *)ptr = cpu_to_be64((u64)total_sent * 8); in spu2_request_pad()
1242 spu2_request_pad(u8 *pad_start, u32 gcm_padding, u32 hash_pad_len, enum hash_alg auth_alg, enum hash_mode auth_mode, unsigned int total_sent, u32 status_padding) spu2_request_pad() argument
H A Dspu.c1018 * @total_sent: length inserted at end of hash pad
1032 unsigned int total_sent, u32 status_padding) in spum_request_pad()
1059 *(u64 *)ptr = cpu_to_le64((u64)total_sent * 8); in spum_request_pad()
1061 *(u64 *)ptr = cpu_to_be64((u64)total_sent * 8); in spum_request_pad()
1027 spum_request_pad(u8 *pad_start, u32 gcm_ccm_padding, u32 hash_pad_len, enum hash_alg auth_alg, enum hash_mode auth_mode, unsigned int total_sent, u32 status_padding) spum_request_pad() argument
H A Dspu.h261 unsigned int total_sent, u32 status_padding);
/kernel/linux/linux-6.6/drivers/crypto/bcm/
H A Dcipher.h244 unsigned int total_sent; member
263 unsigned int total_sent; member
267 * from total_sent for incremental hashing. total_sent includes previous
393 unsigned int total_sent, u32 status_padding);
H A Dcipher.c344 rctx->total_sent = rctx->src_sent; in handle_skcipher_req()
415 rctx->total_sent, stat_pad_len); in handle_skcipher_req()
694 flow_log("total_todo %u, total_sent %u\n", in handle_ahash_req()
695 rctx->total_todo, rctx->total_sent); in handle_ahash_req()
725 nbytes_to_hash = rctx->total_todo - rctx->total_sent; in handle_ahash_req()
775 hash_parms.type = spu->spu_hash_type(rctx->total_sent); in handle_ahash_req()
782 rctx->total_sent += chunksize; in handle_ahash_req()
786 if ((rctx->total_sent == rctx->total_todo) && rctx->is_final) in handle_ahash_req()
845 ctx->auth.mode, rctx->total_sent, in handle_ahash_req()
1012 if (rctx->is_final && (rctx->total_sent in handle_ahash_resp()
[all...]
H A Dspu2.h206 unsigned int total_sent, u32 status_padding);
H A Dspu2.c1236 * @total_sent: Length inserted at end of hash pad
1247 unsigned int total_sent, u32 status_padding) in spu2_request_pad()
1269 *(__le64 *)ptr = cpu_to_le64(total_sent * 8ull); in spu2_request_pad()
1271 *(__be64 *)ptr = cpu_to_be64(total_sent * 8ull); in spu2_request_pad()
1245 spu2_request_pad(u8 *pad_start, u32 gcm_padding, u32 hash_pad_len, enum hash_alg auth_alg, enum hash_mode auth_mode, unsigned int total_sent, u32 status_padding) spu2_request_pad() argument
H A Dspu.c1016 * @total_sent: length inserted at end of hash pad
1030 unsigned int total_sent, u32 status_padding) in spum_request_pad()
1057 *(__le64 *)ptr = cpu_to_le64(total_sent * 8ull); in spum_request_pad()
1059 *(__be64 *)ptr = cpu_to_be64(total_sent * 8ull); in spum_request_pad()
1025 spum_request_pad(u8 *pad_start, u32 gcm_ccm_padding, u32 hash_pad_len, enum hash_alg auth_alg, enum hash_mode auth_mode, unsigned int total_sent, u32 status_padding) spum_request_pad() argument
H A Dspu.h262 unsigned int total_sent, u32 status_padding);
/kernel/linux/linux-5.10/drivers/tty/
H A Dvcc.c854 int total_sent = 0; in vcc_write() local
881 memcpy(&pkt->data[port->chars_in_buffer], &buf[total_sent], in vcc_write()
899 total_sent += tosend; in vcc_write()
913 vccdbg("VCC: write: total=%d rv=%d", total_sent, rv); in vcc_write()
915 return total_sent ? total_sent : rv; in vcc_write()
/kernel/linux/linux-6.6/drivers/tty/
H A Dvcc.c822 size_t total_sent = 0; in vcc_write() local
845 memcpy(&pkt->data[port->chars_in_buffer], &buf[total_sent], in vcc_write()
863 total_sent += tosend; in vcc_write()
877 vccdbg("VCC: write: total=%zu rv=%d", total_sent, rv); in vcc_write()
879 return total_sent ? total_sent : rv; in vcc_write()
/kernel/linux/linux-5.10/drivers/tty/hvc/
H A Dhvcs.c1310 int total_sent = 0; in hvcs_write() local
1355 &charbuf[total_sent], in hvcs_write()
1378 total_sent+=tosend; in hvcs_write()
1400 return total_sent; in hvcs_write()
/kernel/linux/linux-6.6/drivers/tty/hvc/
H A Dhvcs.c1266 size_t total_sent = 0; in hvcs_write() local
1312 &charbuf[total_sent], in hvcs_write()
1335 total_sent+=tosend; in hvcs_write()
1357 return total_sent; in hvcs_write()
/kernel/linux/linux-5.10/net/batman-adv/
H A Dtp_meter.c210 * @total_sent: bytes acked to the receiver
215 unsigned long start_time, u64 total_sent, in batadv_tp_batctl_notify()
225 total_bytes = total_sent; in batadv_tp_batctl_notify()
213 batadv_tp_batctl_notify(enum batadv_tp_meter_reason reason, const u8 *dst, struct batadv_priv *bat_priv, unsigned long start_time, u64 total_sent, u32 cookie) batadv_tp_batctl_notify() argument
/kernel/linux/linux-6.6/net/batman-adv/
H A Dtp_meter.c211 * @total_sent: bytes acked to the receiver
216 unsigned long start_time, u64 total_sent, in batadv_tp_batctl_notify()
226 total_bytes = total_sent; in batadv_tp_batctl_notify()
214 batadv_tp_batctl_notify(enum batadv_tp_meter_reason reason, const u8 *dst, struct batadv_priv *bat_priv, unsigned long start_time, u64 total_sent, u32 cookie) batadv_tp_batctl_notify() argument
/kernel/linux/linux-5.10/net/kcm/
H A Dkcmsock.c585 unsigned int sent, total_sent = 0; in kcm_write_msgs() local
708 total_sent += sent; in kcm_write_msgs()
721 return total_sent ? : ret; in kcm_write_msgs()
/kernel/linux/linux-6.6/net/kcm/
H A Dkcmsock.c584 unsigned int total_sent = 0; in kcm_write_msgs() local
691 total_sent += txm->sent; in kcm_write_msgs()
707 return total_sent ? : ret; in kcm_write_msgs()

Completed in 29 milliseconds