Lines Matching refs:min
12 return (min(intValues.x, 50) == expectedA.x &&
13 min(intValues.xy, 50) == expectedA.xy &&
14 min(intValues.xyz, 50) == expectedA.xyz &&
15 min(intValues.xyzw, 50) == expectedA.xyzw &&
16 min(constVal.x, 50) == expectedA.x &&
17 min(constVal.xy, 50) == expectedA.xy &&
18 min(constVal.xyz, 50) == expectedA.xyz &&
19 min(constVal.xyzw, 50) == expectedA.xyzw &&
20 min(intValues.x, intGreen.x) == expectedB.x &&
21 min(intValues.xy, intGreen.xy) == expectedB.xy &&
22 min(intValues.xyz, intGreen.xyz) == expectedB.xyz &&
23 min(intValues.xyzw, intGreen.xyzw) == expectedB.xyzw &&
24 min(constVal.x, constGreen.x) == expectedB.x &&
25 min(constVal.xy, constGreen.xy) == expectedB.xy &&
26 min(constVal.xyz, constGreen.xyz) == expectedB.xyz &&
27 min(constVal.xyzw, constGreen.xyzw) == expectedB.xyzw) ? colorGreen : colorRed;