Searched defs:__size_to_integer (Results 1 - 2 of 2) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstl_algobase.h949 __size_to_integer(int __n) { return __n; } function
951 __size_to_integer(unsigned __n) { return __n; } function
953 __size_to_integer(long __n) { return __n; } function
955 __size_to_integer(unsigned long __n) { return __n; } function
957 __size_to_integer(long long __n) { return __n; } function
959 __size_to_integer(unsigned long long __n) { return __n; } function
963 __size_to_integer(__GLIBCXX_TYPE_INT_N_0 __n) { return __n; } function
965 __size_to_integer(unsigned __GLIBCXX_TYPE_INT_N_0 __n) { return __n; } function
969 __size_to_integer(__GLIBCXX_TYPE_INT_N_1 __n) { return __n; } function
971 __size_to_integer(unsigne function
975 __size_to_integer(__GLIBCXX_TYPE_INT_N_2 __n) { return __n; } function
977 __size_to_integer(unsigned __GLIBCXX_TYPE_INT_N_2 __n) { return __n; } function
981 __size_to_integer(__GLIBCXX_TYPE_INT_N_3 __n) { return __n; } function
983 __size_to_integer(unsigned __GLIBCXX_TYPE_INT_N_3 __n) { return __n; } function
987 __size_to_integer(float __n) { return (long long)__n; } function
989 __size_to_integer(double __n) { return (long long)__n; } function
991 __size_to_integer(long double __n) { return (long long)__n; } function
994 __size_to_integer(__float128 __n) { return (long long)__n; } function
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstl_algobase.h1003 __size_to_integer(int __n) { return __n; } function
1005 __size_to_integer(unsigned __n) { return __n; } function
1007 __size_to_integer(long __n) { return __n; } function
1009 __size_to_integer(unsigned long __n) { return __n; } function
1011 __size_to_integer(long long __n) { return __n; } function
1013 __size_to_integer(unsigned long long __n) { return __n; } function
1017 __size_to_integer(__GLIBCXX_TYPE_INT_N_0 __n) { return __n; } function
1019 __size_to_integer(unsigned __GLIBCXX_TYPE_INT_N_0 __n) { return __n; } function
1023 __size_to_integer(__GLIBCXX_TYPE_INT_N_1 __n) { return __n; } function
1025 __size_to_integer(unsigne function
1029 __size_to_integer(__GLIBCXX_TYPE_INT_N_2 __n) { return __n; } function
1031 __size_to_integer(unsigned __GLIBCXX_TYPE_INT_N_2 __n) { return __n; } function
1035 __size_to_integer(__GLIBCXX_TYPE_INT_N_3 __n) { return __n; } function
1037 __size_to_integer(unsigned __GLIBCXX_TYPE_INT_N_3 __n) { return __n; } function
1041 __size_to_integer(float __n) { return (long long)__n; } function
1043 __size_to_integer(double __n) { return (long long)__n; } function
1045 __size_to_integer(long double __n) { return (long long)__n; } function
1048 __size_to_integer(__float128 __n) { return (long long)__n; } function
[all...]

Completed in 115 milliseconds