Lines Matching refs:getInt64Access
164 glw::GLint64& QueriedState::getInt64Access (void) in getInt64Access() function in deqp::gls::StateQueryUtil::QueriedState
1011 if (state.getInt64Access() != reference) in verifyBoolean()
1014 buf << "Expected " << reference << ", got " << state.getInt64Access(); in verifyBoolean()
1070 if (state.getInt64Access() != reference) in verifyInteger()
1074 …<< state.getInt64Access() << "(" << de::toString(tcu::Format::Hex<8>(state.getInt64Access())) << "… in verifyInteger()
1108 …<< state.getInt64Access() << "(" << de::toString(tcu::Format::Hex<8>(state.getInt64Access())) << "… in verifyInteger()
1148 if (state.getInt64Access() < minValue) in verifyIntegerMin()
1151 buf << "Expected greater or equal to " << minValue << ", got " << state.getInt64Access(); in verifyIntegerMin()
1202 if (state.getInt64Access() > maxValue) in verifyIntegerMax()
1205 buf << "Expected less or equal to " << maxValue << ", got " << state.getInt64Access(); in verifyIntegerMax()
1281 if (state.getInt64Access() < refValueMin || in verifyFloat()
1282 state.getInt64Access() > refValueMax) in verifyFloat()
1287 buf << "Expected " << refValueMin << ", got " << state.getInt64Access(); in verifyFloat()
1289 …"Expected in range [" << refValueMin << ", " << refValueMax << "], got " << state.getInt64Access(); in verifyFloat()
1361 if (state.getInt64Access() < refValue) in verifyFloatMin()
1364 buf << "Expected greater or equal to " << refValue << ", got " << state.getInt64Access(); in verifyFloatMin()
1415 if (state.getInt64Access() > refValue) in verifyFloatMax()
1418 buf << "Expected less or equal to " << refValue << ", got " << state.getInt64Access(); in verifyFloatMax()
1898 if (stateA.getInt64Access() != stateB.getInt64Access()) in verifyStateIntegerEqualToOther()