Home
last modified time | relevance | path

Searched refs:_bytes (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/drivers/md/bcache/
Dutil.h41 size_t _bytes; \
44 _bytes = (heap)->size * sizeof(*(heap)->data); \
46 if (_bytes < KMALLOC_MAX_SIZE) \
47 (heap)->data = kmalloc(_bytes, (gfp)); \
49 (heap)->data = vmalloc(_bytes); \
133 size_t _allocated_size, _bytes; \
137 _bytes = _allocated_size * sizeof(*(fifo)->data); \
143 if (_bytes < KMALLOC_MAX_SIZE) \
144 (fifo)->data = kmalloc(_bytes, (gfp)); \
146 (fifo)->data = vmalloc(_bytes); \
/linux-4.1.27/drivers/net/ethernet/marvell/
Dsky2.c3908 u64 _bytes, _packets; in sky2_get_stats() local
3912 _bytes = sky2->rx_stats.bytes; in sky2_get_stats()
3917 stats->rx_bytes = _bytes; in sky2_get_stats()
3921 _bytes = sky2->tx_stats.bytes; in sky2_get_stats()
3926 stats->tx_bytes = _bytes; in sky2_get_stats()
/linux-4.1.27/drivers/net/ethernet/intel/igb/
Digb_main.c5223 u64 _bytes, _packets; in igb_update_stats() local
5250 _bytes = ring->rx_stats.bytes; in igb_update_stats()
5253 bytes += _bytes; in igb_update_stats()
5266 _bytes = ring->tx_stats.bytes; in igb_update_stats()
5269 bytes += _bytes; in igb_update_stats()