Lines Matching refs:iresult
1952 iresult.x = itmp.x + itmp.z;
1953 iresult.y = itmp.y + itmp.w;
1954 iresult.z = itmp.x + itmp.z;
1955 iresult.w = itmp.y + itmp.w;
1956 if (iresult.x < -512) iresult.x = -512;
1957 if (iresult.x > 511) iresult.x = 511;
1958 if (iresult.y < -512) iresult.y = -512;
1959 if (iresult.y > 511) iresult.y = 511;
1960 if (iresult.z < -512) iresult.z = -512;
1961 if (iresult.z > 511) iresult.z = 511;
1962 if (iresult.w < -512) iresult.w = -512;
1963 if (iresult.w > 511) iresult.w = 511;
1977 iresult.x = floor(tmp);
1987 iresult.x = floor(tmp.x);
1988 iresult.y = floor(tmp.y);
1989 iresult.z = floor(tmp.z);
1990 iresult.w = floor(tmp.w);
1991 if (iresult.x < -512) iresult.x = -512;
1992 if (iresult.x > 511) iresult.x = 511;
1993 if (iresult.y < -512) iresult.y = -512;
1994 if (iresult.y > 511) iresult.y = 511;
1995 if (iresult.z < -512) iresult.z = -512;
1996 if (iresult.z > 511) iresult.z = 511;
1997 if (iresult.w < -512) iresult.w = -512;
1998 if (iresult.w > 511) iresult.w = 511;
2017 iresult.x = round(tmp.x);
2018 iresult.y = round(tmp.y);
2019 iresult.z = round(tmp.z);
2020 iresult.w = round(tmp.w);
2021 if (iresult.x < -512) iresult.x = -512;
2022 if (iresult.x > 511) iresult.x = 511;
2023 if (iresult.y < -512) iresult.y = -512;
2024 if (iresult.y > 511) iresult.y = 511;
2025 if (iresult.z < -512) iresult.z = -512;
2026 if (iresult.z > 511) iresult.z = 511;
2027 if (iresult.w < -512) iresult.w = -512;
2028 if (iresult.w > 511) iresult.w = 511;