Home
last modified time | relevance | path

Searched refs:lim (Results 1 – 6 of 6) sorted by relevance

/ndk/tests/device/test-stlport/unit/
Dlimits_test.cpp71 typedef numeric_limits<_Tp> lim; in test_integral_limits_base() typedef
73 CHECK_COND(lim::is_specialized); in test_integral_limits_base()
74 CHECK_COND(lim::is_exact); in test_integral_limits_base()
75 CHECK_COND(lim::is_integer); in test_integral_limits_base()
76 CHECK_COND(!lim::is_iec559); in test_integral_limits_base()
77 CHECK_COND(lim::min() < lim::max()); in test_integral_limits_base()
78 …CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::mi… in test_integral_limits_base()
79 (!unknown_sign && ((lim::is_signed && is_signed) || (!lim::is_signed && !is_signed)))); in test_integral_limits_base()
82 CHECK_COND(valid_sign_info(lim::is_signed, _Tp())); in test_integral_limits_base()
92 typedef numeric_limits<_Tp> lim; in test_integral_limits() typedef
[all …]
/ndk/tests/device/test-gnustl-full/unit/
Dlimits_test.cpp71 typedef numeric_limits<_Tp> lim; in test_integral_limits_base() typedef
73 CHECK_COND(lim::is_specialized); in test_integral_limits_base()
74 CHECK_COND(lim::is_exact); in test_integral_limits_base()
75 CHECK_COND(lim::is_integer); in test_integral_limits_base()
76 CHECK_COND(!lim::is_iec559); in test_integral_limits_base()
77 CHECK_COND(lim::min() < lim::max()); in test_integral_limits_base()
78 …CHECK_COND((unknown_sign && ((lim::is_signed && (lim::min() != 0)) || (!lim::is_signed && (lim::mi… in test_integral_limits_base()
79 (!unknown_sign && ((lim::is_signed && is_signed) || (!lim::is_signed && !is_signed)))); in test_integral_limits_base()
82 CHECK_COND(valid_sign_info(lim::is_signed, _Tp())); in test_integral_limits_base()
92 typedef numeric_limits<_Tp> lim; in test_integral_limits() typedef
[all …]
/ndk/sources/android/support/src/wcstox/
Dintscan.c54 unsigned long long __intscan(FILE *f, unsigned base, int pok, unsigned long long lim) in __intscan() argument
113 y = lim; in __intscan()
117 if (y>=lim) { in __intscan()
118 if (!(lim&1) && !neg) { in __intscan()
120 return lim-1; in __intscan()
121 } else if (y>lim) { in __intscan()
123 return lim; in __intscan()
Dshgetc.c30 void shlim(struct fake_file_t *f, off_t lim) { in shlim() argument
32 if (off > lim) in shlim()
33 f->rpos = f->rstart + lim; in shlim()
Dwcstol.c11 unsigned long long lim) in wcstox() argument
17 unsigned long long y = __intscan(&f, base, 1, lim); in wcstox()
Dshgetc.h36 void shlim(struct fake_file_t *, off_t lim);