Lines Matching refs:this_time
414 int this_time; in chaoskey_read() local
446 this_time = dev->valid - dev->used; in chaoskey_read()
447 if (this_time > count) in chaoskey_read()
448 this_time = count; in chaoskey_read()
450 remain = copy_to_user(buffer, dev->buf + dev->used, this_time); in chaoskey_read()
457 dev->used += this_time - remain; in chaoskey_read()
462 count -= this_time; in chaoskey_read()
463 read_count += this_time; in chaoskey_read()
464 buffer += this_time; in chaoskey_read()
465 dev->used += this_time; in chaoskey_read()
483 int this_time; in chaoskey_rng_read() local
509 this_time = dev->valid - dev->used; in chaoskey_rng_read()
510 if (this_time > max) in chaoskey_rng_read()
511 this_time = max; in chaoskey_rng_read()
513 memcpy(data, dev->buf + dev->used, this_time); in chaoskey_rng_read()
515 dev->used += this_time; in chaoskey_rng_read()
519 usb_dbg(dev->interface, "rng_read this_time %d\n", this_time); in chaoskey_rng_read()
520 return this_time; in chaoskey_rng_read()