/external/deqp-deps/glslang/Test/ |
D | hlsl.promotions.frag | 11 uniform double3 d3; 23 void Fn_D3(double3 x) { } 46 double3 Fn_R_D3I(out double3 p) { p = i3; return i3; } 47 double3 Fn_R_D3U(out double3 p) { p = u3; return u3; } 48 double3 Fn_R_D3B(out double3 p) { p = b3; return b3; } 49 double3 Fn_R_D3F(out double3 p) { p = f3; return f3; } 74 double3 r40 = i3; 75 double3 r41 = u3; 76 double3 r42 = f3; 77 double3 r43 = b3;
|
D | hlsl.intrinsics.double.frag | 3 double2 inDV2, double3 inDV3, double4 inDV4,
|
D | hlsl.templatetypes.frag | 22 vector<double, 3> r33 = double3(1,2,3);
|
D | remap.hlsl.templatetypes.none.frag | 22 vector<double, 3> r33 = double3(1,2,3);
|
D | remap.hlsl.templatetypes.everything.frag | 22 vector<double, 3> r33 = double3(1,2,3);
|
D | hlsl.overload.frag | 36 void foo12(double3) {}
|
/external/llvm-project/libclc/generic/include/clc/geometric/ |
D | cross.h | 5 _CLC_OVERLOAD _CLC_DECL double3 cross(double3 p0, double3 p1);
|
D | floatn.inc | 42 #define __CLC_FLOATN double3
|
/external/llvm-project/libclc/generic/lib/geometric/ |
D | cross.cl | 16 _CLC_OVERLOAD _CLC_DEF double3 cross(double3 p0, double3 p1) { 17 return (double3)(p0.y*p1.z - p0.z*p1.y, p0.z*p1.x - p0.x*p1.z,
|
D | normalize.cl | 117 _CLC_OVERLOAD _CLC_DEF double3 normalize(double3 p) { 118 if (all(p == (double3)0.0)) 130 p = copysign(select((double3)0.0, (double3)1.0, isinf(p)), p);
|
D | dot.cl | 31 _CLC_OVERLOAD _CLC_DEF double dot(double3 p0, double3 p1) {
|
D | length.cl | 78 _CLC_OVERLOAD _CLC_DEF double length(double3 p) {
|
/external/llvm-project/libclc/generic/include/math/ |
D | ternary_intrin.inc | 12 _CLC_OVERLOAD double3 __CLC_FUNCTION(double3, double3, double3) __asm(__CLC_INTRINSIC ".v3f64");
|
D | binary_intrin.inc | 12 _CLC_OVERLOAD double3 __CLC_FUNCTION(double3, double3) __asm(__CLC_INTRINSIC ".v3f64");
|
D | unary_intrin.inc | 12 _CLC_OVERLOAD double3 __CLC_FUNCTION(double3 d) __asm(__CLC_INTRINSIC ".v3f64");
|
/external/clang/lib/Headers/ |
D | opencl-c.h | 136 typedef double double3 __attribute__((ext_vector_type(3))); typedef 4892 char3 __ovld __cnfn convert_char3(double3); 4893 char3 __ovld __cnfn convert_char3_rte(double3); 4894 char3 __ovld __cnfn convert_char3_rtn(double3); 4895 char3 __ovld __cnfn convert_char3_rtp(double3); 4896 char3 __ovld __cnfn convert_char3_rtz(double3); 4897 char3 __ovld __cnfn convert_char3_sat(double3); 4898 char3 __ovld __cnfn convert_char3_sat_rte(double3); 4899 char3 __ovld __cnfn convert_char3_sat_rtn(double3); 4900 char3 __ovld __cnfn convert_char3_sat_rtp(double3); [all …]
|
/external/llvm-project/clang/lib/Headers/ |
D | opencl-c.h | 4657 char3 __ovld __cnfn convert_char3(double3); 4658 char3 __ovld __cnfn convert_char3_rte(double3); 4659 char3 __ovld __cnfn convert_char3_rtn(double3); 4660 char3 __ovld __cnfn convert_char3_rtp(double3); 4661 char3 __ovld __cnfn convert_char3_rtz(double3); 4662 char3 __ovld __cnfn convert_char3_sat(double3); 4663 char3 __ovld __cnfn convert_char3_sat_rte(double3); 4664 char3 __ovld __cnfn convert_char3_sat_rtn(double3); 4665 char3 __ovld __cnfn convert_char3_sat_rtp(double3); 4666 char3 __ovld __cnfn convert_char3_sat_rtz(double3); [all …]
|
/external/llvm-project/libclc/generic/lib/relational/ |
D | isequal.cl | 23 _CLC_DEFINE_ISEQUAL(long3, isequal, double3, double3)
|
/external/llvm-project/llvm/test/CodeGen/SystemZ/ |
D | fp-move-02.ll | 131 %double3 = load volatile double, double *@dptr 132 %biased3 = fadd double %double3, %extra 195 %double3 = bitcast i64 %masked3 to double 221 %add3 = fadd double %add2, %double3 333 %double3 = phi double [ 1.0, %entry ], [ %mul3, %loop ] 345 %mul3 = fmul double %double3, %factor
|
/external/llvm/test/CodeGen/SystemZ/ |
D | fp-move-02.ll | 131 %double3 = load volatile double , double *@dptr 132 %biased3 = fadd double %double3, %extra 195 %double3 = bitcast i64 %masked3 to double 221 %add3 = fadd double %add2, %double3 333 %double3 = phi double [ 1.0, %entry ], [ %mul3, %loop ] 345 %mul3 = fmul double %double3, %factor
|
/external/llvm-project/libclc/generic/include/clc/ |
D | clctypes.h | 83 typedef __attribute__((ext_vector_type(3))) double double3; typedef
|
D | as_type.h | 64 #define as_double3(x) __builtin_astype(x, double3)
|
/external/llvm-project/libclc/generic/include/clc/relational/ |
D | floatn.inc | 56 #define __CLC_FLOATN double3
|
/external/llvm-project/libclc/generic/include/clc/math/ |
D | gentype.inc | 78 #define __CLC_GENTYPE double3
|
/external/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | compatibility.hpp | 113 …typedef tvec3<double, highp> double3; //!< \brief double-precision floating-point vector with 3 … typedef
|