Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/md/bcache/
Dutil.h42 size_t _bytes; \
45 _bytes = (heap)->size * sizeof(*(heap)->data); \
47 if (_bytes < KMALLOC_MAX_SIZE) \
48 (heap)->data = kmalloc(_bytes, (gfp)); \
50 (heap)->data = vmalloc(_bytes); \
131 size_t _allocated_size, _bytes; \
135 _bytes = _allocated_size * sizeof(*(fifo)->data); \
141 if (_bytes < KMALLOC_MAX_SIZE) \
142 (fifo)->data = kmalloc(_bytes, (gfp)); \
144 (fifo)->data = vmalloc(_bytes); \
/linux-4.4.14/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.4.14/drivers/net/ethernet/intel/igb/
Digb_main.c5214 u64 _bytes, _packets; in igb_update_stats() local
5241 _bytes = ring->rx_stats.bytes; in igb_update_stats()
5244 bytes += _bytes; in igb_update_stats()
5257 _bytes = ring->tx_stats.bytes; in igb_update_stats()
5260 bytes += _bytes; in igb_update_stats()