Searched refs:tr1 (Results 1 - 25 of 38) sorted by relevance

12

/openbsd-current/gnu/gcc/libstdc++-v3/include/precompiled/
H A Dstdtr1c++.h36 #include <tr1/array>
37 #include <tr1/cctype>
38 #include <tr1/cfenv>
39 #include <tr1/cfloat>
40 #include <tr1/cinttypes>
41 #include <tr1/climits>
42 #include <tr1/cmath>
43 #include <tr1/complex>
44 #include <tr1/cstdarg>
45 #include <tr1/cstdboo
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/tr1/
H A Dmath.h30 /** @file tr1/math.h
37 #include <tr1/cmath>
41 using std::tr1::acos;
42 using std::tr1::acosh;
43 using std::tr1::asin;
44 using std::tr1::asinh;
45 using std::tr1::atan;
46 using std::tr1::atan2;
47 using std::tr1::atanh;
48 using std::tr1
[all...]
H A Dctype.h30 /** @file tr1/ctype.h
37 #include <tr1/cctype>
H A Dfenv.h30 /** @file tr1/fenv.h
37 #include <tr1/cfenv>
H A Dfloat.h30 /** @file tr1/float.h
37 #include <tr1/cfloat>
H A Dinttypes.h30 /** @file tr1/inttypes.h
37 #include <tr1/cinttypes>
H A Dlimits.h30 /** @file tr1/limits.h
37 #include <tr1/climits>
H A Dstdarg.h30 /** @file tr1/stdarg.h
37 #include <tr1/cstdarg>
H A Dstdbool.h30 /** @file tr1/stdbool.h
37 #include <tr1/cstdbool>
H A Dstdint.h30 /** @file tr1/stdint.h
37 #include <tr1/cstdint>
H A Dstdio.h30 /** @file tr1/stdio.h
37 #include <tr1/cstdio>
H A Dtgmath.h30 /** @file tr1/tgmath.h
37 #include <tr1/ctgmath>
H A Dwchar.h30 /** @file tr1/wchar.h
37 #include <tr1/cwchar>
H A Dwctype.h30 /** @file tr1/wctype.h
37 #include <tr1/cwctype>
H A Dstdlib.h30 /** @file tr1/stdlib.h
37 #include <tr1/cstdlib>
43 using std::tr1::atoll;
44 using std::tr1::strtoll;
45 using std::tr1::strtoull;
47 using std::tr1::abs;
49 using std::tr1::div;
H A Dref_fwd.h32 /** @file tr1/ref_fwd.h
43 _GLIBCXX_BEGIN_NAMESPACE(tr1)
H A Dcommon.h30 /** @file tr1/common.h
37 #include <tr1/type_traits>
39 // namespace std::tr1
42 _GLIBCXX_BEGIN_NAMESPACE(tr1)
H A Drepeat.h31 /** @file tr1/repeat.h
118 #define _GLIBCXX_MU_GET_TUPLE_ARGS ::std::tr1::get<0>(__tuple)
120 #define _GLIBCXX_BIND_V_ARGS _Mu<_T1>()(_M_arg1, ::std::tr1::tie(_GLIBCXX_BIND_ARGS))
176 #define _GLIBCXX_MU_GET_TUPLE_ARGS ::std::tr1::get<0>(__tuple), ::std::tr1::get<1>(__tuple)
178 #define _GLIBCXX_BIND_V_ARGS _Mu<_T1>()(_M_arg1, ::std::tr1::tie(_GLIBCXX_BIND_ARGS)), _Mu<_T2>()(_M_arg2, ::std::tr1::tie(_GLIBCXX_BIND_ARGS))
233 #define _GLIBCXX_MU_GET_TUPLE_ARGS ::std::tr1::get<0>(__tuple), ::std::tr1::get<1>(__tuple), ::std::tr1
[all...]
H A Dtuple_iterate.h30 /** @file tr1/tuple_iterate.h
39 _GLIBCXX_BEGIN_NAMESPACE(tr1)
H A Dfunctional_iterate.h31 /** @file tr1/functional_iterate.h
38 _GLIBCXX_BEGIN_NAMESPACE(tr1)
419 #define _GLIBCXX_BIND_REPEAT_HEADER <tr1/bind_iterate.h>
420 #include <tr1/bind_repeat.h>
440 #define _GLIBCXX_BIND_REPEAT_HEADER <tr1/bind_iterate.h>
442 #include <tr1/bind_repeat.h>
550 return std::tr1::mem_fn(_Base::_M_get_pointer(__functor)->__value)
589 std::tr1::mem_fn(_Base::_M_get_pointer(__functor)->__value)
/openbsd-current/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/
H A Dtype_utils.hpp53 #include <tr1/type_traits>
61 using std::tr1::is_same;
62 using std::tr1::is_const;
63 using std::tr1::is_pointer;
64 using std::tr1::is_reference;
65 using std::tr1::is_fundamental;
66 using std::tr1::is_member_object_pointer;
67 using std::tr1::is_member_pointer;
68 using std::tr1::is_base_of;
69 using std::tr1
[all...]
/openbsd-current/usr.bin/cdio/
H A Dcdio.c135 { CMD_PLAY, "play", 1, "[[tr1] m1:s1[.f1] [tr2] [m2:s2[.f2]]]" },
689 unsigned int tr1, tr2, m1, m2, s1, s2, f1, f2, i1, i2; local
746 * Play track tr1[.i1] [tr2[.i2]]
748 if (4 == sscanf(arg, "%u.%u%u.%u%c", &tr1, &i1, &tr2, &i2, &c))
752 if (3 == sscanf(arg, "%u.%u%u%c", &tr1, &i1, &tr2, &c))
756 if (3 == sscanf(arg, "%u%u.%u%c", &tr1, &tr2, &i2, &c))
761 if (2 == sscanf(arg, "%u.%u%c", &tr1, &i1, &c))
765 if (2 == sscanf(arg, "%u%u%c", &tr1, &tr2, &c))
770 if (1 == sscanf(arg, "%u%c", &tr1, &c))
777 if (tr1 >
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/ext/
H A Darray_allocator.h40 #include <tr1/array>
90 template<typename _Tp, typename _Array = std::tr1::array<_Tp, 1> >
/openbsd-current/gnu/gcc/gcc/config/sh/
H A Dlib1funcs.asm1065 pt/l LOCAL(sdivsi3_loop), tr1
1085 bnei r1, 0, tr1
1161 // with the SHcompact implementation, which clobbers tr1 / tr2.
1213 // clobbered: r18,r19,r20,r21,r25,tr0,tr1,tr2
1220 pt/l LOCAL(sdivsi3_loop), tr1
1238 bnei r25,-32,tr1
1495 pt/l LOCAL(udivsi3_loop), tr1
1510 bnei r18, 0, tr1
1567 // clobbered: r20,r21,r25,tr0,tr1,tr2
1573 pt/l LOCAL(udivsi3_loop), tr1
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/sh/
H A Dlib1funcs.asm1058 pt/l LOCAL(sdivsi3_loop), tr1
1078 bnei r1, 0, tr1
1147 // clobbered: r18,r19,r20,r21,r25,tr0,tr1,tr2
1153 pt/l LOCAL(sdivsi3_loop), tr1
1171 bnei r25,-32,tr1
1432 pt/l LOCAL(udivsi3_loop), tr1
1447 bnei r18, 0, tr1
1504 // clobbered: r20,r21,r25,tr0,tr1,tr2
1510 pt/l LOCAL(udivsi3_loop), tr1
1521 bnei r25,-32,tr1
[all...]

Completed in 266 milliseconds

12