Lines Matching refs:bytes
19 size_t bytes; in speakup_file_write() local
26 bytes = min(count, sizeof(buf)); in speakup_file_write()
27 if (copy_from_user(buf, ptr, bytes)) in speakup_file_write()
29 count -= bytes; in speakup_file_write()
30 ptr += bytes; in speakup_file_write()
32 synth_write(buf, bytes); in speakup_file_write()
44 size_t bytes; in speakup_file_writeu() local
56 bytes = min(count, sizeof(buf)); in speakup_file_writeu()
57 if (copy_from_user(buf, ptr, bytes)) in speakup_file_writeu()
61 for (in = 0, out = 0; in < bytes; in += consumed) { in speakup_file_writeu()
64 value = synth_utf8_get(buf + in, bytes - in, &consumed, &want); in speakup_file_writeu()
68 if (want > bytes - in) in speakup_file_writeu()
72 bytes = in; in speakup_file_writeu()
81 count -= bytes; in speakup_file_writeu()
82 ptr += bytes; in speakup_file_writeu()