Lines Matching refs:min
9 return (min(testInputs.x, 0.5) == expectedA.x &&
10 min(testInputs.xy, 0.5) == expectedA.xy &&
11 min(testInputs.xyz, 0.5) == expectedA.xyz &&
12 min(testInputs.xyzw, 0.5) == expectedA.xyzw &&
13 min(constVal.x, 0.5) == expectedA.x &&
14 min(constVal.xy, 0.5) == expectedA.xy &&
15 min(constVal.xyz, 0.5) == expectedA.xyz &&
16 min(constVal.xyzw, 0.5) == expectedA.xyzw &&
17 min(testInputs.x, colorGreen.x) == expectedB.x &&
18 min(testInputs.xy, colorGreen.xy) == expectedB.xy &&
19 min(testInputs.xyz, colorGreen.xyz) == expectedB.xyz &&
20 min(testInputs.xyzw, colorGreen.xyzw) == expectedB.xyzw &&
21 min(constVal.x, constGreen.x) == expectedB.x &&
22 min(constVal.xy, constGreen.xy) == expectedB.xy &&
23 min(constVal.xyz, constGreen.xyz) == expectedB.xyz &&
24 min(constVal.xyzw, constGreen.xyzw) == expectedB.xyzw) ? colorGreen : colorRed;