Home
last modified time | relevance | path

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

/external/jemalloc_new/test/unit/
Dsmoothstep.c40 uint64_t prev_h; in TEST_BEGIN() local
49 prev_h = 0; in TEST_BEGIN()
52 assert_u64_ge(h, prev_h, "Piecewise non-monotonic, i=%u", i); in TEST_BEGIN()
53 prev_h = h; in TEST_BEGIN()
61 uint64_t prev_h, prev_delta; in TEST_BEGIN() local
70 prev_h = 0; in TEST_BEGIN()
74 uint64_t delta = h - prev_h; in TEST_BEGIN()
78 prev_h = h; in TEST_BEGIN()
82 prev_h = KQU(1) << SMOOTHSTEP_BFP; in TEST_BEGIN()
86 uint64_t delta = prev_h - h; in TEST_BEGIN()
[all …]
/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()
/external/tensorflow/tensorflow/python/grappler/
Dhierarchical_controller.py802 def body(i, prev_c, prev_h): argument
804 next_c, next_h = lstm(signal, prev_c, prev_h, w_lstm, forget_bias)
876 def body(i, prev_c, prev_h, actions, log_probs): argument
887 next_c, next_h = lstm(signal, prev_c, prev_h, w_lstm, forget_bias)
1095 def lstm(x, prev_c, prev_h, w_lstm, forget_bias): argument
1109 ifog = math_ops.matmul(array_ops.concat([x, prev_h], axis=1), w_lstm)