Home
last modified time | relevance | path

Searched refs:next_val (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
Decma-builtin-typedarray.c168 ecma_value_t next_val = ecma_get_number (arguments_list_p[k], &num); in ecma_builtin_typedarray_of() local
170 if (ECMA_IS_VALUE_ERROR (next_val)) in ecma_builtin_typedarray_of()
173 return next_val; in ecma_builtin_typedarray_of()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-promise.c159 ecma_value_t next_val = ecma_op_iterator_value (next); in ecma_builtin_promise_perform_race() local
163 if (ECMA_IS_VALUE_ERROR (next_val)) in ecma_builtin_promise_perform_race()
166 return next_val; in ecma_builtin_promise_perform_race()
170 …a_value_t next_promise = ecma_op_invoke_by_magic_id (ctor, LIT_MAGIC_STRING_RESOLVE, &next_val, 1); in ecma_builtin_promise_perform_race()
171 ecma_free_value (next_val); in ecma_builtin_promise_perform_race()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-var-gvar-table.hh516 float next_val = T::get (points[next]); in infer_delta() local
520 if (prev_val == next_val) in infer_delta()
522 else if (target_val <= hb_min (prev_val, next_val)) in infer_delta()
523 return (prev_val < next_val) ? prev_delta : next_delta; in infer_delta()
524 else if (target_val >= hb_max (prev_val, next_val)) in infer_delta()
525 return (prev_val > next_val) ? prev_delta : next_delta; in infer_delta()
528 float r = (target_val - prev_val) / (next_val - prev_val); in infer_delta()