Lines Matching refs:__inline
38 static __inline int abs(int __n) { return (__n < 0) ? -__n : __n; } in abs()
40 static __inline long labs(long __n) { return (__n < 0L) ? -__n : __n; } in labs()
42 static __inline long long llabs(long long __n) { in llabs()
58 static __inline float strtof(const char* nptr, char** endptr) { in strtof()
70 static __inline double atof(const char *nptr) { return (strtod(nptr, NULL)); } in atof()
72 static __inline int rand(void) { return (int)lrand48(); } in rand()
74 static __inline void srand(unsigned int __s) { srand48(__s); } in srand()
76 static __inline long random(void) { return lrand48(); } in random()
78 static __inline void srandom(unsigned int __s) { srand48(__s); } in srandom()
80 static __inline int grantpt(int __fd __attribute((unused))) { in grantpt()
95 static __inline double strtod_l(const char* __s, char** __end_ptr, locale_t __l) { in strtod_l()
99 static __inline float strtof_l(const char* __s, char** __end_ptr, locale_t __l) { in strtof_l()
103 static __inline long strtol_l(const char* __s, char** __end_ptr, int __base, locale_t __l) { in strtol_l()