Home
last modified time | relevance | path

Searched refs:len_todo (Results 1 – 7 of 7) sorted by relevance

/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/media/usb/cx231xx/
H A Dcx231xx-cards.c1216 int len_todo = len; in read_eeprom() local
1230 while (len_todo > 0) { in read_eeprom()
1231 msg_read.len = (len_todo > 64) ? 64 : len_todo; in read_eeprom()
1240 len_todo -= msg_read.len; in read_eeprom()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/media/usb/cx231xx/
H A Dcx231xx-cards.c1216 int len_todo = len; in read_eeprom() local
1230 while (len_todo > 0) { in read_eeprom()
1231 msg_read.len = (len_todo > 64) ? 64 : len_todo; in read_eeprom()
1240 len_todo -= msg_read.len; in read_eeprom()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/media/usb/cx231xx/
H A Dcx231xx-cards.c1216 int len_todo = len; in read_eeprom() local
1230 while (len_todo > 0) { in read_eeprom()
1231 msg_read.len = (len_todo > 64) ? 64 : len_todo; in read_eeprom()
1240 len_todo -= msg_read.len; in read_eeprom()
/dports/mail/cyrus-imapd34/cyrus-imapd-3.4.2/imtest/
H A Dimtest.c1672 size_t len_todo; in generic_pipe() local
1674 len_todo = lineEnd - toWrite + 1; /* +1 is to include the newline! */ in generic_pipe()
1676 toSend = (char *)xrealloc(toSend, len_todo + 1); in generic_pipe()
1678 memcpy(toSend, toWrite, len_todo); in generic_pipe()
1679 toSend[len_todo] = '\0'; in generic_pipe()
1681 ret = text->pipe_oneline(toSend, len_todo, text->rock); in generic_pipe()
1685 toWriteLen -= len_todo; in generic_pipe()
/dports/mail/cyrus-imapd30/cyrus-imapd-3.0.16/imtest/
H A Dimtest.c1621 size_t len_todo; in generic_pipe() local
1623 len_todo = lineEnd - toWrite + 1; /* +1 is to include the newline! */ in generic_pipe()
1625 toSend = (char *)xrealloc(toSend, len_todo + 1); in generic_pipe()
1627 memcpy(toSend, toWrite, len_todo); in generic_pipe()
1628 toSend[len_todo] = '\0'; in generic_pipe()
1630 ret = text->pipe_oneline(toSend, len_todo, text->rock); in generic_pipe()
1634 toWriteLen -= len_todo; in generic_pipe()
/dports/mail/cyrus-imapd32/cyrus-imapd-3.2.8/imtest/
H A Dimtest.c1674 size_t len_todo; in generic_pipe() local
1676 len_todo = lineEnd - toWrite + 1; /* +1 is to include the newline! */ in generic_pipe()
1678 toSend = (char *)xrealloc(toSend, len_todo + 1); in generic_pipe()
1680 memcpy(toSend, toWrite, len_todo); in generic_pipe()
1681 toSend[len_todo] = '\0'; in generic_pipe()
1683 ret = text->pipe_oneline(toSend, len_todo, text->rock); in generic_pipe()
1687 toWriteLen -= len_todo; in generic_pipe()
/dports/editors/vim/vim-8.2.3745/src/
H A Dundo.c933 size_t len_todo = len; in undo_write() local
936 while (bi->bi_used + len_todo >= CRYPT_BUF_SIZE) in undo_write()
941 len_todo -= n; in undo_write()
947 if (len_todo > 0) in undo_write()
949 mch_memmove(bi->bi_buffer + bi->bi_used, p, len_todo); in undo_write()
950 bi->bi_used += len_todo; in undo_write()