Searched refs:endp (Results 1 – 25 of 27) sorted by relevance
12
/sysdeps/unix/sysv/linux/ |
A D | fips-private.h | 60 char *endp; in fips_enabled_p() local 61 long int res = strtol (buf, &endp, 10); in fips_enabled_p() 62 if (endp != buf && (*endp == '\0' || *endp == '\n')) in fips_enabled_p()
|
A D | getsysstats.c | 162 char *endp; in __get_nprocs() local 163 unsigned long int n = strtoul (l, &endp, 10); in __get_nprocs() 164 if (l == endp) in __get_nprocs() 171 if (*endp == '-') in __get_nprocs() 173 l = endp + 1; in __get_nprocs() 174 m = strtoul (l, &endp, 10); in __get_nprocs() 175 if (l == endp) in __get_nprocs() 184 l = endp; in __get_nprocs() 219 char *endp; in weak_alias() local 220 unsigned long int nr = strtoul (d->d_name + 3, &endp, 10); in weak_alias() [all …]
|
A D | sysconf.c | 113 char *endp; in __sysconf() local 114 long int res = strtol (buf, &endp, 10); in __sysconf() 115 if (endp != buf && (*endp == '\0' || *endp == '\n')) in __sysconf()
|
A D | getlogin_r.c | 50 char *endp; in __getlogin_r_loginuid() local 54 uid = strtoul (uidbuf, &endp, 10), in __getlogin_r_loginuid() 55 endp == uidbuf || *endp != '\0')) in __getlogin_r_loginuid()
|
/sysdeps/pthread/ |
A D | tst-exec2.c | 102 char *endp; in do_test() local 103 long int rpid = strtol (buf, &endp, 10); in do_test() 105 if (*endp != '\n') in do_test() 110 if (endp == buf) in do_test()
|
A D | tst-exec3.c | 100 char *endp; in do_test() local 101 long int rpid = strtol (buf, &endp, 10); in do_test() 103 if (*endp != '\n') in do_test() 108 if (endp == buf) in do_test()
|
A D | tst-exec1.c | 104 char *endp; in do_test() local 105 long int rpid = strtol (buf, &endp, 10); in do_test() 107 if (*endp != '\n') in do_test() 112 if (endp == buf) in do_test()
|
/sysdeps/unix/sysv/linux/powerpc/ |
A D | get_timebase_freq.c | 78 char *endp = buf + n; in get_timebase_freq_fallback() local 81 while (mhz < endp && (*mhz < '0' || *mhz > '9') && *mhz != '\n') in get_timebase_freq_fallback() 84 while (mhz < endp && *mhz != '\n') in get_timebase_freq_fallback()
|
/sysdeps/ia64/ |
A D | crtn.S | 55 .endp _init# 69 .endp _fini#
|
A D | crti.S | 123 .endp gmon_initializer# 145 .endp _init# 162 .endp _fini#
|
A D | sysdep.h | 59 #define END(sym) .endp C_SYMBOL_NAME(sym)
|
A D | start.S | 102 .endp _start
|
/sysdeps/ia64/fpu/ |
A D | s_fabsf.S | 62 .endp __libm_fabsf#
|
A D | s_fabs.S | 62 .endp __libm_fabs#
|
A D | s_fabsl.S | 62 .endp __libm_fabsl#
|
A D | libm-symbols.h | 19 .endp name; \
|
A D | import_file.awk | 63 /^[.]endp[ \t]+__libm_(error_region|callout)/ {
|
A D | libm_frexp4f.S | 195 .endp __libm_frexp_4f
|
A D | libm_frexp4.S | 195 .endp __libm_frexp_4
|
A D | libm_frexp4l.S | 194 .endp __libm_frexp_4l
|
A D | libm_sincosf.S | 741 .endp _CISF_LARGE_ARGS
|
A D | libm_sincos.S | 779 .endp _CIS_LARGE_ARGS
|
A D | libm_tan.S | 3183 .endp __libm_tan 3308 .endp __libm_callout 3325 .endp __libm_TAN_SPECIAL
|
/sysdeps/unix/sysv/linux/ia64/ |
A D | sysdep.h | 141 #define PSEUDO_END(name) .endp C_SYMBOL_NAME(name); 149 #define PSEUDO_END_NOERRNO(name) .endp C_SYMBOL_NAME(name); 160 #define PSEUDO_END_ERRVAL(name) .endp C_SYMBOL_NAME(name); 165 .endp C_SYMBOL_NAME(name)
|
/sysdeps/posix/ |
A D | getaddrinfo.c | 1850 char *endp; in gaiconf_init() local 1864 || (bits = strtoul (cp, &endp, 10)) != ULONG_MAX in gaiconf_init() 1866 && *endp == '\0' in gaiconf_init() 1870 && *endp == '\0' in gaiconf_init() 1907 char *endp; in gaiconf_init() local 1921 && *endp == '\0' in gaiconf_init() 1924 && ((val = strtoul (val2, &endp, 10)) != ULONG_MAX in gaiconf_init() 1926 && *endp == '\0' in gaiconf_init() 1956 && *endp == '\0' in gaiconf_init() 1958 && ((val = strtoul (val2, &endp, 10)) != ULONG_MAX in gaiconf_init() [all …]
|
Completed in 30 milliseconds
12