Lines Matching refs:bytes
265 int bytes, fc, hdr_len; in libipw_xmit() local
348 bytes = skb->len + SNAP_SIZE + sizeof(u16); in libipw_xmit()
354 int len = bytes + hdr_len + crypt->ops->extra_msdu_prefix_len + in libipw_xmit()
375 bytes += crypt->ops->extra_msdu_prefix_len + in libipw_xmit()
406 nr_frags = bytes / bytes_per_frag; in libipw_xmit()
407 bytes_last_frag = bytes % bytes_per_frag; in libipw_xmit()
414 bytes_per_frag = bytes_last_frag = bytes; in libipw_xmit()
415 frag_size = bytes + hdr_len; in libipw_xmit()
438 txb->payload_size = bytes; in libipw_xmit()
482 bytes = bytes_per_frag; in libipw_xmit()
485 bytes = bytes_last_frag; in libipw_xmit()
492 bytes -= SNAP_SIZE + sizeof(u16); in libipw_xmit()
495 skb_copy_from_linear_data(skb, skb_put(skb_frag, bytes), bytes); in libipw_xmit()
498 skb_pull(skb, bytes); in libipw_xmit()