Home
last modified time | relevance | path

Searched refs:next_val (Results 1 – 6 of 6) 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()
/third_party/harfbuzz/src/
Dhb-ot-var-gvar-table.hh512 float next_val = T::get (points[next]); in infer_delta() local
516 if (prev_val == next_val) in infer_delta()
518 else if (target_val <= hb_min (prev_val, next_val)) in infer_delta()
519 return (prev_val < next_val) ? prev_delta : next_delta; in infer_delta()
520 else if (target_val >= hb_max (prev_val, next_val)) in infer_delta()
521 return (prev_val > next_val) ? prev_delta : next_delta; in infer_delta()
524 float r = (target_val - prev_val) / (next_val - prev_val); in infer_delta()
/third_party/eudev/src/udev/
Dudev-rules.c1019 enum token_type next_val = TK_UNSET; in sort_token() local
1027 if (next_val == TK_UNSET || rule_tmp->token[j].type < next_val) { in sort_token()
1028 next_val = rule_tmp->token[j].type; in sort_token()
/third_party/mindspore/mindspore/ccsrc/backend/session/
Dascend_session.cc254 auto *next_val = static_cast<int32_t *>(next_loop_tensor->data_c()); in LoadCtrlInputTensor() local
255 MS_EXCEPTION_IF_NULL(next_val); in LoadCtrlInputTensor()
256 *next_val = 0; in LoadCtrlInputTensor()