/bionic/libc/bionic/ |
H A D | stdlib_l.cpp | 40 long strtol_l(const char* s, char** end_ptr, int base, locale_t) { argument 41 return strtol(s, end_ptr, base); 48 long long strtoll_l(const char* s, char** end_ptr, int base, locale_t) { argument 49 return strtoll(s, end_ptr, base); 52 unsigned long strtoul_l(const char* s, char** end_ptr, int base, locale_t) { argument 53 return strtoul(s, end_ptr, base); 56 unsigned long long strtoull_l(const char* s, char** end_ptr, int base, locale_t) { argument 57 return strtoull(s, end_ptr, base);
|
H A D | wchar_l.cpp | 48 long long wcstoll_l(const wchar_t *nptr, wchar_t **endptr, int base, argument 50 return wcstoll(nptr, endptr, base); 54 int base, locale_t) { 55 return wcstoull(nptr, endptr, base); 53 wcstoull_l(const wchar_t *nptr, wchar_t **endptr, int base, locale_t) argument
|
/bionic/libc/upstream-netbsd/lib/libc/stdlib/ |
H A D | bsearch.c | 54 * the base up one item past p: e.g., when lim is 5 we change base 65 const char *base = base0; local 75 p = base + (lim >> 1) * size; 80 base = (const char *)p + size;
|
/bionic/libc/arch-mips/string/ |
H A D | strlen.c | 40 do_bytes (const char *base, const char *p, op_t inval) argument 59 return (size_t) (p - base); 69 do_bytes (const char *base, const char *p) argument 72 return (size_t) (p - base);
|
H A D | strnlen.c | 40 do_bytes (const char *base, const char *p, op_t inval) argument 59 return (size_t) (p - base); 69 do_bytes (const char *base, const char *p) argument 72 return (size_t) (p - base);
|
/bionic/libc/include/ |
H A D | ftw.h | 53 int base; member in struct:FTW
|
/bionic/libc/upstream-openbsd/lib/libc/locale/ |
H A D | _wcstol.h | 49 FUNCNAME(const wchar_t *nptr, wchar_t **endptr, int base) argument 57 /* check base value */ 58 if (base && (base < 2 || base > 36)) { 65 * If base is 0, allow 0x for hex and 0 for octal, else 66 * assume decimal; if base is already 16, allow 0x. 80 if ((base == 0 || base == 16) && 84 base [all...] |
H A D | _wcstoul.h | 48 FUNCNAME(const wchar_t *nptr, wchar_t **endptr, int base) argument 56 if (base && (base < 2 || base > 36)) { 63 * If base is 0, allow 0x for hex and 0 for octal, else 64 * assume decimal; if base is already 16, allow 0x. 78 if ((base == 0 || base == 16) && 82 base = 16; 84 if (base [all...] |
/bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
H A D | lsearch.c | 44 lsearch(const void *key, void *base, size_t *nelp, size_t width, argument 48 return(linear_base(key, base, nelp, width, compar, 1)); 52 lfind(const void *key, const void *base, size_t *nelp, size_t width, argument 55 return(linear_base(key, base, nelp, width, compar, 0)); 59 linear_base(const void *key, const void *base, size_t *nelp, size_t width, argument 64 end = (const char *)base + *nelp * width; 65 for (element = base; element < end; element += width)
|
H A D | strtoimax.c | 42 strtoimax(const char *nptr, char **endptr, int base) argument 50 * Ensure that base is between 2 and 36 inclusive, or the special 53 if (base < 0 || base == 1 || base > 36) { 62 * If base is 0, allow 0x for hex and 0 for octal, else 63 * assume decimal; if base is already 16, allow 0x. 77 if ((base == 0 || base == 16) && 81 base [all...] |
H A D | strtol.c | 43 strtol(const char *nptr, char **endptr, int base) argument 51 * Ensure that base is between 2 and 36 inclusive, or the special 54 if (base < 0 || base == 1 || base > 36) { 63 * If base is 0, allow 0x for hex and 0 for octal, else 64 * assume decimal; if base is already 16, allow 0x. 78 if ((base == 0 || base == 16) && 82 base [all...] |
H A D | strtoll.c | 45 strtoll(const char *nptr, char **endptr, int base) argument 53 * Ensure that base is between 2 and 36 inclusive, or the special 56 if (base < 0 || base == 1 || base > 36) { 65 * If base is 0, allow 0x for hex and 0 for octal, else 66 * assume decimal; if base is already 16, allow 0x. 80 if ((base == 0 || base == 16) && 84 base [all...] |
H A D | strtoul.c | 43 strtoul(const char *nptr, char **endptr, int base) argument 53 if (base < 0 || base == 1 || base > 36) { 72 if ((base == 0 || base == 16) && 76 base = 16; 78 if (base == 0) 79 base = c == '0' ? 8 : 10; 81 cutoff = ULONG_MAX / (unsigned long)base; [all...] |
H A D | strtoull.c | 45 strtoull(const char *nptr, char **endptr, int base) argument 55 if (base < 0 || base == 1 || base > 36) { 74 if ((base == 0 || base == 16) && 78 base = 16; 80 if (base == 0) 81 base = c == '0' ? 8 : 10; 83 cutoff = ULLONG_MAX / (unsigned long long)base; [all...] |
H A D | strtoumax.c | 42 strtoumax(const char *nptr, char **endptr, int base) argument 52 if (base < 0 || base == 1 || base > 36) { 71 if ((base == 0 || base == 16) && 75 base = 16; 77 if (base == 0) 78 base = c == '0' ? 8 : 10; 80 cutoff = UINTMAX_MAX / (uintmax_t)base; [all...] |
/bionic/tools/versioner/current/ |
H A D | ftw.h | 53 int base; member in struct:FTW
|
/bionic/libc/upstream-openbsd/lib/libc/net/ |
H A D | inet_ntop.c | 105 struct { int base, len; } best, cur; member in struct:__anon1161 118 best.base = -1; 119 cur.base = -1; 122 if (cur.base == -1) 123 cur.base = i, cur.len = 1; 127 if (cur.base != -1) { 128 if (best.base == -1 || cur.len > best.len) 130 cur.base = -1; 134 if (cur.base != -1) { 135 if (best.base [all...] |
/bionic/tests/ |
H A D | sys_mman_test.cpp | 237 char* base = reinterpret_cast<char*>(mmap(nullptr, PAGE_SIZE * 2, PROT_EXEC | PROT_READ, local 240 __builtin___clear_cache(base, base + (PAGE_SIZE * 2));
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
H A D | fmemopen.c | 74 ssize_t base = 0; local 80 base = st->pos; 83 base = st->len; 87 if (off > st->size - base || off < -base) { 92 st->pos = base + off;
|
H A D | open_memstream.c | 79 ssize_t base = 0; local 85 base = st->pos; 88 base = st->len; 92 if (off > SIZE_MAX - base || off < -base) { 97 st->pos = base + off;
|
H A D | open_wmemstream.c | 83 ssize_t base = 0; local 89 base = st->pos; 92 base = st->len; 96 if (off > (SIZE_MAX / sizeof(wchar_t)) - base || off < -base) { 107 st->pos = base + off;
|
/bionic/tools/relocation_packer/src/ |
H A D | elf_file_unittest.cc | 66 const std::string base = std::string("elf_file_unittest_relocs_") + arch; local 67 const std::string relocs = base + ".so"; 68 const std::string packed_relocs = base + "_packed.so";
|
/bionic/libc/kernel/uapi/asm-x86/asm/ |
H A D | mtrr.h | 27 unsigned long base; member in struct:mtrr_sentry 33 unsigned long base; member in struct:mtrr_gentry 39 __u64 base; member in struct:mtrr_sentry 44 __u64 base; member in struct:mtrr_gentry
|
/bionic/libc/kernel/uapi/linux/ |
H A D | keyctl.h | 66 __s32 base; member in struct:keyctl_dh_params
|
H A D | phonet.h | 55 } base; member in union:phonetmsg::__anon727 66 #define pn_submsg_id pn_msg_u.base.pn_submsg_id 69 #define pn_data pn_msg_u.base.pn_data
|