/bionic/libc/include/android/ |
D | legacy_stdlib_inlines.h | 37 static __inline int abs(int __n) { return (__n < 0) ? -__n : __n; } in abs() argument 39 static __inline long labs(long __n) { return (__n < 0L) ? -__n : __n; } in labs() argument 41 static __inline long long llabs(long long __n) { in llabs() argument 42 return (__n < 0LL) ? -__n : __n; in llabs()
|
/bionic/libc/include/ |
D | string.h | 44 void* memccpy(void* __dst, const void* __src, int __stop_char, size_t __n); 45 void* memchr(const void* __s, int __ch, size_t __n) __attribute_pure__; 47 extern "C++" void* memrchr(void* __s, int __ch, size_t __n) __RENAME(memrchr) __attribute_pure__; 48 extern "C++" const void* memrchr(const void* __s, int __ch, size_t __n) __RENAME(memrchr) __attribu… 50 void* memrchr(const void* __s, int __ch, size_t __n) __attribute_pure__; 52 int memcmp(const void* __lhs, const void* __rhs, size_t __n) __attribute_pure__; 55 void* mempcpy(void* __dst, const void* __src, size_t __n) __INTRODUCED_IN(23); 57 void* memmove(void* __dst, const void* __src, size_t __n); 58 void* memset(void* __dst, int __ch, size_t __n); 62 char* __strchr_chk(const char* __s, int __ch, size_t __n) __INTRODUCED_IN(18); [all …]
|
D | strings.h | 81 __BIONIC_STRINGS_INLINE int ffs(int __n) { in ffs() argument 82 return __builtin_ffs(__n); in ffs() 92 __BIONIC_STRINGS_INLINE int ffsl(long __n) { in ffsl() argument 93 return __builtin_ffsl(__n); in ffsl() 103 __BIONIC_STRINGS_INLINE int ffsll(long long __n) { in ffsll() argument 104 return __builtin_ffsll(__n); in ffsll()
|
D | wchar.h | 57 size_t mbrlen(const char* __s, size_t __n, mbstate_t* __ps); 58 size_t mbrtowc(wchar_t* __buf, const char* __s, size_t __n, mbstate_t* __ps); 63 int swprintf(wchar_t* __buf, size_t __n, const wchar_t* __fmt, ...); 68 int vswprintf(wchar_t* __buf, size_t __n, const wchar_t* __fmt, va_list __args); 73 wchar_t* wcpncpy(wchar_t* __dst, const wchar_t* __src, size_t __n); 83 size_t wcsftime(wchar_t* __buf, size_t __n, const wchar_t* __fmt, const struct tm* __tm); 84 size_t wcsftime_l(wchar_t* __buf, size_t __n, const wchar_t* __fmt, const struct tm* __tm, locale_t… 86 int wcsncasecmp(const wchar_t* __lhs, const wchar_t* __rhs, size_t __n); 87 int wcsncasecmp_l(const wchar_t* __lhs, const wchar_t* __rhs, size_t __n, locale_t __l) __INTRODUCE… 88 wchar_t* wcsncat(wchar_t* __dst, const wchar_t* __src, size_t __n); [all …]
|
D | stdlib.h | 102 void arc4random_buf(void* __buf, size_t __n); 118 char* initstate(unsigned int __seed, char* __state, size_t __n) __INTRODUCED_IN(21); 124 int ptsname_r(int __fd, char* __buf, size_t __n); 157 int getloadavg(double __averages[], int __n) __INTRODUCED_IN(29); 163 int mblen(const char* __s, size_t __n) __INTRODUCED_IN_NO_GUARD_FOR_NDK(26); 164 size_t mbstowcs(wchar_t* __dst, const char* __src, size_t __n); 165 int mbtowc(wchar_t* __wc_ptr, const char* __s, size_t __n) __INTRODUCED_IN_NO_GUARD_FOR_NDK(21); 168 size_t wcstombs(char* __dst, const wchar_t* __src, size_t __n);
|
D | libgen.h | 72 int dirname_r(const char* __path, char* __buf, size_t __n); 74 int basename_r(const char* __path, char* __buf, size_t __n);
|
D | pwd.h | 92 int getpwnam_r(const char* __name, struct passwd* __pwd, char* __buf, size_t __n, struct passwd** _… 93 int getpwuid_r(uid_t __uid, struct passwd* __pwd, char* __buf, size_t __n, struct passwd** __result…
|
D | uchar.h | 83 size_t mbrtoc16(char16_t* _Nullable __ch16, const char* _Nullable __s, size_t __n, mbstate_t* _Null… 91 size_t mbrtoc32(char32_t* _Nullable __ch32, const char* _Nullable __s, size_t __n, mbstate_t* _Null…
|
D | grp.h | 58 int getgrgid_r(gid_t __gid, struct group* __group, char* __buf, size_t __n, struct group** __result… 59 int getgrnam_r(const char* __name, struct group* __group, char* __buf, size_t __n, struct group** _…
|
D | search.h | 92 int hcreate(size_t __n) __INTRODUCED_IN(28); 127 int hcreate_r(size_t __n, struct hsearch_data* __table) __INTRODUCED_IN(28);
|
D | time.h | 80 size_t strftime(char* __buf, size_t __n, const char* __fmt, const struct tm* __tm) __strftimelike(3… 82 size_t strftime_l(char* __buf, size_t __n, const char* __fmt, const struct tm* __tm, locale_t __l) …
|
D | regex.h | 101 size_t regerror(int __error_code, const regex_t* __re, char* __buf, size_t __n);
|
D | math.h | 332 double jn(int __n, double __x); 335 double yn(int __n, double __x); 377 float jnf(int __n, float __x); 381 float ynf(int __n, float __x);
|
D | unistd.h | 274 int sethostname(const char* __name, size_t __n) __INTRODUCED_IN(23); 314 int setdomainname(const char* __name, size_t __n) __INTRODUCED_IN(26);
|
D | pthread.h | 281 int pthread_getname_np(pthread_t __pthread, char* __buf, size_t __n) __INTRODUCED_IN(26);
|
/bionic/libc/arch-x86/ |
D | dynamic_function_dispatch.cpp | 35 typedef int memcmp_func(const void* __lhs, const void* __rhs, size_t __n); 43 typedef void* memset_func(void* __dst, int __ch, size_t __n); 57 typedef void* memmove_func(void* __dst, const void* __src, size_t __n); 76 typedef char* strncpy_func(char* __dst, const char* __src, size_t __n); 90 typedef int wmemcmp_func(const wchar_t* __lhs, const wchar_t* __rhs, size_t __n); 98 typedef int wmemset_func(const wchar_t* __lhs, const wchar_t* __rhs, size_t __n); 112 typedef int strncmp_func(const char* __lhs, const char* __rhs, size_t __n); 126 typedef char* strncat_func(char* __dst, const char* __src, size_t __n);
|
/bionic/libc/include/bits/ |
D | strcasecmp.h | 64 int strncasecmp(const char* __s1, const char* __s2, size_t __n) __attribute_pure__; 69 int strncasecmp_l(const char* __s1, const char* __s2, size_t __n, locale_t __l) __attribute_pure__ …
|
/bionic/libc/kernel/uapi/linux/netfilter/ |
D | x_tables.h | 97 …__n; int __ret = 0; type * __entry; for(__i = 0, __n = 0; __i < (size); __i += __entry->next_offse…
|
/bionic/libc/include/sys/ |
D | socket.h | 314 ssize_t recv(int __fd, void* __buf, size_t __n, int __flags); 315 ssize_t send(int __fd, const void* __buf, size_t __n, int __flags); 317 __socketcall ssize_t sendto(int __fd, const void* __buf, size_t __n, int __flags, const struct sock… 318 __socketcall ssize_t recvfrom(int __fd, void* __buf, size_t __n, int __flags, struct sockaddr* __sr…
|
D | system_properties.h | 95 const prop_info* __system_property_find_nth(unsigned __n);
|
/bionic/libc/include/arpa/ |
D | inet.h | 47 unsigned int inet_nsap_addr(const char* __ascii, unsigned char* __binary, int __n);
|
/bionic/libc/arch-arm/ |
D | dynamic_function_dispatch.cpp | 145 typedef void* memmove_func(void* __dst, const void* __src, size_t __n); 192 typedef void* memset_func(void* __dst, int __ch, size_t __n);
|