Lines Matching refs:maxInt
194 const int maxInt = m_precision == glu::PRECISION_LOWP ? 2 : 1024; in iterate() local
195 const int minInt = -de::min(numValues/2, maxInt); in iterate()
199 values[ndx] = float(minInt + (ndx % (maxInt-minInt+1))); in iterate()
213 const int maxInt = m_precision == glu::PRECISION_LOWP ? 64 : 1024; in iterate() local
214 const int minInt = -de::min(numValues/2, maxInt); in iterate()
218 values[ndx] = minInt + (ndx % (maxInt-minInt+1)); in iterate()
232 const deUint32 maxInt = m_precision == glu::PRECISION_LOWP ? 128 : 1024; in iterate() local
236 values[ndx] = ndx % (maxInt+1); in iterate()
268 const int maxInt = m_precision == glu::PRECISION_LOWP ? 2 : 1024; in iterate() local
269 const int minInt = -de::min(numValues/2, maxInt); in iterate()
273 values[ndx] = float(minInt + (ndx % (maxInt-minInt+1))); in iterate()