Lines Matching refs:this_time
426 int this_time; in chaoskey_read() local
468 this_time = dev->valid - dev->used; in chaoskey_read()
469 if (this_time > count) in chaoskey_read()
470 this_time = count; in chaoskey_read()
472 remain = copy_to_user(buffer, dev->buf + dev->used, this_time); in chaoskey_read()
479 dev->used += this_time - remain; in chaoskey_read()
484 count -= this_time; in chaoskey_read()
485 read_count += this_time; in chaoskey_read()
486 buffer += this_time; in chaoskey_read()
487 dev->used += this_time; in chaoskey_read()
505 int this_time; in chaoskey_rng_read() local
531 this_time = dev->valid - dev->used; in chaoskey_rng_read()
532 if (this_time > max) in chaoskey_rng_read()
533 this_time = max; in chaoskey_rng_read()
535 memcpy(data, dev->buf + dev->used, this_time); in chaoskey_rng_read()
537 dev->used += this_time; in chaoskey_rng_read()
541 usb_dbg(dev->interface, "rng_read this_time %d\n", this_time); in chaoskey_rng_read()
542 return this_time; in chaoskey_rng_read()