Lines Matching refs:tmp
98 _Tp tmp = lim::min(); in test_integral_limits() local
99 CHECK_COND( --tmp > lim::min() ); in test_integral_limits()
103 _Tp tmp = lim::max(); in test_integral_limits() local
104 CHECK_COND( ++tmp < lim::max() ); in test_integral_limits()
145 _Tp tmp = lim::min(); in test_float_limits() local
146 tmp /= 2; in test_float_limits()
147 if (tmp > 0 && tmp < lim::min()) { in test_float_limits()
156 _Tp tmp = lim::min(); in test_float_limits() local
157 while (tmp != 0) { in test_float_limits()
158 _Tp old_tmp = tmp; in test_float_limits()
159 tmp /= 2; in test_float_limits()
160 CHECK_COND(tmp < old_tmp); in test_float_limits()
161 CHECK_COND(tmp >= lim::denorm_min() || tmp == (_Tp)0); in test_float_limits()