Home
last modified time | relevance | path

Searched refs:_STLP_LONG_LONG (Results 1 – 25 of 44) sorted by relevance

12

/external/stlport/stlport/stl/
D_cstdlib.h93 # 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.h102 # 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.h115 #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_num_put.h75 #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_ptrs_specialize.h69 # if defined ( _STLP_LONG_LONG)
70 _STLP_POINTERS_SPECIALIZE( _STLP_LONG_LONG )
71 _STLP_POINTERS_SPECIALIZE( unsigned _STLP_LONG_LONG )
D_num_get.h95 #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.c263 #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()
Dtype_traits.h121 # ifdef _STLP_LONG_LONG
122 _STLP_TEMPLATE_NULL struct _IsIntegral<_STLP_LONG_LONG>
125 _STLP_TEMPLATE_NULL struct _IsIntegral<unsigned _STLP_LONG_LONG>
302 # ifdef _STLP_LONG_LONG
303 _STLP_DEFINE_TYPE_TRAITS_FOR(_STLP_LONG_LONG);
304 _STLP_DEFINE_TYPE_TRAITS_FOR(unsigned _STLP_LONG_LONG);
D_istream.h107 #ifdef _STLP_LONG_LONG
108 _Self& operator>> (_STLP_LONG_LONG& __val);
109 _Self& operator>> (unsigned _STLP_LONG_LONG& __val);
D_num_get.c590 #if defined (_STLP_LONG_LONG) && !defined (__MRC__) //*ty 12/07/2001 - MrCpp can not cast from l… in do_get()
591 unsigned _STLP_LONG_LONG __val; in do_get()
601 #if defined (_STLP_LONG_LONG)
606 _STLP_LONG_LONG& __val) const in do_get()
613 unsigned _STLP_LONG_LONG& __val) const in do_get()
D_ostream.h119 #ifdef _STLP_LONG_LONG
120 _Self& operator<< (_STLP_LONG_LONG __x);
121 _Self& operator<< (unsigned _STLP_LONG_LONG __x);
/external/stlport/test/unit/
Dnum_put_get_test.cpp660 #if defined (STLPORT) && defined (_STLP_LONG_LONG) in num_put_integer()
661 CHECK(_STLP_LONG_LONG, 0, oct, "0") in num_put_integer()
662 CHECK(_STLP_LONG_LONG, 12345678, oct, "57060516") in num_put_integer()
663 if (sizeof(_STLP_LONG_LONG) == 8) { in num_put_integer()
664 CHECK(_STLP_LONG_LONG, -1, oct, "1777777777777777777777") in num_put_integer()
665 CHECK(_STLP_LONG_LONG, -12345678, oct, "1777777777777720717262") in num_put_integer()
668 CHECK(unsigned _STLP_LONG_LONG, 0, oct, "0") in num_put_integer()
669 CHECK(unsigned _STLP_LONG_LONG, 12345678, oct, "57060516") in num_put_integer()
706 #if defined (STLPORT) && defined (_STLP_LONG_LONG) in num_put_integer()
707 CHECK(_STLP_LONG_LONG, 0, dec, "0") in num_put_integer()
[all …]
Dstrstream_test.cpp33 # 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()
Dtype_traits_test.cpp312 # if defined (_STLP_LONG_LONG) in integer()
313 typedef _STLP_LONG_LONG long_long; in integer()
315 typedef unsigned _STLP_LONG_LONG unsigned_long_long; in integer()
358 # if defined (_STLP_LONG_LONG) in rational()
359 typedef _STLP_LONG_LONG long_long; in rational()
361 typedef unsigned _STLP_LONG_LONG unsigned_long_long; in rational()
Dlimits_test.cpp293 # 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()
/external/stlport/stlport/stl/config/
D_apcc.h12 #define _STLP_LONG_LONG long long macro
26 # undef _STLP_LONG_LONG
D_intel.h62 #undef _STLP_LONG_LONG
63 #define _STLP_LONG_LONG long long macro
Dstl_confix.h92 # if !defined (__NO_LONG_LONG) && !defined (_STLP_LONG_LONG)
93 # define _STLP_LONG_LONG long long macro
D_gcc.h124 #define _STLP_LONG_LONG long long macro
185 # undef _STLP_LONG_LONG
D_msvc.h43 #ifndef _STLP_LONG_LONG
44 # define _STLP_LONG_LONG __int64 macro
D_fujitsu.h6 #define _STLP_LONG_LONG long long macro
D_cray.h26 # define _STLP_LONG_LONG long long macro
D_icc.h7 #define _STLP_LONG_LONG long long macro
D_kai.h8 # define _STLP_LONG_LONG long long macro
D_as400.h49 # define _STLP_LONG_LONG long long macro

12