Lines Matching refs:tot_written
375 size_t tot_written = 0; in cx18_copy_mdl_to_user() local
398 rc = cx18_copy_buf_to_user(s, mdl->curr_buf, ubuf + tot_written, in cx18_copy_mdl_to_user()
399 ucount - tot_written, &stop); in cx18_copy_mdl_to_user()
403 tot_written += rc; in cx18_copy_mdl_to_user()
406 tot_written >= ucount || /* Reader request statisfied */ in cx18_copy_mdl_to_user()
411 return tot_written; in cx18_copy_mdl_to_user()
418 size_t tot_written = 0; in cx18_read() local
442 if (tot_written) in cx18_read()
454 rc = cx18_copy_mdl_to_user(s, mdl, ubuf + tot_written, in cx18_read()
455 tot_count - tot_written); in cx18_read()
471 tot_written += rc; in cx18_read()
473 if (tot_written == tot_count || single_frame) in cx18_read()
476 return tot_written; in cx18_read()