/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _cstdlib.h | 93 # if defined (_STLP_LONG_LONG) && !defined (_STLP_NO_VENDOR_STDLIB_L) 148 #if defined (_STLP_LONG_LONG) 151 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return _STLP_VENDOR_CSTD::llabs(__x); } in abs() 152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x,… in div() 154 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return ::llabs(__x); } in abs() 155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); } in div() 158 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return __x < 0 ? -__x : __x; } in abs()
|
D | _limits.h | 102 # ifdef _STLP_LONG_LONG 103 # define _STLP_LIMITS_MIN_TYPE _STLP_LONG_LONG 104 # define _STLP_LIMITS_MAX_TYPE unsigned _STLP_LONG_LONG 257 #if defined (_STLP_LONG_LONG) 278 class numeric_limits<_STLP_LONG_LONG> 279 : public _STLP_PRIV _Integer_limits<_STLP_LONG_LONG, LONGLONG_MIN, LONGLONG_MAX, -1, true> 283 class numeric_limits<unsigned _STLP_LONG_LONG> 284 : public _STLP_PRIV _Integer_limits<unsigned _STLP_LONG_LONG, 0, ULONGLONG_MAX, -1, true> 296 class numeric_limits<_STLP_LONG_LONG> 297 : public _STLP_PRIV _Numeric_limits_base<_STLP_LONG_LONG> { [all …]
|
D | _hash_fun.h | 115 #if defined (_STLP_LONG_LONG) 116 _STLP_TEMPLATE_NULL struct hash<_STLP_LONG_LONG> { 117 size_t operator()(_STLP_LONG_LONG x) const { return (size_t)x; } 119 _STLP_TEMPLATE_NULL struct hash<unsigned _STLP_LONG_LONG> { 120 size_t operator()(unsigned _STLP_LONG_LONG x) const { return (size_t)x; }
|
D | _ptrs_specialize.h | 69 # if defined ( _STLP_LONG_LONG) 70 _STLP_POINTERS_SPECIALIZE( _STLP_LONG_LONG ) 71 _STLP_POINTERS_SPECIALIZE( unsigned _STLP_LONG_LONG )
|
D | _num_put.h | 75 #if defined (_STLP_LONG_LONG) 77 _STLP_LONG_LONG __val) const { in put() 82 unsigned _STLP_LONG_LONG __val) const { in put() 118 #if defined (_STLP_LONG_LONG) 119 …virtual _OutputIter do_put(_OutputIter __s, ios_base& __f, _CharT __fill, _STLP_LONG_LONG __val) c… 121 unsigned _STLP_LONG_LONG __val) const ;
|
D | _num_get.h | 95 #if defined (_STLP_LONG_LONG) 97 ios_base::iostate& __err, _STLP_LONG_LONG& __val) const in get() 101 ios_base::iostate& __err, unsigned _STLP_LONG_LONG& __val) const in get() 166 #if defined (_STLP_LONG_LONG) 168 ios_base::iostate& __err, _STLP_LONG_LONG& __val) const; 170 ios_base::iostate& __err, unsigned _STLP_LONG_LONG& __val) const;
|
D | _num_put.c | 263 #if defined (_STLP_LONG_LONG) 264 typedef _STLP_LONG_LONG __max_int_t; 265 typedef unsigned _STLP_LONG_LONG __umax_int_t; 456 #if defined (_STLP_LONG_LONG) 460 _STLP_LONG_LONG __val) const in do_put() 466 unsigned _STLP_LONG_LONG __val) const in do_put() 500 #ifdef _STLP_LONG_LONG in do_put() 504 #ifdef _STLP_LONG_LONG in do_put() 506 …__do_put_integer(__s, __f, __c_type.widen('0'), __REINTERPRET_CAST(unsigned _STLP_LONG_LONG,__val)) in do_put()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | strstream_test.cpp | 33 # if defined (STLPORT) && defined (_STLP_LONG_LONG) in input() 36 _STLP_LONG_LONG rval = 0; in input() 42 _STLP_LONG_LONG rval = 0; in input()
|
D | num_put_get_test.cpp | 652 #if defined (STLPORT) && defined (_STLP_LONG_LONG) in num_put_integer() 653 CHECK(_STLP_LONG_LONG, 0, oct, "0") in num_put_integer() 654 CHECK(_STLP_LONG_LONG, 12345678, oct, "57060516") in num_put_integer() 655 if (sizeof(_STLP_LONG_LONG) == 8) { in num_put_integer() 656 CHECK(_STLP_LONG_LONG, -1, oct, "1777777777777777777777") in num_put_integer() 657 CHECK(_STLP_LONG_LONG, -12345678, oct, "1777777777777720717262") in num_put_integer() 660 CHECK(unsigned _STLP_LONG_LONG, 0, oct, "0") in num_put_integer() 661 CHECK(unsigned _STLP_LONG_LONG, 12345678, oct, "57060516") in num_put_integer() 698 #if defined (STLPORT) && defined (_STLP_LONG_LONG) in num_put_integer() 699 CHECK(_STLP_LONG_LONG, 0, dec, "0") in num_put_integer() [all …]
|
D | limits_test.cpp | 293 # if defined (_STLP_LONG_LONG) in test() 294 typedef _STLP_LONG_LONG long_long; in test() 296 typedef unsigned _STLP_LONG_LONG unsigned_long_long; in test()
|
/ndk/tests/device/test-stlport/unit/ |
D | strstream_test.cpp | 33 # if defined (STLPORT) && defined (_STLP_LONG_LONG) in input() 36 _STLP_LONG_LONG rval = 0; in input() 42 _STLP_LONG_LONG rval = 0; in input()
|
D | num_put_get_test.cpp | 652 #if defined (STLPORT) && defined (_STLP_LONG_LONG) in num_put_integer() 653 CHECK(_STLP_LONG_LONG, 0, oct, "0") in num_put_integer() 654 CHECK(_STLP_LONG_LONG, 12345678, oct, "57060516") in num_put_integer() 655 if (sizeof(_STLP_LONG_LONG) == 8) { in num_put_integer() 656 CHECK(_STLP_LONG_LONG, -1, oct, "1777777777777777777777") in num_put_integer() 657 CHECK(_STLP_LONG_LONG, -12345678, oct, "1777777777777720717262") in num_put_integer() 660 CHECK(unsigned _STLP_LONG_LONG, 0, oct, "0") in num_put_integer() 661 CHECK(unsigned _STLP_LONG_LONG, 12345678, oct, "57060516") in num_put_integer() 698 #if defined (STLPORT) && defined (_STLP_LONG_LONG) in num_put_integer() 699 CHECK(_STLP_LONG_LONG, 0, dec, "0") in num_put_integer() [all …]
|
D | limits_test.cpp | 294 # if defined (_STLP_LONG_LONG) in test() 295 typedef _STLP_LONG_LONG long_long; in test() 297 typedef unsigned _STLP_LONG_LONG unsigned_long_long; in test()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
D | _apcc.h | 12 #define _STLP_LONG_LONG long long macro 26 # undef _STLP_LONG_LONG
|
D | _intel.h | 62 #undef _STLP_LONG_LONG 63 #define _STLP_LONG_LONG long long macro
|
D | stl_confix.h | 92 # if !defined (__NO_LONG_LONG) && !defined (_STLP_LONG_LONG) 93 # define _STLP_LONG_LONG long long macro
|
D | _fujitsu.h | 6 #define _STLP_LONG_LONG long long macro
|
D | _icc.h | 7 #define _STLP_LONG_LONG long long macro
|
D | _cray.h | 26 # define _STLP_LONG_LONG long long macro
|
D | _gcc.h | 124 #define _STLP_LONG_LONG long long macro 185 # undef _STLP_LONG_LONG
|
D | _kai.h | 8 # define _STLP_LONG_LONG long long macro
|
D | _as400.h | 49 # define _STLP_LONG_LONG long long macro
|
D | _msvc.h | 43 #ifndef _STLP_LONG_LONG 44 # define _STLP_LONG_LONG __int64 macro
|
D | _dec_vms.h | 76 # define _STLP_LONG_LONG long long macro
|
D | _dm.h | 65 # define _STLP_LONG_LONG long long macro
|