Lines Matching refs:offset
22 static int check_time(long offset) in check_time() argument
31 t2 = t1 + offset; in check_time()
35 if (!TEST_true(OPENSSL_gmtime_adj(&tm1, 0, offset)) in check_time()
45 if (!TEST_long_eq(offset, toffset)) in check_time()
50 static int test_gmtime(int offset) in test_gmtime() argument
52 return check_time(offset) in test_gmtime()
53 && check_time(-offset) in test_gmtime()
54 && check_time(offset * 1000L) in test_gmtime()
55 && check_time(-offset * 1000L) in test_gmtime()
56 && check_time(offset * 1000000L) in test_gmtime()
57 && check_time(-offset * 1000000L); in test_gmtime()