Lines Matching refs:t_value
1656 const T t_value = ptr[channel]; in readBaseTypeFromUnsignedChannel() local
1657 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromUnsignedChannel()
1679 const T t_value = ptr[channel]; in readBaseTypeFromSignedChannel() local
1680 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromSignedChannel()
1696 const GLfloat t_value = ptr[channel]; in readBaseTypeFromFloatChannel() local
1697 const GLdouble d_value = (GLdouble)t_value; in readBaseTypeFromFloatChannel()
1743 const T t_value = ptr[0]; in read3Channel() local
1771 result = (T)((t_value >> off) & mask); in read3Channel()
1804 const T t_value = ptr[0]; in read4Channel() local
1838 result = (T)((t_value >> off) & mask); in read4Channel()
1903 const T t_value = (T)d_value; in writeBaseTypeToUnsignedChannel() local
1907 ptr[channel] = t_value; in writeBaseTypeToUnsignedChannel()
1927 const T t_value = (T)d_value; in writeBaseTypeToSignedChannel() local
1931 ptr[channel] = t_value; in writeBaseTypeToSignedChannel()
1942 const GLfloat t_value = (GLfloat)value; in writeBaseTypeToFloatChannel() local
1946 ptr[channel] = t_value; in writeBaseTypeToFloatChannel()
2016 const T t_value = (T)d_value; in write3Channel() local
2018 result = (T)((t_value & mask) << off); in write3Channel()
2083 const T t_value = (T)d_value; in write4Channel() local
2085 result = (T)((t_value & mask) << off); in write4Channel()