Lines Matching refs:off
500 size_t off = (r * 10 + s) * 10, size = 10; in test_rstream_random() local
506 if (off <= queued_min && off + size > queued_min) in test_rstream_random()
507 queued_min = off + size; in test_rstream_random()
509 if (!TEST_true(ossl_quic_rstream_queue_data(rstream, NULL, off, in test_rstream_random()
510 bulk_data + off, in test_rstream_random()
513 if (queued_max < off + size) in test_rstream_random()
514 queued_max = off + size; in test_rstream_random()
520 off = read_off + test_random() % 50; in test_rstream_random()
521 if (off > 50) in test_rstream_random()
522 off -= 50; in test_rstream_random()
524 if (off + size > data_size) in test_rstream_random()
525 off = data_size - size; in test_rstream_random()
526 if (off <= queued_min && off + size > queued_min) in test_rstream_random()
527 queued_min = off + size; in test_rstream_random()
529 if (!TEST_true(ossl_quic_rstream_queue_data(rstream, NULL, off, in test_rstream_random()
530 bulk_data + off, in test_rstream_random()
533 if (queued_max < off + size) in test_rstream_random()
534 queued_max = off + size; in test_rstream_random()