Lines Matching refs:tot_written
366 size_t tot_written = 0; in cx18_copy_mdl_to_user() local
389 rc = cx18_copy_buf_to_user(s, mdl->curr_buf, ubuf + tot_written, in cx18_copy_mdl_to_user()
390 ucount - tot_written, &stop); in cx18_copy_mdl_to_user()
394 tot_written += rc; in cx18_copy_mdl_to_user()
397 tot_written >= ucount || /* Reader request satisfied */ in cx18_copy_mdl_to_user()
402 return tot_written; in cx18_copy_mdl_to_user()
409 size_t tot_written = 0; in cx18_read() local
433 if (tot_written) in cx18_read()
445 rc = cx18_copy_mdl_to_user(s, mdl, ubuf + tot_written, in cx18_read()
446 tot_count - tot_written); in cx18_read()
462 tot_written += rc; in cx18_read()
464 if (tot_written == tot_count || single_frame) in cx18_read()
467 return tot_written; in cx18_read()