Lines Matching refs:maxInt
195 const int maxInt = m_precision == glu::PRECISION_LOWP ? 2 : 1024; in iterate() local
196 const int minInt = -de::min(numValues/2, maxInt); in iterate()
200 values[ndx] = float(minInt + (ndx % (maxInt-minInt+1))); in iterate()
214 const int maxInt = m_precision == glu::PRECISION_LOWP ? 64 : 1024; in iterate() local
215 const int minInt = -de::min(numValues/2, maxInt); in iterate()
219 values[ndx] = minInt + (ndx % (maxInt-minInt+1)); in iterate()
233 const deUint32 maxInt = m_precision == glu::PRECISION_LOWP ? 128 : 1024; in iterate() local
237 values[ndx] = ndx % (maxInt+1); in iterate()
269 const int maxInt = m_precision == glu::PRECISION_LOWP ? 2 : 1024; in iterate() local
270 const int minInt = -de::min(numValues/2, maxInt); in iterate()
274 values[ndx] = float(minInt + (ndx % (maxInt-minInt+1))); in iterate()