/external/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | rotate_vector.inl | 37 T const Sin(sin(angle)); local 39 Result.x = v.x * Cos - v.y * Sin; 40 Result.y = v.x * Sin + v.y * Cos; 62 const T Sin = sin(radians(angle)); 63 return x * Cos + ((x * normal) * (T(1) - Cos)) * normal + cross(x, normal) * Sin; 86 T const Sin(sin(angle)); local 88 Result.y = v.y * Cos - v.z * Sin; 89 Result.z = v.y * Sin + v.z * Cos; 102 T const Sin(sin(angle)); local 104 Result.x = v.x * Cos + v.z * Sin; [all …]
|
D | rotate_normalized_axis.inl | 54 T const Sin = sin(AngleRad * T(0.5)); local 56 …return q * tquat<T, P>(cos(AngleRad * static_cast<T>(0.5)), Tmp.x * Sin, Tmp.y * Sin, Tmp.z * Sin);
|
/external/tensorflow/tensorflow/core/kernels/mlir_generated/ |
D | gpu_op_sin.cc | 21 GENERATE_AND_REGISTER_UNARY_GPU_KERNEL(Sin, DT_HALF); 22 GENERATE_AND_REGISTER_UNARY_GPU_KERNEL(Sin, DT_FLOAT); 23 GENERATE_AND_REGISTER_UNARY_GPU_KERNEL(Sin, DT_DOUBLE);
|
/external/llvm-project/libc/test/src/math/ |
D | sinf_test.cpp | 79 ASSERT_MPFR_MATCH(mpfr::Operation::Sin, x, __llvm_libc::sinf(x), 1.0); in TEST() 85 EXPECT_MPFR_MATCH(mpfr::Operation::Sin, x, __llvm_libc::sinf(x), 1.0); in TEST() 93 EXPECT_MPFR_MATCH(mpfr::Operation::Sin, x, result, 1.0); in TEST() 99 EXPECT_MPFR_MATCH(mpfr::Operation::Sin, x, result, 1.0); in TEST() 108 EXPECT_MPFR_MATCH(mpfr::Operation::Sin, x, __llvm_libc::sinf(x), 1.0); in TEST()
|
D | sincosf_test.cpp | 95 ASSERT_MPFR_MATCH(mpfr::Operation::Sin, x, sin, 1.0); in TEST() 106 EXPECT_MPFR_MATCH(mpfr::Operation::Sin, x, result_sin, 1.0); in TEST() 114 EXPECT_MPFR_MATCH(mpfr::Operation::Sin, x, result_sin, 1.0); in TEST() 127 EXPECT_MPFR_MATCH(mpfr::Operation::Sin, x, sin, 1.0); in TEST()
|
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/ |
D | RouteGuideUtil.cs | 70 …double a = Math.Sin(deltalat / 2) * Math.Sin(deltalat / 2) + Math.Cos(lat1) * Math.Cos(lat2) * Mat… in GetDistance()
|
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/ |
D | Sin.pbtxt | 2 name: "Sin" 26 name: "Sin" 51 name: "Sin"
|
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/ |
D | Sin.pbtxt | 2 name: "Sin" 26 name: "Sin" 51 name: "Sin"
|
/external/tensorflow/tensorflow/core/api_def/java_api/ |
D | api_def_Sin.pbtxt | 2 graph_op_name: "Sin" 4 name: "math.Sin"
|
/external/icu/icu4c/source/data/lang/ |
D | ha.txt | 280 Hani{"Mutanen Han na ƙasar Sin"} 317 chinese{"Kalandar Sin"} 326 roc{"Kalandar kasar Sin"} 367 hanidec{"Lambobin Gomiya na Yaren ƙasar Sin"} 368 hans{"Lambobin ƙirga na Yaren ƙasar Sin wanda aka Sauƙaƙa"} 369 hansfin{"Lambobin Ƙirgan Kudi na Yaren ƙasar Sin wanda aka Sauƙaƙa"} 370 hant{"Lambobin Ƙirga na Yaren ƙasar Sin na Alʼada"} 371 hantfin{"Lambobin Ƙirgan Kudi na Yaren ƙasar Sin na Alʼada"}
|
/external/llvm-project/mlir/test/Dialect/SPIRV/ |
D | glslops.mlir | 128 // spv.GLSL.Sin 132 // CHECK: spv.GLSL.Sin {{%.*}} : f32 133 %2 = spv.GLSL.Sin %arg0 : f32 138 // CHECK: spv.GLSL.Sin {{%.*}} : vector<3xf16> 139 %2 = spv.GLSL.Sin %arg0 : vector<3xf16>
|
/external/skia/tests/sksl/intrinsics/ |
D | Sin.asm.frag | 106 %27 = OpExtInst %float %1 Sin %33 117 %41 = OpExtInst %v2float %1 Sin %44 132 %54 = OpExtInst %v3float %1 Sin %57 146 %68 = OpExtInst %v4float %1 Sin %70
|
/external/webrtc/modules/third_party/fft/ |
D | fft.c | 285 REAL *Sin = NULL; /* Sine values */ in FFTRADIX() local 342 Sin = (REAL *) fftstate->Tmp3; in FFTRADIX() 644 Sin [jf - 1] = 0.0; in FFTRADIX() 647 Cos [j - 1] = Cos [k - 1] * c1 + Sin [k - 1] * s1; in FFTRADIX() 648 Sin [j - 1] = Cos [k - 1] * s1 - Sin [k - 1] * c1; in FFTRADIX() 651 Sin [k - 1] = -Sin [j - 1]; in FFTRADIX() 694 aj += Rtmp [k - 1] * Sin [jj - 1]; in FFTRADIX() 695 bj += Itmp [k - 1] * Sin [jj - 1]; in FFTRADIX()
|
/external/llvm-project/mlir/test/Dialect/SPIRV/Serialization/ |
D | glsl-ops.mlir | 13 // CHECK: {{%.*}} = spv.GLSL.Sin {{%.*}} : f32 14 %4 = spv.GLSL.Sin %arg0 : f32
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | exhaustive_unary_test_f32_or_smaller.cc | 537 UNARY_TEST_F32(Sin, { 540 Sin, std::sin, +[](NativeT) { in __anon450cb15c1a02() 545 UNARY_TEST_F16(Sin, { 547 Run(Sin, std::sin); 550 UNARY_TEST_BF16(Sin, { 552 Run(Sin, std::sin);
|
D | exhaustive_unary_test_f64.cc | 110 UNARY_TEST_FLOAT_64(Sin, { Run(Sin, std::sin); })
|
/external/tensorflow/tensorflow/core/kernels/ |
D | unary_ops_composition.cc | 244 REGISTER_COMPUTE_FN(Sin); in UnaryOpsCompositionSupport() 283 REGISTER_COMPUTE_FN_HELPER(Sin, functor::sin<T>); 312 REGISTER_COMPUTE_FN(Sin); in UnaryOpsCompositionSupport() 340 REGISTER_COMPUTE_FN_HELPER(Sin, functor::sin<T>); 374 REGISTER_COMPUTE_FN(Sin); in UnaryOpsCompositionSupport() 412 REGISTER_COMPUTE_FN_HELPER(Sin, functor::sin<T>);
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | spv.switch.frag.out | 246 77: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 76 269 91: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 90 289 109: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 108 316 125: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 124 372 172: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 171 433 220: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 219
|
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/ |
D | spv.switch.frag.out | 246 77: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 76 269 91: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 90 289 109: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 108 316 125: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 124 372 172: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 171 433 220: 6(float) ExtInst 1(GLSL.std.450) 13(Sin) 219
|
/external/tensorflow/tensorflow/lite/g3doc/guide/ |
D | ops_custom.md | 33 operator `tf.sin` (named as `Sin`, refer to #create-a-tensorflow-model) which is 41 ## Example: Custom `Sin` operator 44 TensorFlow Lite does not have. Assume we are using the `Sin` operator and that 51 contains a custom operator named `Sin`, which is a function `y = sin(x + 62 # Define a simple model which just contains a custom operator named `Sin` 65 return tf.sin(x + offset, name="Sin") 95 a list of operators for which you will need custom implementations: Sin. 114 Didn't find custom operator for name 'Sin' 271 resolver.AddCustom("Sin", Register_SIN());
|
/external/tensorflow/tensorflow/core/api_def/python_api/ |
D | api_def_Sin.pbtxt | 2 graph_op_name: "Sin"
|
/external/tensorflow/tensorflow/core/kernels/mlir_generated/op_definitions/ |
D | sin.mlir.tmpl | 3 %0 = "tf.Sin"(%arg0) : (tensor<*xelem_type>) -> tensor<*xoutput_type>
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_Sin.pbtxt | 2 graph_op_name: "Sin"
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
D | unary_ops.cc | 65 XLAJIT_MAKE_UNARY(Sin, xla::Sin(x));
|
/external/llvm-project/mlir/test/Conversion/SPIRVToLLVM/ |
D | glsl-ops-to-llvm.mlir | 108 // spv.GLSL.Sin 114 %0 = spv.GLSL.Sin %arg0 : f32 116 %1 = spv.GLSL.Sin %arg1 : vector<3xf16>
|