Lines Matching refs:tot_written
381 size_t tot_written = 0; in cx18_copy_mdl_to_user() local
404 rc = cx18_copy_buf_to_user(s, mdl->curr_buf, ubuf + tot_written, in cx18_copy_mdl_to_user()
405 ucount - tot_written, &stop); in cx18_copy_mdl_to_user()
409 tot_written += rc; in cx18_copy_mdl_to_user()
412 tot_written >= ucount || /* Reader request statisfied */ in cx18_copy_mdl_to_user()
417 return tot_written; in cx18_copy_mdl_to_user()
424 size_t tot_written = 0; in cx18_read() local
448 if (tot_written) in cx18_read()
460 rc = cx18_copy_mdl_to_user(s, mdl, ubuf + tot_written, in cx18_read()
461 tot_count - tot_written); in cx18_read()
477 tot_written += rc; in cx18_read()
479 if (tot_written == tot_count || single_frame) in cx18_read()
482 return tot_written; in cx18_read()