Home
last modified time | relevance | path

Searched refs:next_value (Results 1 – 25 of 27) sorted by relevance

12

/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dnumbers_test_common.h46 const IntType next_value = value / base; in Itoa() local
49 static_cast<int>(value > next_value * base ? value - next_value * base in Itoa()
50 : next_value * base - value); in Itoa()
53 value = next_value; in Itoa()
/third_party/abseil-cpp/absl/strings/internal/
Dnumbers_test_common.h46 const IntType next_value = value / base; in Itoa() local
49 static_cast<int>(value > next_value * base ? value - next_value * base in Itoa()
50 : next_value * base - value); in Itoa()
53 value = next_value; in Itoa()
/third_party/harfbuzz/src/
Dhb-bimap.hh102 next_value = 0; in init()
113 rhs = next_value++; in add()
120 { return next_value++; } in skip()
123 { return next_value; } in get_next_value()
163 unsigned int next_value; member
/third_party/boost/boost/regex/v4/
Dregex_traits_defaults.hpp312 boost::intmax_t next_value = t.value(*p1, radix); in global_toi() local
313 if((p1 == p2) || (next_value < 0) || (next_value >= radix)) in global_toi()
318 next_value = t.value(*p1, radix); in global_toi()
319 if((next_value < 0) || (next_value >= radix)) in global_toi()
322 result += next_value; in global_toi()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-bimap.hh109 rhs = next_value++; in add()
116 { return next_value++; } in skip()
119 { return next_value; } in get_next_value()
159 unsigned int next_value = 0; member
/third_party/mindspore/tests/
Ddataset_mock.py89 next_value = []
91 next_value.append(Tensor(np.ndarray(shape, typ)))
93 return tuple(next_value)
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-array.c204 ecma_value_t next_value = ecma_op_iterator_value (next); in ecma_builtin_array_object_from() local
209 if (ECMA_IS_VALUE_ERROR (next_value)) in ecma_builtin_array_object_from()
219 ecma_value_t args_p[2] = { next_value, ecma_make_uint32_value (k) }; in ecma_builtin_array_object_from()
223 ecma_free_value (next_value); in ecma_builtin_array_object_from()
235 mapped_value = next_value; in ecma_builtin_array_object_from()
Decma-builtin-promise.c395 ecma_value_t next_value = ecma_op_iterator_value (next); in ecma_builtin_promise_perform_all() local
399 if (ECMA_IS_VALUE_ERROR (next_value)) in ecma_builtin_promise_perform_all()
412 …value_t next_promise = ecma_op_invoke_by_magic_id (ctor, LIT_MAGIC_STRING_RESOLVE, &next_value, 1); in ecma_builtin_promise_perform_all()
413 ecma_free_value (next_value); in ecma_builtin_promise_perform_all()
/third_party/boost/boost/fusion/view/detail/
Dstrictest_traversal.hpp50 typedef typename remove_reference<Next>::type next_value; typedef
54 typedef typename traits::category_of<next_value>::type tag2;
/third_party/boost/boost/mpl/aux_/
Dintegral_wrapper.hpp61 …BOOST_STATIC_CONSTANT(AUX_WRAPPER_VALUE_TYPE, next_value = BOOST_MPL_AUX_STATIC_CAST(AUX_WRAPPER_V…
64 typedef AUX_WRAPPER_INST(next_value) next;
/third_party/jerryscript/jerry-core/vm/
Dopcodes.c348 ecma_value_t next_value = ecma_op_iterator_step (iterator); in opfunc_append_to_spread_array() local
350 if (ECMA_IS_VALUE_ERROR (next_value)) in opfunc_append_to_spread_array()
355 if (ecma_is_value_false (next_value)) in opfunc_append_to_spread_array()
362 ecma_value_t value = ecma_op_iterator_value (next_value); in opfunc_append_to_spread_array()
364 ecma_free_value (next_value); in opfunc_append_to_spread_array()
441 ecma_value_t next_value = ecma_op_iterator_step (iterator); in opfunc_spread_arguments() local
443 if (ECMA_IS_VALUE_ERROR (next_value)) in opfunc_spread_arguments()
448 if (ecma_is_value_false (next_value)) in opfunc_spread_arguments()
454 ecma_value_t value = ecma_op_iterator_value (next_value); in opfunc_spread_arguments()
456 ecma_free_value (next_value); in opfunc_spread_arguments()
Dvm.c3663 ecma_value_t next_value = ecma_op_iterator_step (iterator); in vm_loop() local
3665 if (ECMA_IS_VALUE_ERROR (next_value)) in vm_loop()
3668 result = next_value; in vm_loop()
3672 if (ecma_is_value_false (next_value)) in vm_loop()
3684 stack_top_p[-2] = next_value; in vm_loop()
3699 ecma_value_t next_value = ecma_op_iterator_value (context_top_p[-2]); in vm_loop() local
3701 if (ECMA_IS_VALUE_ERROR (next_value)) in vm_loop()
3703 result = next_value; in vm_loop()
3707 *stack_top_p++ = next_value; in vm_loop()
3714 ecma_value_t next_value = ecma_op_iterator_step (stack_top_p[-3]); in vm_loop() local
[all …]
/third_party/libdrm/tests/
Ddrmsl.c116 void *next_value; in print_neighbors() local
121 &next_key, &next_value); in print_neighbors()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/
Dgstrtspconnection.c2285 gchar *next_value; in parse_line() local
2298 next_value = value + strlen (value); in parse_line()
2300 next_value = value; in parse_line()
2303 while (*next_value != '\0') { in parse_line()
2304 if ((quoted || comment != 0) && *next_value == '\\' && in parse_line()
2305 next_value[1] != '\0') in parse_line()
2306 next_value++; in parse_line()
2307 else if (comment == 0 && *next_value == '"') in parse_line()
2309 else if (!quoted && *next_value == '(') in parse_line()
2311 else if (comment != 0 && *next_value == ')') in parse_line()
[all …]
/third_party/libdrm/
Dxf86drmSL.c233 unsigned long *next_key, void **next_value) in drmSLLookupNeighbors() argument
242 *prev_value = *next_value = NULL; in drmSLLookupNeighbors()
250 *next_value = update[0]->forward[0]->value; in drmSLLookupNeighbors()
Dxf86drm.h762 unsigned long *next_key, void **next_value);
/third_party/boost/libs/smart_ptr/extras/test/
Dsp_atomic_mt2_test.cpp28 static void next_value( unsigned & v ) in next_value() function
52 std::for_each( v_.begin(), v_.end(), next_value ); in set()
/third_party/mindspore/tests/st/pynative/loss_scale/
Dtest_loss_scale.py87 next_value = []
89 next_value.append(Tensor(np.ndarray(shape, typ)))
91 return tuple(next_value)
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-typedarray-object.c817 ecma_value_t next_value = ecma_op_iterator_value (next); in ecma_op_typedarray_from() local
820 if (ECMA_IS_VALUE_ERROR (next_value)) in ecma_op_typedarray_from()
822 ret_value = next_value; in ecma_op_typedarray_from()
826 ecma_collection_push_back (values_p, next_value); in ecma_op_typedarray_from()
/third_party/boost/libs/math/include_private/boost/math/tools/
Dtest_data.hpp152 typedef boost::integral_constant<int, N+1> next_value; in unpack_and_append_tuple() typedef
155 unpack_and_append_tuple(s, data, next_value(), terminate()); in unpack_and_append_tuple()
168 typedef boost::integral_constant<int, 0> next_value; in unpack_and_append() typedef
171 unpack_and_append_tuple(s, data, next_value(), terminate()); in unpack_and_append()
/third_party/glib/glib/
Dgscanner.h195 GTokenValue next_value; member
Dgscanner.c462 scanner->next_value.v_int64 = 0; in g_scanner_new()
526 g_scanner_free_value (&scanner->next_token, &scanner->next_value); in g_scanner_destroy()
959 &scanner->next_value, in g_scanner_peek_next_token()
988 scanner->value = scanner->next_value; in g_scanner_get_next_token()
/third_party/boost/libs/circular_buffer/test/
Dcommon.ipp2131 static int next_value;
2135 , value_(next_value ++)
2159 void reinit() { is_moved_ = false; value_ = next_value ++; }
2169 static int next_value;
2173 , value_(next_value ++)
2197 void reinit() { is_moved_ = false; value_ = next_value ++; }
2209 int noncopyable_movable_noexcept_t::next_value = 1;
2210 int noncopyable_movable_except_t::next_value = 1;
2215 noncopyable_movable_test_t::next_value = 1;
2367 noncopyable_movable_test_t::next_value = 1;
/third_party/alsa-lib/src/pcm/
Dpcm_params.c1293 int (*next_value)(snd_pcm_hw_params_t *params,
1312 int (*next_value)(snd_pcm_hw_params_t *params,
1362 value = strategy->next_value(&params1, var, value, &dir, pcm, strategy);
1431 return pars[var].next_value(params, var, value, dir, pcm, &pars[var]);
1564 s->next_value = snd_pcm_hw_strategy_simple_next_value;
1593 s->next_value = snd_pcm_hw_strategy_simple_near_next_value;
1619 s->next_value = snd_pcm_hw_strategy_simple_choices_next_value;
/third_party/python/Modules/
Dgcmodule.c381 uintptr_t prev_value = 0, next_value = 0; in validate_list() local
389 next_value = NEXT_MASK_UNREACHABLE; in validate_list()
393 next_value = NEXT_MASK_UNREACHABLE; in validate_list()
406 assert((gc->_gc_next & NEXT_MASK_UNREACHABLE) == next_value); in validate_list()

12