Home
last modified time | relevance | path

Searched refs:limits (Results 1 – 25 of 64) sorted by relevance

123

/ndk/sources/cxx-stl/stlport/src/
Dnum_get_float.cpp335 typedef numeric_limits<double> limits; in _Stl_atod() typedef
420 if (value == (ULL(1) << (limits::digits - 1))) { /* carry created normal number */ in _Stl_atod()
464 if (bexp > limits::max_exponent) { /* overflow */ in _Stl_atod()
465 return limits::infinity(); in _Stl_atod()
468 value &= ~(ULL(1) << (limits::digits - 1)); /* hide hidden bit */ in _Stl_atod()
485 typedef numeric_limits<D> limits; in _Stl_atodT() typedef
529 if ( bexp >= limits::min_exponent ) { /* not zero or denorm */ in _Stl_atodT()
530 if ( limits::digits < 64 ) { in _Stl_atodT()
532 uint64_t rest = vv.i64 & ((~ULL(0) / ULL(2)) >> (limits::digits - 1)); in _Stl_atodT()
548 …if ( (vv.i64 >> (limits::digits < 64 ? limits::digits : 0)) != 0 ) { /* carry all the way across */ in _Stl_atodT()
[all …]
Dnum_put_float.cpp634 typedef numeric_limits<_FloatT> limits; in __format_nan_or_inf() typedef
635 if (x == limits::infinity() || x == -limits::infinity()) { in __format_nan_or_inf()
757 typedef numeric_limits<_FloatT> limits; typedef
758 char static_buf[limits::max_exponent10 + 6]; // 6: -xxx.yyyE-zzz (sign, dot, E, exp sign, \0)
766 typedef numeric_limits<_FloatT> limits;
768 if (limits::has_infinity && limits::has_quiet_NaN) {
770 (x == limits::infinity() || x == -limits::infinity())) {
792 char cvtbuf[limits::max_exponent10 + limits::digits10 + 2 + 1];
804 int digits10 = (x > -1.0 && x < 1.0 ? -limits::min_exponent10 + limits::digits10 + 2
805 : limits::digits10 + 2);
[all …]
/ndk/tests/device/test-gnustl-full/unit/
Dnum_put_get_test.cpp80 typedef numeric_limits<F> limits; in check_get_float() typedef
84 str << "1E+" << limits::max_exponent10; in check_get_float()
90 CPPUNIT_CHECK( in_val_d != limits::infinity() ); in check_get_float()
95 str << "-1E+" << limits::max_exponent10; in check_get_float()
101 CPPUNIT_CHECK( in_val_d != -limits::infinity() ); in check_get_float()
106 str << "1E" << limits::min_exponent10; in check_get_float()
117 str << "1E+" << (limits::max_exponent10 + 1); in check_get_float()
123 CPPUNIT_CHECK( in_val_d == limits::infinity() ); in check_get_float()
128 str << "-1E+" << (limits::max_exponent10 + 1); in check_get_float()
134 CPPUNIT_CHECK( in_val_d == -limits::infinity() ); in check_get_float()
[all …]
/ndk/tests/device/test-stlport/unit/
Dnum_put_get_test.cpp80 typedef numeric_limits<F> limits; in check_get_float() typedef
84 str << "1E+" << limits::max_exponent10; in check_get_float()
90 CPPUNIT_CHECK( in_val_d != limits::infinity() ); in check_get_float()
95 str << "-1E+" << limits::max_exponent10; in check_get_float()
101 CPPUNIT_CHECK( in_val_d != -limits::infinity() ); in check_get_float()
106 str << "1E" << limits::min_exponent10; in check_get_float()
117 str << "1E+" << (limits::max_exponent10 + 1); in check_get_float()
123 CPPUNIT_CHECK( in_val_d == limits::infinity() ); in check_get_float()
128 str << "-1E+" << (limits::max_exponent10 + 1); in check_get_float()
134 CPPUNIT_CHECK( in_val_d == -limits::infinity() ); in check_get_float()
[all …]
/ndk/sources/cxx-stl/stlport/stlport/
Dlimits.h28 # include_next <limits.h>
30 # include _STLP_NATIVE_C_HEADER(limits.h)
Dclimits25 # include </usr/include/limits.h>
35 # include_next <limits.h>
37 # include _STLP_NATIVE_C_HEADER(limits.h)
40 # include <limits.h>
Dlimits35 # include_next <limits>
37 # include _STLP_NATIVE_HEADER(limits)
Dmemory45 # include _STLP_NATIVE_HEADER(limits)
/ndk/sources/cxx-stl/gabi++/include/
Dclimits34 * Standard C++ Library wrapper around the C limits.h header file.
37 #include <limits.h>
Dcfloat36 #include <sys/limits.h>
/ndk/sources/cxx-stl/system/include/
Dclimits34 * Standard C++ Library wrapper around the C limits.h header file.
37 #include <limits.h>
Dcfloat36 #include <sys/limits.h>
/ndk/sources/cxx-stl/llvm-libc++/include/
Dclimits42 #include <limits.h>
/ndk/sources/host-tools/sed-4.2.1/
Dconfigure2170 ac_header_list="$ac_header_list limits.h"
5235 /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
5236 For example, HP-UX 11i <limits.h> declares gettimeofday. */
5241 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5242 <limits.h> exists even on freestanding compilers. */
5462 /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
5463 For example, HP-UX 11i <limits.h> declares gettimeofday. */
5468 Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
5469 <limits.h> exists even on freestanding compilers. */
7664 /* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
[all …]
Dconfigure.ac48 AC_CHECK_HEADERS_ONCE(io.h limits.h locale.h stdarg.h alloca.h stddef.h
/ndk/sources/host-tools/sed-4.2.1/lib/
Dregexec.c105 const re_node_set *limits,
119 re_node_set *limits,
1017 re_node_set_free (&sctx.limits); in prune_impossible_nodes()
1047 re_node_set_free (&sctx.limits); in prune_impossible_nodes()
1734 if (sctx->limits.nelem) in build_sifted_states()
1737 if (check_dst_limits (mctx, &sctx->limits, in build_sifted_states()
1829 if (sctx->limits.nelem) in update_cur_sifted_state()
1831 err = check_subexp_limits (dfa, dest_nodes, candidates, &sctx->limits, in update_cur_sifted_state()
1928 check_dst_limits (const re_match_context_t *mctx, const re_node_set *limits, in check_dst_limits() argument
1936 for (lim_idx = 0; lim_idx < limits->nelem; ++lim_idx) in check_dst_limits()
[all …]
Dregex_internal.h641 re_node_set limits; member
/ndk/sources/host-tools/make-3.81/config/
Dsize_max.m418 #include <limits.h>
/ndk/sources/host-tools/sed-4.2.1/m4/
Dlonglong.m427 [[@%:@include <limits.h>
Dstdint.m4146 #include <limits.h> /* for CHAR_BIT */
318 #include <limits.h>], [result=unknown])
Dregex.m441 #include <limits.h>
/ndk/build/tools/toolchain-patches/mclinker/
D0003-Fix-mingw-build.patch156 #include <limits.h>
/ndk/sources/host-tools/make-3.81/tests/
DNEWS109 limits won't hate me any more. Thanks very much to Kaveh R. Ghazi
/ndk/sources/host-tools/make-3.81/
Dconfig.ami286 /* Define if you have the <limits.h> header file. */
Dconfig.h-vms314 /* Define if you have the <limits.h> header file. */

123