Searched refs:bytes1 (Results 1 – 3 of 3) sorted by relevance
/Linux-v6.6/drivers/xen/ |
D | evtchn.c | 199 unsigned int c, p, bytes1 = 0, bytes2 = 0; in evtchn_read() local 236 bytes1 = (u->ring_size - evtchn_ring_offset(u, c)) * in evtchn_read() 240 bytes1 = (p - c) * sizeof(evtchn_port_t); in evtchn_read() 245 if (bytes1 > count) { in evtchn_read() 246 bytes1 = count; in evtchn_read() 248 } else if ((bytes1 + bytes2) > count) { in evtchn_read() 249 bytes2 = count - bytes1; in evtchn_read() 254 if (copy_to_user(buf, evtchn_ring_entry(u, c), bytes1) || in evtchn_read() 256 copy_to_user(&buf[bytes1], &u->ring[0], bytes2))) in evtchn_read() 259 WRITE_ONCE(u->ring_cons, c + (bytes1 + bytes2) / sizeof(evtchn_port_t)); in evtchn_read() [all …]
|
/Linux-v6.6/sound/usb/ |
D | pcm.c | 1324 unsigned int bytes1 = subs->buffer_bytes - oldptr; in retire_capture_urb() local 1326 memcpy(runtime->dma_area + oldptr, cp, bytes1); in retire_capture_urb() 1327 memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1); in retire_capture_urb() 1430 unsigned int bytes1 = subs->buffer_bytes - subs->hwptr_done; in copy_to_urb() local 1433 runtime->dma_area + subs->hwptr_done, bytes1); in copy_to_urb() 1434 memcpy(urb->transfer_buffer + offset + bytes1, in copy_to_urb() 1435 runtime->dma_area, bytes - bytes1); in copy_to_urb()
|
/Linux-v6.6/drivers/net/ethernet/mellanox/mlx5/core/en/tc/ |
D | meter.c | 585 u64 bytes1, packets1, lastuse1; in mlx5e_tc_meter_get_stats() local 588 mlx5_fc_query_cached(meter->act_counter, &bytes1, &packets1, &lastuse1); in mlx5e_tc_meter_get_stats() 591 *bytes = bytes1 + bytes2; in mlx5e_tc_meter_get_stats()
|