Home
last modified time | relevance | path

Searched refs:prev_h (Results 1 – 2 of 2) sorted by relevance

/external/jemalloc/test/unit/
Dsmoothstep.c41 uint64_t prev_h; in TEST_BEGIN() local
50 prev_h = 0; in TEST_BEGIN()
53 assert_u64_ge(h, prev_h, "Piecewise non-monotonic, i=%u", i); in TEST_BEGIN()
54 prev_h = h; in TEST_BEGIN()
63 uint64_t prev_h, prev_delta; in TEST_BEGIN() local
72 prev_h = 0; in TEST_BEGIN()
76 uint64_t delta = h - prev_h; in TEST_BEGIN()
80 prev_h = h; in TEST_BEGIN()
84 prev_h = KQU(1) << SMOOTHSTEP_BFP; in TEST_BEGIN()
88 uint64_t delta = prev_h - h; in TEST_BEGIN()
[all …]
/external/libcxx/test/support/
Dassert_checkpoint.h62 HandlerT prev_h = std::signal(SIGABRT, checkpointSignalHandler); in initCheckpointHandler() local
63 if (prev_h == SIG_ERR) { in initCheckpointHandler()