Searched refs:constVal (Results 1 – 25 of 38) sorted by relevance
12
/external/llvm-project/flang/test/Semantics/ |
D | resolve69.f90 | 13 integer, parameter :: constVal = 1 local 17 character(len=20, kind=constVal + 1) :: constKindString 18 character(len=:, kind=constVal + 1), pointer :: constKindString1 20 character(len=:, kind=constVal + 1) :: constKindString2 38 type (derived(constVal, 3)) :: constDerivedKind 44 type (derived(3, constVal)) :: constDerivedLen
|
/external/skia/resources/sksl/intrinsics/ |
D | Sinh.sksl | 5 const half4 constVal = half4(0); 10 sinh(constVal.x) == expected.x && 11 sinh(constVal.xy) == expected.xy && 12 sinh(constVal.xyz) == expected.xyz && 13 sinh(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Exp2.sksl | 5 const half4 constVal = half4(0, 1, 2, 3); 10 exp2(constVal.x) == expected.x && 11 exp2(constVal.xy) == expected.xy && 12 exp2(constVal.xyz) == expected.xyz && 13 exp2(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Exp.sksl | 5 const half4 constVal = half4(0); 10 exp(constVal.x) == expected.x && 11 exp(constVal.xy) == expected.xy && 12 exp(constVal.xyz) == expected.xyz && 13 exp(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Sin.sksl | 5 const half4 constVal = half4(0); 10 sin(constVal.x) == expected.x && 11 sin(constVal.xy) == expected.xy && 12 sin(constVal.xyz) == expected.xyz && 13 sin(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Log.sksl | 5 const half4 constVal = half4(1); 10 log(constVal.x) == expected.x && 11 log(constVal.xy) == expected.xy && 12 log(constVal.xyz) == expected.xyz && 13 log(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Radians.sksl | 5 const half4 constVal = half4(0); 10 radians(constVal.x) == expected.x && 11 radians(constVal.xy) == expected.xy && 12 radians(constVal.xyz) == expected.xyz && 13 radians(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Cosh.sksl | 5 const half4 constVal = half4(0); 10 cosh(constVal.x) == expected.x && 11 cosh(constVal.xy) == expected.xy && 12 cosh(constVal.xyz) == expected.xyz && 13 cosh(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Round.sksl | 5 const half4 constVal = half4(-1.5, -0.5, 0.5, 1.5); 10 round(constVal.x) == expected.x && 11 round(constVal.xy) == expected.xy && 12 round(constVal.xyz) == expected.xyz && 13 round(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Asin.sksl | 5 const half4 constVal = half4(0); 10 asin(constVal.x) == expected.x && 11 asin(constVal.xy) == expected.xy && 12 asin(constVal.xyz) == expected.xyz && 13 asin(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Tan.sksl | 5 const half4 constVal = half4(0); 10 tan(constVal.x) == expected.x && 11 tan(constVal.xy) == expected.xy && 12 tan(constVal.xyz) == expected.xyz && 13 tan(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Acos.sksl | 5 const half4 constVal = half4(1); 10 acos(constVal.x) == expected.x && 11 acos(constVal.xy) == expected.xy && 12 acos(constVal.xyz) == expected.xyz && 13 acos(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Fract.sksl | 5 const half4 constVal = half4(1, 3.25, 2.5, 4.75); 10 fract(constVal.x) == expected.x && 11 fract(constVal.xy) == expected.xy && 12 fract(constVal.xyz) == expected.xyz && 13 fract(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Cos.sksl | 5 const half4 constVal = half4(0); 10 cos(constVal.x) == expected.x && 11 cos(constVal.xy) == expected.xy && 12 cos(constVal.xyz) == expected.xyz && 13 cos(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | RoundEven.sksl | 5 const half4 constVal = half4(-1.5, -0.5, 0.5, 1.5); 10 roundEven(constVal.x) == expected.x && 11 roundEven(constVal.xy) == expected.xy && 12 roundEven(constVal.xyz) == expected.xyz && 13 roundEven(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Tanh.sksl | 5 const half4 constVal = half4(0); 10 tanh(constVal.x) == expected.x && 11 tanh(constVal.xy) == expected.xy && 12 tanh(constVal.xyz) == expected.xyz && 13 tanh(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Log2.sksl | 5 const half4 constVal = half4(1, 2, 4, 8); 10 log2(constVal.x) == expected.x && 11 log2(constVal.xy) == expected.xy && 12 log2(constVal.xyz) == expected.xyz && 13 log2(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Degrees.sksl | 5 const half4 constVal = half4(1.5707963268, 3.1415926536, 4.7123889804, 6.2831853072); 10 degrees(constVal.x) == expected.x && 11 degrees(constVal.xy) == expected.xy && 12 degrees(constVal.xyz) == expected.xyz && 13 degrees(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Trunc.sksl | 5 const half4 constVal = half4(-1.5, -0.5, 0.5, 1.5); 10 trunc(constVal.x) == expected.x && 11 trunc(constVal.xy) == expected.xy && 12 trunc(constVal.xyz) == expected.xyz && 13 trunc(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Ceil.sksl | 5 const half4 constVal = half4(-1.25, 0, 0.75, 2.25); 11 ceil(constVal.x) == expected.x && 12 ceil(constVal.xy) == expected.xy && 13 ceil(constVal.xyz) == expected.xyz && 14 ceil(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Floor.sksl | 5 const half4 constVal = half4(-1.25, 0, 0.75, 2.25); 11 floor(constVal.x) == expected.x && 12 floor(constVal.xy) == expected.xy && 13 floor(constVal.xyz) == expected.xyz && 14 floor(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | AbsFloat.sksl | 5 const half4 constVal = half4(-1.25, 0, 0.75, 2.25); 11 abs(constVal.x) == expected.x && 12 abs(constVal.xy) == expected.xy && 13 abs(constVal.xyz) == expected.xyz && 14 abs(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | SignFloat.sksl | 5 const half4 constVal = half4(-1.25, 0, 0.75, 2.25); 11 sign(constVal.x) == expected.x && 12 sign(constVal.xy) == expected.xy && 13 sign(constVal.xyz) == expected.xyz && 14 sign(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | Saturate.sksl | 5 const half4 constVal = half4(-1.25, 0, 0.75, 2.25); 11 saturate(constVal.x) == expected.x && 12 saturate(constVal.xy) == expected.xy && 13 saturate(constVal.xyz) == expected.xyz && 14 saturate(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
D | SignInt.sksl | 5 const half4 constVal = half4(-1.25, 0, 0.75, 2.25); 11 sign(int4(constVal).x) == expected.x && 12 sign(int4(constVal).xy) == expected.xy && 13 sign(int4(constVal).xyz) == expected.xyz && 14 sign(int4(constVal).xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
12