/third_party/gn/src/base/ |
D | values.cc | 680 std::unique_ptr<Value> in_value) { in Set() argument 682 DCHECK(in_value); in Set() 703 ->SetWithoutPathExpansion(current_path, std::move(in_value)); in Set() 706 Value* DictionaryValue::SetBoolean(std::string_view path, bool in_value) { in SetBoolean() argument 707 return Set(path, std::make_unique<Value>(in_value)); in SetBoolean() 710 Value* DictionaryValue::SetInteger(std::string_view path, int in_value) { in SetInteger() argument 711 return Set(path, std::make_unique<Value>(in_value)); in SetInteger() 715 std::string_view in_value) { in SetString() argument 716 return Set(path, std::make_unique<Value>(in_value)); in SetString() 720 const std::u16string& in_value) { in SetString() argument [all …]
|
D | values.h | 408 Value* Set(std::string_view path, std::unique_ptr<Value> in_value); 413 Value* SetBoolean(std::string_view path, bool in_value); 415 Value* SetInteger(std::string_view path, int in_value); 417 Value* SetString(std::string_view path, std::string_view in_value); 419 Value* SetString(std::string_view path, const std::u16string& in_value); 422 std::unique_ptr<DictionaryValue> in_value); 425 std::unique_ptr<ListValue> in_value); 431 std::unique_ptr<Value> in_value); 614 bool Set(size_t index, std::unique_ptr<Value> in_value); 667 void Append(std::unique_ptr<Value> in_value); [all …]
|
/third_party/boost/boost/mpi/ |
D | collectives.hpp | 52 all_gather(const communicator& comm, const T& in_value, 60 all_gather(const communicator& comm, const T& in_value, T* out_values); 297 gather(const communicator& comm, const T& in_value, std::vector<T>& out_values, 305 gather(const communicator& comm, const T& in_value, T* out_values, int root); 311 void gather(const communicator& comm, const T& in_value, int root); 591 reduce(const communicator& comm, const T& in_value, T& out_value, Op op, 598 void reduce(const communicator& comm, const T& in_value, Op op, int root); 665 scan(const communicator& comm, const T& in_value, T& out_value, Op op); 672 scan(const communicator& comm, const T& in_value, Op op);
|
/third_party/boost/boost/mpi/collectives/ |
D | gather.hpp | 121 gather(const communicator& comm, const T& in_value, T* out_values, int root) in gather() argument 124 detail::gather_impl(comm, &in_value, 1, out_values, root, is_mpi_datatype<T>()); in gather() 128 void gather(const communicator& comm, const T& in_value, int root) in gather() argument 131 detail::gather_impl(comm, &in_value, 1, (T*)0, root, is_mpi_datatype<T>()); in gather() 136 gather(const communicator& comm, const T& in_value, std::vector<T>& out_values, in gather() argument 143 ::boost::mpi::gather(comm, in_value, c_data(out_values), root); in gather()
|
D | all_reduce.hpp | 113 all_reduce(const communicator& comm, const T& in_value, T& out_value, Op op) in all_reduce() argument 115 detail::all_reduce_impl(comm, &in_value, 1, &out_value, op, in all_reduce() 120 T all_reduce(const communicator& comm, const T& in_value, Op op) in all_reduce() argument 123 ::boost::mpi::all_reduce(comm, in_value, result, op); in all_reduce()
|
D | all_gather.hpp | 105 all_gather(const communicator& comm, const T& in_value, T* out_values) in all_gather() argument 107 detail::all_gather_impl(comm, &in_value, 1, out_values, is_mpi_datatype<T>()); in all_gather() 112 all_gather(const communicator& comm, const T& in_value, std::vector<T>& out_values) in all_gather() argument 116 ::boost::mpi::all_gather(comm, in_value, c_data(out_values)); in all_gather()
|
D | scan.hpp | 142 scan(const communicator& comm, const T& in_value, T& out_value, Op op) in scan() argument 144 detail::scan_impl(comm, &in_value, 1, &out_value, op, in scan() 158 scan(const communicator& comm, const T& in_value, Op op) in scan() argument 161 detail::scan_impl(comm, &in_value, 1, &out_value, op, in scan()
|
D | all_gatherv.hpp | 69 all_gatherv(const communicator& comm, const T& in_value, T* out_values, in all_gatherv() argument 75 detail::all_gatherv_impl(comm, &in_value, out_values, c_data(sizes), 0, is_mpi_datatype<T>()); in all_gatherv() 103 all_gatherv(const communicator& comm, const T& in_value, T* out_values, in all_gatherv() argument 109 detail::all_gatherv_impl(comm, &in_value, 1, out_values, in all_gatherv()
|
D | reduce.hpp | 354 reduce(const communicator& comm, const T& in_value, T& out_value, Op op, in reduce() argument 358 detail::reduce_impl(comm, &in_value, 1, &out_value, op, root, in reduce() 361 detail::reduce_impl(comm, &in_value, 1, op, root, in reduce() 366 void reduce(const communicator& comm, const T& in_value, Op op, int root) in reduce() argument 370 detail::reduce_impl(comm, &in_value, 1, op, root, in reduce()
|
/third_party/gstreamer/gstplugins_bad/ext/vulkan/ |
D | vkviewconvert.c | 708 _halve_value (GValue * out, const GValue * in_value) in _halve_value() argument 711 if (G_VALUE_HOLDS_INT (in_value)) { in _halve_value() 713 g_value_set_int (out, MAX (g_value_get_int (in_value) / 2, 1)); in _halve_value() 714 } else if (GST_VALUE_HOLDS_FRACTION (in_value)) { in _halve_value() 716 num = gst_value_get_fraction_numerator (in_value); in _halve_value() 717 den = gst_value_get_fraction_denominator (in_value); in _halve_value() 725 } else if (GST_VALUE_HOLDS_INT_RANGE (in_value)) { in _halve_value() 726 gint range_min = gst_value_get_int_range_min (in_value); in _halve_value() 727 gint range_max = gst_value_get_int_range_max (in_value); in _halve_value() 728 gint range_step = gst_value_get_int_range_step (in_value); in _halve_value() [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/ |
D | gstglviewconvert.c | 495 _halve_value (GValue * out, const GValue * in_value) in _halve_value() argument 498 if (G_VALUE_HOLDS_INT (in_value)) { in _halve_value() 500 g_value_set_int (out, MAX (g_value_get_int (in_value) / 2, 1)); in _halve_value() 501 } else if (GST_VALUE_HOLDS_FRACTION (in_value)) { in _halve_value() 503 num = gst_value_get_fraction_numerator (in_value); in _halve_value() 504 den = gst_value_get_fraction_denominator (in_value); in _halve_value() 512 } else if (GST_VALUE_HOLDS_INT_RANGE (in_value)) { in _halve_value() 513 gint range_min = gst_value_get_int_range_min (in_value); in _halve_value() 514 gint range_max = gst_value_get_int_range_max (in_value); in _halve_value() 515 gint range_step = gst_value_get_int_range_step (in_value); in _halve_value() [all …]
|
/third_party/boost/boost/property_map/ |
D | dynamic_property_map.hpp | 145 void do_put(const any& in_key, const any& in_value, mpl::bool_<true>) in do_put() argument 150 if (in_value.type() == typeid(value_type)) { in do_put() 151 put(property_map_, key_, any_cast<value_type>(in_value)); in do_put() 154 std::string v = any_cast<std::string>(in_value); in do_put() 184 virtual void put(const any& in_key, const any& in_value) in put() argument 186 do_put(in_key, in_value, in put()
|
/third_party/gn/src/base/memory/ |
D | ref_counted.h | 308 RefCountedData(const T& in_value) : data(in_value) {} 309 RefCountedData(T&& in_value) : data(std::move(in_value)) {}
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
D | d3d12_gs_variant.cpp | 102 nir_deref_instr *in_value = nir_build_deref_array(&b, nir_build_deref_var(&b, in), in d3d12_make_passthrough_gs() local 104 nir_copy_deref(&b, nir_build_deref_var(&b, out), in_value); in d3d12_make_passthrough_gs() 328 …nir_deref_instr *in_value = nir_build_deref_array(b, nir_build_deref_var(b, emit_ctx.in[i]), index… in d3d12_emit_points() local 331 nir_copy_deref(b, nir_build_deref_var(b, emit_ctx.out[i]), in_value); in d3d12_emit_points() 337 nir_copy_deref(b, nir_build_deref_var(b, emit_ctx.out[i]), in_value); in d3d12_emit_points() 361 …nir_deref_instr *in_value = nir_build_deref_array(b, nir_build_deref_var(b, emit_ctx.in[i]), index… in d3d12_emit_lines() local 362 nir_copy_deref(b, nir_build_deref_var(b, emit_ctx.out[i]), in_value); in d3d12_emit_lines() 416 …nir_deref_instr *in_value = nir_build_deref_array(b, nir_build_deref_var(b, emit_ctx.in[i]), index… in d3d12_emit_triangles() local 417 nir_copy_deref(b, nir_build_deref_var(b, emit_ctx.out[i]), in_value); in d3d12_emit_triangles()
|
/third_party/cef/include/base/ |
D | cef_ref_counted.h | 469 RefCountedData(const T& in_value) : data(in_value) {} 470 RefCountedData(T&& in_value) : data(std::move(in_value)) {}
|
/third_party/gn/src/base/win/ |
D | registry.cc | 346 LONG RegKey::WriteValue(const char16_t* name, DWORD in_value) { in WriteValue() argument 347 return WriteValue(name, &in_value, static_cast<DWORD>(sizeof(in_value)), in WriteValue() 351 LONG RegKey::WriteValue(const char16_t* name, const char16_t* in_value) { in WriteValue() argument 353 name, in_value, in WriteValue() 354 static_cast<DWORD>(sizeof(*in_value) * (wcslen(ToWCharT(in_value)) + 1)), in WriteValue()
|
D | registry.h | 113 LONG WriteValue(const char16_t* name, DWORD in_value); 116 LONG WriteValue(const char16_t* name, const char16_t* in_value);
|
/third_party/boost/boost/convert/ |
D | strtol.hpp | 73 boost::cnv::strtol::i_to_str(Type in_value, char_type* buf) const in i_to_str() argument 81 bool const is_neg = std::is_signed<Type>::value && in_value < 0; in i_to_str() 82 unsigned_type value = static_cast<unsigned_type>(is_neg ? -in_value : in_value); in i_to_str()
|
/third_party/abseil-cpp/absl/strings/ |
D | numbers_test.cc | 252 void VerifySimpleAtoiGood(in_val_type in_value, int_type exp_value) { in VerifySimpleAtoiGood() argument 255 absl::strings_internal::OStringStream(&s) << in_value; in VerifySimpleAtoiGood() 258 << "in_value=" << in_value << " s=" << s << " x=" << x; in VerifySimpleAtoiGood() 266 void VerifySimpleAtoiBad(in_val_type in_value) { in VerifySimpleAtoiBad() argument 267 std::string s = absl::StrCat(in_value); in VerifySimpleAtoiBad()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | numbers_test.cc | 252 void VerifySimpleAtoiGood(in_val_type in_value, int_type exp_value) { in VerifySimpleAtoiGood() argument 255 absl::strings_internal::OStringStream(&s) << in_value; in VerifySimpleAtoiGood() 258 << "in_value=" << in_value << " s=" << s << " x=" << x; in VerifySimpleAtoiGood() 266 void VerifySimpleAtoiBad(in_val_type in_value) { in VerifySimpleAtoiBad() argument 269 absl::strings_internal::OStringStream(&s) << in_value; in VerifySimpleAtoiBad()
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
D | Converter.h | 150 wgpu::interop::GPUPipelineConstantValue in_value);
|
D | Converter.cpp | 430 wgpu::interop::GPUPipelineConstantValue in_value) { in Convert() argument 432 out.value = in_value; in Convert()
|
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.h | 944 TiXmlElement (const char * in_value);
|
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.h | 944 TiXmlElement (const char * in_value);
|
/third_party/mesa3d/src/broadcom/vulkan/ |
D | v3dv_pipeline.c | 2316 nir_deref_instr *in_value = in pipeline_add_multiview_gs() local 2318 nir_copy_deref(&b, nir_build_deref_var(&b, out_vars[i]), in_value); in pipeline_add_multiview_gs()
|