Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_subexp.c145 const int step_sign = *bestp > oldp ? -1 : 1; in vp9_prob_diff_update_savings_search_model() local
146 const int step = stepsize * step_sign; in vp9_prob_diff_update_savings_search_model()
161 for (newp = *bestp; (newp - oldp) * step_sign < 0; newp += step) { in vp9_prob_diff_update_savings_search_model()
/external/python/cpython3/Objects/
Dsliceobject.c386 int step_sign; in _PySlice_GetLongIndices() local
390 step_sign = _PyLong_Sign(step); in _PySlice_GetLongIndices()
391 if (step_sign == 0) { in _PySlice_GetLongIndices()
396 step_is_negative = step_sign < 0; in _PySlice_GetLongIndices()