Searched defs:this_len (Results 1 - 4 of 4) sorted by relevance

/drivers/scsi/arm/
H A Dacornscsi.c926 unsigned int this_len; local
929 this_len = (1 << 12) - offset;
931 this_len = len;
933 __acornscsi_in(host->base + (offset << 1), ptr, this_len);
935 offset += this_len;
936 ptr += this_len;
937 len -= this_len;
971 unsigned int this_len; local
974 this_len = (1 << 12) - offset;
976 this_len
[all...]
/drivers/usb/mon/
H A Dmon_bin.c406 unsigned int this_len; local
428 this_len = min_t(unsigned int, sg->length, length);
430 this_len);
431 length -= this_len;
/drivers/crypto/
H A Dn2_core.c233 static inline bool n2_should_run_async(struct spu_queue *qp, int this_len)
235 if (this_len >= 64 ||
823 int this_len = nbytes; local
825 this_len -= (nbytes & (block_size - 1));
826 return this_len > (1 << 16) ? (1 << 16) : this_len;
907 int this_len; local
914 this_len = cipher_descriptor_len(nbytes, walk->blocksize);
921 tot_len + this_len > (1 << 16)) {
938 chunk->arr[chunk->arr_len].src_len = this_len;
[all...]
/drivers/net/ethernet/sun/
H A Dniu.c6705 unsigned int this_len = len; local
6707 if (this_len > MAX_TX_DESC_LEN)
6708 this_len = MAX_TX_DESC_LEN;
6710 niu_set_txd(rp, prod, mapping, this_len, mrk, nfg);
6714 mapping += this_len;
6715 len -= this_len;

Completed in 1216 milliseconds