Lines Matching refs:this_time
413 int this_time; in chaoskey_read() local
445 this_time = dev->valid - dev->used; in chaoskey_read()
446 if (this_time > count) in chaoskey_read()
447 this_time = count; in chaoskey_read()
449 remain = copy_to_user(buffer, dev->buf + dev->used, this_time); in chaoskey_read()
456 dev->used += this_time - remain; in chaoskey_read()
461 count -= this_time; in chaoskey_read()
462 read_count += this_time; in chaoskey_read()
463 buffer += this_time; in chaoskey_read()
464 dev->used += this_time; in chaoskey_read()
482 int this_time; in chaoskey_rng_read() local
508 this_time = dev->valid - dev->used; in chaoskey_rng_read()
509 if (this_time > max) in chaoskey_rng_read()
510 this_time = max; in chaoskey_rng_read()
512 memcpy(data, dev->buf + dev->used, this_time); in chaoskey_rng_read()
514 dev->used += this_time; in chaoskey_rng_read()
518 usb_dbg(dev->interface, "rng_read this_time %d\n", this_time); in chaoskey_rng_read()
519 return this_time; in chaoskey_rng_read()