/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | numbers_test_common.h | 46 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/node/deps/v8/src/builtins/ |
D | builtins-temporal-gen.cc | 54 TNode<Object> next_value = IteratorValue(context, next); in TemporalInstantFixedArrayFromIterable() local 57 GotoIf(TaggedIsSmi(next_value), &if_isnottemporalinstant); in TemporalInstantFixedArrayFromIterable() 58 TNode<Uint16T> next_value_type = LoadInstanceType(CAST(next_value)); in TemporalInstantFixedArrayFromIterable() 62 list.Push(next_value); in TemporalInstantFixedArrayFromIterable() 74 next_value); in TemporalInstantFixedArrayFromIterable()
|
D | builtins-iterator-gen.cc | 172 TNode<Object> next_value = IteratorValue(context, next); in FillFixedArrayFromIterable() local 174 values->Push(next_value); in FillFixedArrayFromIterable() 247 TNode<Object> next_value = IteratorValue(context, next); in StringListFromIterable() local 249 GotoIf(TaggedIsSmi(next_value), &if_isnotstringtype); in StringListFromIterable() 250 TNode<Uint16T> next_value_type = LoadInstanceType(CAST(next_value)); in StringListFromIterable() 253 list.Push(next_value); in StringListFromIterable() 265 next_value); in StringListFromIterable()
|
D | builtins-async-generator-gen.cc | 445 TNode<Object> next_value = LoadValueFromAsyncGeneratorRequest(next); in TF_BUILTIN() local 460 next_value, is_caught); in TF_BUILTIN() 464 CallBuiltin(Builtin::kAsyncGeneratorReject, context, generator, next_value); in TF_BUILTIN()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-bimap.hh | 109 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/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-array.c | 204 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()
|
D | ecma-builtin-promise.c | 395 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/jerryscript/jerry-core/vm/ |
D | opcodes.c | 348 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()
|
D | vm.c | 3663 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/gstreamer/gstplugins_base/gst-libs/gst/rtsp/ |
D | gstrtspconnection.c | 2285 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/tests/ |
D | drmsl.c | 116 void *next_value; in print_neighbors() local 121 &next_key, &next_value); in print_neighbors()
|
/third_party/rust/crates/quote/benches/ |
D | lib.rs | 159 try!(_serde::de::MapAccess::next_value::<u64>(&mut __map)), 169 … try!(_serde::de::MapAccess::next_value::<String>(&mut __map)), 173 let _ = try!(_serde::de::MapAccess::next_value::<
|
/third_party/libdrm/ |
D | xf86drmSL.c | 233 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()
|
/third_party/rust/crates/serde/test_suite/tests/expand/ |
D | de_enum.expanded.rs | 776 match _serde::de::MapAccess::next_value::<i8>( in deserialize() 791 match _serde::de::MapAccess::next_value::<B>( in deserialize() 806 match _serde::de::MapAccess::next_value::<C>( in deserialize() 821 match _serde::de::MapAccess::next_value::<D>( in deserialize() 832 let _ = match _serde::de::MapAccess::next_value::< in deserialize() 1279 match _serde::de::MapAccess::next_value::<i8>( in deserialize() 1294 match _serde::de::MapAccess::next_value::<B>( in deserialize() 1309 match _serde::de::MapAccess::next_value::<C>( in deserialize() 1324 match _serde::de::MapAccess::next_value::<D>( in deserialize() 1335 let _ = match _serde::de::MapAccess::next_value::< in deserialize()
|
D | named_map.expanded.rs | 254 match _serde::de::MapAccess::next_value::<A>(&mut __map) { in deserialize() 269 match _serde::de::MapAccess::next_value::<B>(&mut __map) { in deserialize() 284 match _serde::de::MapAccess::next_value::<C>(&mut __map) { in deserialize() 293 let _ = match _serde::de::MapAccess::next_value::< in deserialize() 577 let _ = match _serde::de::MapAccess::next_value::< in deserialize_in_place()
|
D | lifetimes.expanded.rs | 355 … match _serde::de::MapAccess::next_value::<&'a i32>( in deserialize() 366 let _ = match _serde::de::MapAccess::next_value::< in deserialize() 539 match _serde::de::MapAccess::next_value::<i32>( in deserialize() 550 let _ = match _serde::de::MapAccess::next_value::< in deserialize()
|
D | default_ty_param.expanded.rs | 185 match _serde::de::MapAccess::next_value::<PhantomData<T>>( in deserialize() 196 let _ = match _serde::de::MapAccess::next_value::< in deserialize() 375 let _ = match _serde::de::MapAccess::next_value::< in deserialize_in_place()
|
D | generic_enum.expanded.rs | 498 match _serde::de::MapAccess::next_value::<T>( in deserialize() 513 match _serde::de::MapAccess::next_value::<U>( in deserialize() 524 let _ = match _serde::de::MapAccess::next_value::< in deserialize()
|
D | generic_struct.expanded.rs | 183 match _serde::de::MapAccess::next_value::<T>(&mut __map) { in deserialize() 192 let _ = match _serde::de::MapAccess::next_value::< in deserialize() 373 let _ = match _serde::de::MapAccess::next_value::< in deserialize_in_place()
|
/third_party/node/deps/v8/src/compiler/ |
D | escape-analysis.cc | 435 Node* next_value = in MergeInputs() local 437 if (next_value != value) identical_inputs = false; in MergeInputs() 438 if (next_value != nullptr) { in MergeInputs() 440 TRACE(" input %i: %s#%d\n", i, next_value->op()->mnemonic(), in MergeInputs() 441 next_value->id()); in MergeInputs() 445 buffer_.push_back(next_value); in MergeInputs()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-typedarray-object.c | 817 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/node/deps/v8/src/base/ |
D | bits.h | 93 T next_value = upper_half != 0 ? upper_half : value; in CountLeadingZeros() local 96 return CountLeadingZeros<T, next_bits>(next_value) + add; in CountLeadingZeros()
|
/third_party/rust/crates/serde/serde_derive/src/ |
D | de.rs | 1461 … let _ = try!(_serde::de::MapAccess::next_value::<_serde::de::IgnoredAny>(&mut __map)); in deserialize_adjacently_tagged_enum() 1496 match try!(_serde::de::MapAccess::next_value::<__Field>(&mut __map)) {} in deserialize_adjacently_tagged_enum() 1500 let __ret = try!(match try!(_serde::de::MapAccess::next_value(&mut __map)) { in deserialize_adjacently_tagged_enum() 1554 let __field = try!(_serde::de::MapAccess::next_value(&mut __map)); in deserialize_adjacently_tagged_enum() 1579 …let __content = try!(_serde::de::MapAccess::next_value::<_serde::__private::de::Content>(&mut __ma… in deserialize_adjacently_tagged_enum() 2481 quote_spanned!(span=> _serde::de::MapAccess::next_value::<#field_ty>); in deserialize_map() 2490 match _serde::de::MapAccess::next_value::<#wrapper_ty>(&mut __map) { in deserialize_map() 2515 try!(_serde::de::MapAccess::next_value(&mut __map))))); in deserialize_map() 2522 … _ => { let _ = try!(_serde::de::MapAccess::next_value::<_serde::de::IgnoredAny>(&mut __map)); } in deserialize_map() 2728 … self.place.#member = match _serde::de::MapAccess::next_value::<#wrapper_ty>(&mut __map) { in deserialize_map_in_place() [all …]
|
/third_party/rust/crates/serde/serde/src/de/ |
D | mod.rs | 1862 fn next_value<V>(&mut self) -> Result<V, Self::Error> in next_value() method 1943 fn next_value<V>(&mut self) -> Result<V, Self::Error> in next_value() function 1947 (**self).next_value() in next_value()
|
/third_party/alsa-lib/src/pcm/ |
D | pcm_params.c | 1293 int (*next_value)(snd_pcm_hw_params_t *params, 1312 int (*next_value)(snd_pcm_hw_params_t *params, 1362 value = strategy->next_value(¶ms1, 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;
|