Lines Matching defs:bytes
195 size_t bytes = dpaa2_console_size(cd);
207 if (count < bytes)
208 bytes = count;
210 kbuf = kmalloc(bytes, GFP_KERNEL);
214 if (bytes > bytes_end) {
222 bytes -= bytes_end;
226 memcpy_fromio(kbuf, cd->cur_ptr, bytes);
227 if (copy_to_user(buf, kbuf, bytes)) {
231 cd->cur_ptr += bytes;
232 written += bytes;