Home
last modified time | relevance | path

Searched refs:len2 (Results 1 – 11 of 11) sorted by relevance

/qemu/hw/net/
H A Dtulip.c168 int len2 = (desc->control >> RDES1_BUF2_SIZE_SHIFT) & RDES1_BUF2_SIZE_MASK; in tulip_copy_rx_bytes() local
183 if (s->rx_frame_len && len2) { in tulip_copy_rx_bytes()
184 if (s->rx_frame_len > len2) { in tulip_copy_rx_bytes()
185 len = len2; in tulip_copy_rx_bytes()
582 int len2 = (desc->control >> TDES1_BUF2_SIZE_SHIFT) & TDES1_BUF2_SIZE_MASK; in tulip_copy_tx_buffers() local
596 if (s->tx_frame_len + len2 > sizeof(s->tx_frame)) { in tulip_copy_tx_buffers()
599 __func__, s->tx_frame_len, len2, sizeof(s->tx_frame)); in tulip_copy_tx_buffers()
602 if (len2) { in tulip_copy_tx_buffers()
604 s->tx_frame + s->tx_frame_len, len2); in tulip_copy_tx_buffers()
605 s->tx_frame_len += len2; in tulip_copy_tx_buffers()
[all …]
H A Dtrace-events410 …ntrol, uint32_t len1, uint32_t len2, uint32_t buf1, uint32_t buf2) "%s 0x%08x: status 0x%08x contr…
/qemu/tests/qemu-iotests/
H A D30898 len2=$(stat -c '%s' "$2")
100 if [ "$len1" != "$len2" ]; then
102 echo "$len1 != $len2" >&2
/qemu/audio/
H A Ddsoundaudio.c326 DWORD blen1, blen2, len1, len2; in dsound_clear_sample() local
343 len2 = blen2 / hw->info.bytes_per_frame; in dsound_clear_sample()
348 p2, blen2, len2); in dsound_clear_sample()
355 if (p2 && len2) { in dsound_clear_sample()
356 audio_pcm_info_clear_buf (&hw->info, p2, len2); in dsound_clear_sample()
/qemu/include/qemu/
H A Drange.h212 uint64_t first2, uint64_t len2) in ranges_overlap() argument
215 uint64_t last2 = range_get_last(first2, len2); in ranges_overlap()
/qemu/tests/unit/
H A Dtest-hbitmap.c929 int64_t len1 = 0, len2; in test_hbitmap_next_dirty_area_check_limited() local
944 for (len2 = 1; (off2 + len2 < end && len2 < max_dirty && in test_hbitmap_next_dirty_area_check_limited()
945 hbitmap_get(data->hb, off2 + len2)); len2++) in test_hbitmap_next_dirty_area_check_limited()
955 g_assert_cmpint(len1, ==, len2); in test_hbitmap_next_dirty_area_check_limited()
H A Dtest-xs-node.c110 size_t len1 = 0, len2 = 0; in compare_content() local
116 len2 = c2->len; in compare_content()
118 if (len1 != len2) { in compare_content()
/qemu/crypto/
H A Dblock-luks.c570 unsigned int len2 = in qcrypto_block_luks_check_header() local
575 if (start1 + len1 > start2 && start2 + len2 > start1) { in qcrypto_block_luks_check_header()
/qemu/scripts/
H A Ddecodetree.py1249 len2 = len(line)
1264 indent = len1 - len2
/qemu/hw/vfio/
H A Dpci-quirks.c239 uint64_t first2, uint64_t len2) { in vfio_range_contained() argument
240 return (first1 >= first2 && first1 + len1 <= first2 + len2); in vfio_range_contained()
/qemu/hw/usb/
H A Dhcd-ehci.c1442 uint32_t len2 = off + len - 4096; in ehci_process_itd() local
1443 uint32_t len1 = len - len2; in ehci_process_itd()
1445 qemu_sglist_add(&ehci->isgl, ptr2, len2); in ehci_process_itd()