/l4re-core-master/uclibc/lib/contrib/uclibc/include/ |
A D | inttypes.h | 306 extern intmax_t strtoimax (const char *__restrict __nptr, 310 extern uintmax_t strtoumax (const char *__restrict __nptr, 315 extern intmax_t wcstoimax (const __gwchar_t *__restrict __nptr, 320 extern uintmax_t wcstoumax (const __gwchar_t *__restrict __nptr, 329 extern long int __strtol_internal (const char *__restrict __nptr, 342 __restrict __nptr, 367 __restrict __nptr, 383 extern long long int __strtoll_internal (const char *__restrict __nptr, 397 __restrict __nptr, 413 __restrict __nptr, [all …]
|
A D | stdlib.h | 157 extern double atof (const char *__nptr) 161 extern int atoi (const char *__nptr) 165 extern long int atol (const char *__nptr) 180 extern double strtod (const char *__restrict __nptr, 189 extern float strtof (const char *__restrict __nptr, 201 extern long int strtol (const char *__restrict __nptr, 217 extern quad_t strtoq (const char *__restrict __nptr, 222 extern u_quad_t strtouq (const char *__restrict __nptr, 262 extern long int strtol_l (const char *__restrict __nptr, 286 extern double strtod_l (const char *__restrict __nptr, [all …]
|
A D | wchar.h | 411 extern double wcstod (const wchar_t *__restrict __nptr, 416 extern float wcstof (const wchar_t *__restrict __nptr, 418 extern long double wcstold (const wchar_t *__restrict __nptr, 426 extern long int wcstol (const wchar_t *__restrict __nptr, 439 extern long long int wcstoll (const wchar_t *__restrict __nptr, 456 extern long long int wcstoq (const wchar_t *__restrict __nptr, 487 extern long int wcstol_l (const wchar_t *__restrict __nptr, 496 extern long long int wcstoll_l (const wchar_t *__restrict __nptr, 507 extern double wcstod_l (const wchar_t *__restrict __nptr, 511 extern float wcstof_l (const wchar_t *__restrict __nptr, [all …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/src/c++11/ |
A D | cow-string-inst.cc | 85 const char* __nptr = token.c_str(); in _M_init_pretr1() local 87 __seed = std::strtoul(__nptr, &__endptr, 0); in _M_init_pretr1() 88 if (*__nptr == '\0' || *__endptr != '\0') in _M_init_pretr1()
|
A D | random.cc | 51 const char* __nptr = __str.c_str(); in _M_strtoul() local 53 __ret = std::strtoul(__nptr, &__endptr, 0); in _M_strtoul() 54 if (*__nptr == '\0' || *__endptr != '\0') in _M_strtoul()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/src/c++11/ |
A D | cow-string-inst.cc | 85 const char* __nptr = token.c_str(); in _M_init_pretr1() local 87 __seed = std::strtoul(__nptr, &__endptr, 0); in _M_init_pretr1() 88 if (*__nptr == '\0' || *__endptr != '\0') in _M_init_pretr1()
|
A D | random.cc | 51 const char* __nptr = __str.c_str(); in _M_strtoul() local 53 __ret = std::strtoul(__nptr, &__endptr, 0); in _M_strtoul() 54 if (*__nptr == '\0' || *__endptr != '\0') in _M_strtoul()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/c++11/ |
A D | cow-string-inst.cc | 85 const char* __nptr = token.c_str(); in _M_init_pretr1() local 87 __seed = std::strtoul(__nptr, &__endptr, 0); in _M_init_pretr1() 88 if (*__nptr == '\0' || *__endptr != '\0') in _M_init_pretr1()
|
A D | random.cc | 63 const char* __nptr = __str.c_str(); in _M_strtoul() local 65 __ret = std::strtoul(__nptr, &__endptr, 0); in _M_strtoul() 66 if (*__nptr == '\0' || *__endptr != '\0') in _M_strtoul()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/c++11/ |
A D | cow-string-inst.cc | 86 const char* __nptr = token.c_str(); in _M_init_pretr1() local 88 __seed = std::strtoul(__nptr, &__endptr, 0); in _M_init_pretr1() 89 if (*__nptr == '\0' || *__endptr != '\0') in _M_init_pretr1()
|
A D | random.cc | 69 const char* __nptr = __str.c_str(); in _M_strtoul() local 71 __ret = std::strtoul(__nptr, &__endptr, 0); in _M_strtoul() 72 if (*__nptr == '\0' || *__endptr != '\0') in _M_strtoul()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/src/c++11/ |
A D | cow-string-inst.cc | 110 const char* __nptr = token.c_str(); in _M_init_pretr1() local 112 __seed = std::strtoul(__nptr, &__endptr, 0); in _M_init_pretr1() 113 if (*__nptr == '\0' || *__endptr != '\0') in _M_init_pretr1()
|
A D | random.cc | 51 const char* __nptr = __str.c_str(); in _M_strtoul() local 53 __ret = std::strtoul(__nptr, &__endptr, 0); in _M_strtoul() 54 if (*__nptr == '\0' || *__endptr != '\0') in _M_strtoul()
|
A D | debug.cc | 937 const char* __nptr = std::getenv("GLIBCXX_DEBUG_MESSAGE_LENGTH"); in _M_get_max_length() local 938 if (__nptr) in _M_get_max_length() 941 const unsigned long __ret = std::strtoul(__nptr, &__endptr, 0); in _M_get_max_length() 942 if (*__nptr != '\0' && *__endptr == '\0') in _M_get_max_length()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/src/c++11/ |
A D | random.cc | 50 const char* __nptr = __str.c_str(); in _M_strtoul() local 52 __ret = std::strtoul(__nptr, &__endptr, 0); in _M_strtoul() 53 if (*__nptr == '\0' || *__endptr != '\0') in _M_strtoul()
|
A D | debug.cc | 937 const char* __nptr = std::getenv("GLIBCXX_DEBUG_MESSAGE_LENGTH"); in _M_get_max_length() local 938 if (__nptr) in _M_get_max_length() 941 const unsigned long __ret = std::strtoul(__nptr, &__endptr, 0); in _M_get_max_length() 942 if (*__nptr != '\0' && *__endptr == '\0') in _M_get_max_length()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/include/tr1/ |
A D | random.h | 1500 const char* __nptr = __str.c_str(); in _GLIBCXX_VISIBILITY() 1502 __ret = std::strtoul(__nptr, &__endptr, 0); in _GLIBCXX_VISIBILITY() 1503 if (*__nptr == '\0' || *__endptr != '\0') in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/include/tr1/ |
A D | random.h | 1500 const char* __nptr = __str.c_str(); in _GLIBCXX_VISIBILITY() 1502 __ret = std::strtoul(__nptr, &__endptr, 0); in _GLIBCXX_VISIBILITY() 1503 if (*__nptr == '\0' || *__endptr != '\0') in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/include/tr1/ |
A D | random.h | 1500 const char* __nptr = __str.c_str(); in _GLIBCXX_VISIBILITY() 1502 __ret = std::strtoul(__nptr, &__endptr, 0); in _GLIBCXX_VISIBILITY() 1503 if (*__nptr == '\0' || *__endptr != '\0') in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/tr1/ |
A D | random.h | 1496 const char* __nptr = __str.c_str(); in _GLIBCXX_VISIBILITY() 1498 __ret = std::strtoul(__nptr, &__endptr, 0); in _GLIBCXX_VISIBILITY() 1499 if (*__nptr == '\0' || *__endptr != '\0') in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/include/tr1/ |
A D | random.h | 1496 const char* __nptr = __str.c_str(); in _GLIBCXX_VISIBILITY() 1498 __ret = std::strtoul(__nptr, &__endptr, 0); in _GLIBCXX_VISIBILITY() 1499 if (*__nptr == '\0' || *__endptr != '\0') in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/tr1/ |
A D | random.h | 1496 const char* __nptr = __str.c_str(); in _GLIBCXX_VISIBILITY() 1498 __ret = std::strtoul(__nptr, &__endptr, 0); in _GLIBCXX_VISIBILITY() 1499 if (*__nptr == '\0' || *__endptr != '\0') in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/include/tr1/ |
A D | random.h | 1496 const char* __nptr = __str.c_str(); in _GLIBCXX_VISIBILITY() 1498 __ret = std::strtoul(__nptr, &__endptr, 0); in _GLIBCXX_VISIBILITY() 1499 if (*__nptr == '\0' || *__endptr != '\0') in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/include/tr1/ |
A D | random.h | 1500 const char* __nptr = __str.c_str(); in _GLIBCXX_VISIBILITY() 1502 __ret = std::strtoul(__nptr, &__endptr, 0); in _GLIBCXX_VISIBILITY() 1503 if (*__nptr == '\0' || *__endptr != '\0') in _GLIBCXX_VISIBILITY()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/bits/ |
A D | hashtable_policy.h | 1870 auto __nptr = __node_alloc_traits::allocate(_M_node_allocator(), 1); in _GLIBCXX_VISIBILITY() 1871 __node_ptr __n = std::__to_address(__nptr); in _GLIBCXX_VISIBILITY() 1882 __node_alloc_traits::deallocate(_M_node_allocator(), __nptr, 1); in _GLIBCXX_VISIBILITY()
|