Home
last modified time | relevance | path

Searched refs:assert_u64_eq (Results 1 – 9 of 9) sorted by relevance

/external/jemalloc_new/test/unit/
Dnstime.c9 assert_u64_eq(nstime_ns(&nst), 42000000043, "ns incorrectly read"); in TEST_BEGIN()
10 assert_u64_eq(nstime_sec(&nst), 42, "sec incorrectly read"); in TEST_BEGIN()
11 assert_u64_eq(nstime_nsec(&nst), 43, "nsec incorrectly read"); in TEST_BEGIN()
19 assert_u64_eq(nstime_sec(&nst), 42, "sec incorrectly read"); in TEST_BEGIN()
20 assert_u64_eq(nstime_nsec(&nst), 43, "nsec incorrectly read"); in TEST_BEGIN()
30 assert_u64_eq(nstime_sec(&nstb), 42, "sec incorrectly copied"); in TEST_BEGIN()
31 assert_u64_eq(nstime_nsec(&nstb), 43, "nsec incorrectly copied"); in TEST_BEGIN()
183 assert_u64_eq(nstime_divide(&nsta, &nstb), 10, in TEST_BEGIN()
191 assert_u64_eq(nstime_divide(&nsta, &nstb), 10, in TEST_BEGIN()
199 assert_u64_eq(nstime_divide(&nsta, &nstb), 9, in TEST_BEGIN()
Dprof_tctx.c22 assert_u64_eq(curobjs_0 + 1, curobjs_1, in TEST_BEGIN()
32 assert_u64_eq(curobjs_1, curobjs_2, in TEST_BEGIN()
37 assert_u64_eq(curobjs_0, curobjs_3, in TEST_BEGIN()
Dprng.c49 assert_u64_eq(ra, rb, in test_prng_lg_range_u64()
54 assert_u64_eq(ra, rb, in test_prng_lg_range_u64()
68 assert_u64_eq((rb & (UINT64_C(0xffffffffffffffff) << lg_range)), in test_prng_lg_range_u64()
70 assert_u64_eq(rb, (ra >> (64 - lg_range)), in test_prng_lg_range_u64()
Dprof_reset.c115 assert_u64_eq(cnt_all_copy.curobjs, 1, "Expected 1 allocation"); in TEST_BEGIN()
121 assert_u64_eq(cnt_all_copy.curobjs, 0, "Expected 0 allocations"); in TEST_BEGIN()
Dsmoothstep.c55 assert_u64_eq(smoothstep_tab[SMOOTHSTEP_NSTEPS-1], in TEST_BEGIN()
DSFMT.c1538 assert_u64_eq(array64[i], init_gen_rand_64_expected[i], in TEST_BEGIN()
1542 assert_u64_eq(r, array64[i], in TEST_BEGIN()
1548 assert_u64_eq(r, array64_2[i], in TEST_BEGIN()
1574 assert_u64_eq(array64[i], init_by_array_64_expected[i], in TEST_BEGIN()
1578 assert_u64_eq(r, array64[i], in TEST_BEGIN()
1584 assert_u64_eq(r, array64_2[i], in TEST_BEGIN()
Ddecay.c532 assert_u64_eq(npurge0, npurge1, "Unexpected purging occurred"); in TEST_BEGIN()
/external/jemalloc_new/test/integration/
Dallocated.c35 assert_u64_eq(*ap0, a0, in thd_start()
56 assert_u64_eq(*dp0, d0, in thd_start()
67 assert_u64_eq(*ap1, a1, in thd_start()
84 assert_u64_eq(*dp1, d1, in thd_start()
/external/jemalloc_new/test/include/test/
Dtest.h200 #define assert_u64_eq(a, b, ...) assert_cmp(uint64_t, a, b, ==, \ macro