Home
last modified time | relevance | path

Searched refs:bytes_remain (Results 1 – 4 of 4) sorted by relevance

/linux-6.12.1/sound/drivers/
Dpcmtest.c286 size_t bytes_remain = runtime->dma_bytes - v_iter->buf_pos; in fill_block_rand_n() local
290 if (v_iter->b_rw <= bytes_remain) { in fill_block_rand_n()
297 bytes_remain / channels); in fill_block_rand_n()
299 (v_iter->b_rw - bytes_remain) / channels); in fill_block_rand_n()
/linux-6.12.1/drivers/crypto/nx/
Dnx-common-pseries.c918 int bytes_remain = PAGE_SIZE; in nx842_timehist_show() local
939 bytes = snprintf(p, bytes_remain, "%u-%uus:\t%lld\n", in nx842_timehist_show()
942 bytes_remain -= bytes; in nx842_timehist_show()
947 bytes = snprintf(p, bytes_remain, "%uus - :\t%lld\n", in nx842_timehist_show()
/linux-6.12.1/drivers/scsi/lpfc/
Dlpfc_els.c3999 int desc_cnt = 0, bytes_remain; in lpfc_cmpl_els_edc() local
4064 bytes_remain = be32_to_cpu(edc_rsp->desc_list_len) - in lpfc_cmpl_els_edc()
4066 if (bytes_remain <= 0) in lpfc_cmpl_els_edc()
4075 while (bytes_remain) { in lpfc_cmpl_els_edc()
4076 if (bytes_remain < FC_TLV_DESC_HDR_SZ) { in lpfc_cmpl_els_edc()
4087 if (bytes_remain < FC_TLV_DESC_SZ_FROM_LENGTH(tlv) || in lpfc_cmpl_els_edc()
4094 desc_cnt, bytes_remain, in lpfc_cmpl_els_edc()
4113 if (bytes_remain < FC_TLV_DESC_SZ_FROM_LENGTH(tlv) || in lpfc_cmpl_els_edc()
4120 desc_cnt, bytes_remain, in lpfc_cmpl_els_edc()
4154 bytes_remain -= FC_TLV_DESC_SZ_FROM_LENGTH(tlv); in lpfc_cmpl_els_edc()
[all …]
/linux-6.12.1/drivers/scsi/
Dscsi_transport_fc.c903 u32 bytes_remain; in fc_host_fpin_rcv() local
910 bytes_remain = fpin_len - offsetof(struct fc_els_fpin, fpin_desc); in fc_host_fpin_rcv()
911 bytes_remain = min_t(u32, bytes_remain, be32_to_cpu(fpin->desc_len)); in fc_host_fpin_rcv()
913 while (bytes_remain >= FC_TLV_DESC_HDR_SZ && in fc_host_fpin_rcv()
914 bytes_remain >= FC_TLV_DESC_SZ_FROM_LENGTH(tlv)) { in fc_host_fpin_rcv()
930 bytes_remain -= FC_TLV_DESC_SZ_FROM_LENGTH(tlv); in fc_host_fpin_rcv()