Lines Matching refs:this_time
372 int this_time; in chaoskey_read() local
410 this_time = dev->valid - dev->used; in chaoskey_read()
411 if (this_time > count) in chaoskey_read()
412 this_time = count; in chaoskey_read()
414 remain = copy_to_user(buffer, dev->buf + dev->used, this_time); in chaoskey_read()
421 dev->used += this_time - remain; in chaoskey_read()
426 count -= this_time; in chaoskey_read()
427 read_count += this_time; in chaoskey_read()
428 buffer += this_time; in chaoskey_read()
429 dev->used += this_time; in chaoskey_read()
445 int this_time; in chaoskey_rng_read() local
471 this_time = dev->valid - dev->used; in chaoskey_rng_read()
472 if (this_time > max) in chaoskey_rng_read()
473 this_time = max; in chaoskey_rng_read()
475 memcpy(data, dev->buf + dev->used, this_time); in chaoskey_rng_read()
477 dev->used += this_time; in chaoskey_rng_read()
481 usb_dbg(dev->interface, "rng_read this_time %d\n", this_time); in chaoskey_rng_read()
482 return this_time; in chaoskey_rng_read()