Home
last modified time | relevance | path

Searched defs:double (Results 1 – 25 of 96) sorted by relevance

1234

/third_party/skia/src/sksl/ir/
DSkSLFunctionCall.cpp346 double coalesce_length(double a, double b, double) { return a + (b * b); } in coalesce_length() argument
353 double coalesce_any(double a, double b, double) { return a || b; } in coalesce_any() argument
354 double coalesce_all(double a, double b, double) { return a && b; } in coalesce_all() argument
363 double evaluate_radians(double a, double, double) { return a * 0.0174532925; } in evaluate_radians() argument
364 double evaluate_degrees(double a, double, double) { return a * 57.2957795; } in evaluate_degrees() argument
365 double evaluate_sin(double a, double, double) { return std::sin(a); } in evaluate_sin() argument
366 double evaluate_cos(double a, double, double) { return std::cos(a); } in evaluate_cos() argument
367 double evaluate_tan(double a, double, double) { return std::tan(a); } in evaluate_tan() argument
368 double evaluate_asin(double a, double, double) { return std::asin(a); } in evaluate_asin() argument
369 double evaluate_acos(double a, double, double) { return std::acos(a); } in evaluate_acos() argument
[all …]
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
D069-repeated-argument.c1 #define double(x) x x macro
D060-left-paren-in-macro-right-paren-in-text.c1 #define double(a) a*2 macro
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-random/
Dsubnorm.rs20 let double: f64 = unsafe { transmute(bits as u64) }; in main() localVariable
/third_party/node/test/js-native-api/test_number/
Dtest_null.c46 BINDING_FOR_CREATE(Double, double) in BINDING_FOR_CREATE() argument
/third_party/skia/tests/
DPathOpsTestCommon.cpp43 static bool add_simple_ts(const SkDCubic& cubic, double precision, SkTArray<double, true>* ts) { in add_simple_ts()
56 SkTArray<double, true>* ts) { in addTs()
67 static void toQuadraticTs(const SkDCubic* cubic, double precision, SkTArray<double, true>* ts) { in toQuadraticTs()
/third_party/benchmark/test/
Dtemplated_fixture_test.cc21 BENCHMARK_TEMPLATE_DEFINE_F(MyFixture, Bar, double)(benchmark::State& st) { in BENCHMARK_TEMPLATE_DEFINE_F() argument
/third_party/skia/samplecode/
DSampleClock.cpp209 bool onAnimate(double /*nanos*/) override { return true; } in onAnimate() argument
DSampleAudio.cpp88 bool onAnimate(double /*nanos*/) override { in onAnimate() argument
DSampleMegaStroke.cpp72 bool onAnimate(double /*nanos*/) override { return true; } in onAnimate() argument
DSampleFitCubicToCircle.cpp69 std::array<double, 4>* X, std::array<double, 4>* Y) { in fit_cubic_to_unit_circle()
DSample.h93 virtual bool onAnimate(double /*nanos*/) { return false; } in onAnimate() argument
/third_party/ffmpeg/libavutil/
Deval.c687 const char * const *func1_names, double (* const *funcs1)(void *, double), in av_expr_parse() argument
776 int av_expr_parse_and_eval(double *d, const char *s, in av_expr_parse_and_eval() argument
778 … const char * const *func1_names, double (* const *funcs1)(void *, double), in av_expr_parse_and_eval() argument
/third_party/protobuf/python/google/protobuf/internal/
Dtest_proto3_optional.proto63 optional double optional_double = 12; field
/third_party/protobuf/src/google/protobuf/
Dunittest_proto3_optional.proto66 optional double optional_double = 12; field
/third_party/protobuf/java/compatibility_tests/v2.5.0/more_protos/src/proto/com/google/protobuf/
Dtest_bad_identifiers.proto102 optional double double = 1; field
/third_party/protobuf/java/compatibility_tests/v2.5.0/protos/src/proto/com/google/protobuf/
Dtest_bad_identifiers.proto102 optional double double = 1; field
/third_party/typescript/tests/cases/conformance/types/objectTypeLiteral/propertySignatures/
DpropertyNamesOfReservedWords.ts17 double; property in C
86 double; property
156 double; variable
225 double, enumerator
/third_party/json/include/nlohmann/detail/output/
Dbinary_writer.hpp1295 static constexpr CharType get_cbor_float_prefix(double /*unused*/) in get_cbor_float_prefix() argument
1309 static constexpr CharType get_msgpack_float_prefix(double /*unused*/) in get_msgpack_float_prefix() argument
1610 static constexpr CharType get_ubjson_float_prefix(double /*unused*/) in get_ubjson_float_prefix() argument
/third_party/python/Lib/test/
Dtest_doctest.py68 def double(self): member in SampleClass
148 def double(self): member in SampleNewStyleClass
/third_party/python/Modules/
Dmathmodule.c1039 math_1_to_whatever(PyObject *arg, double (*func) (double), in math_1_to_whatever()
1075 math_1a(PyObject *arg, double (*func) (double)) in math_1a()
1116 math_1(PyObject *arg, double (*func) (double), int can_overflow) in math_1()
1122 math_2(PyObject *const *args, Py_ssize_t nargs, in math_2()
1123 double (*func) (double, double), const char *funcname) in math_2() argument
2315 loghelper(PyObject* arg, double (*func)(double), const char *funcname) in loghelper() argument
/third_party/musl/libc-test/src/math/gen/
Dmplibm.c21 static int mpd1(struct t *s, double (*f)(double)) in mpd1() argument
30 static int mpd2(struct t *s, double (*f)(double, double)) in mpd2() argument
39 static int mpl1(struct t *s, long double (*f)(long double)) in mpl1()
48 static int mpl2(struct t *s, long double (*f)(long double, long double)) in mpl2()
/third_party/python/Modules/_ctypes/
D_ctypes_test.c21 _testfunc_cbk_reg_double(double a, double b, double c, double d, double e, in _testfunc_cbk_reg_double() argument
22 double (*func)(double, double, double, double, double)) in _testfunc_cbk_reg_double() argument
519 integrate(double a, double b, double (*f)(double), long nstep) in integrate() argument
663 EXPORT(double) __stdcall s_tf_d(double c) { S; return c/3; } in EXPORT() argument
664 EXPORT(long double) __stdcall s_tf_D(long double c) { S; return c/3; } in EXPORT()
695 EXPORT(double) __stdcall s_tf_bd(signed char x, double c) { S; return c/3; } in EXPORT() argument
696 EXPORT(long double) __stdcall s_tf_bD(signed char x, long double c) { S; return c/3; } in EXPORT()
/third_party/protobuf/src/google/protobuf/util/internal/testdata/
Dwrappers.proto63 google.protobuf.DoubleValue double = 1; field
/third_party/PyYAML/lib/yaml/
Dscanner.py1185 def scan_flow_scalar_non_spaces(self, double, start_mark): argument
1228 def scan_flow_scalar_spaces(self, double, start_mark): argument
1252 def scan_flow_scalar_breaks(self, double, start_mark): argument

1234