Searched defs:base (Results 1 - 25 of 32) sorted by relevance

12

/bionic/libc/stdlib/
H A Dstrtoll.c46 strtoll(const char *nptr, char **endptr, int base) argument
48 return strtoimax(nptr, endptr, base);
H A Dstrtoull.c46 strtoull(const char *nptr, char **endptr, int base) argument
48 return (unsigned long long)strtoumax(nptr, endptr, base);
H A Dstrtoimax.c43 strtoimax(const char *nptr, char **endptr, int base) argument
52 * If base is 0, allow 0x for hex and 0 for octal, else
53 * assume decimal; if base is already 16, allow 0x.
67 if ((base == 0 || base == 16) &&
71 base = 16;
73 if (base == 0)
74 base = c == '0' ? 8 : 10;
79 * base. An input number that is greater than this value, if
84 * [-9223372036854775808..9223372036854775807] and the input base
[all...]
H A Dstrtol.c44 strtol(const char *nptr, char **endptr, int base) argument
53 * If base is 0, allow 0x for hex and 0 for octal, else
54 * assume decimal; if base is already 16, allow 0x.
68 if ((base == 0 || base == 16) &&
72 base = 16;
74 if (base == 0)
75 base = c == '0' ? 8 : 10;
80 * base. An input number that is greater than this value, if
85 * [-2147483648..2147483647] and the input base i
[all...]
H A Dstrtoul.c43 strtoul(const char *nptr, char **endptr, int base) argument
65 if ((base == 0 || base == 16) &&
69 base = 16;
71 if (base == 0)
72 base = c == '0' ? 8 : 10;
74 cutoff = ULONG_MAX / (unsigned long)base;
75 cutlim = ULONG_MAX % (unsigned long)base;
83 if (c >= base)
93 acc *= (unsigned long)base;
[all...]
H A Dstrtoumax.c43 strtoumax(const char *nptr, char **endptr, int base) argument
65 if ((base == 0 || base == 16) &&
69 base = 16;
71 if (base == 0)
72 base = c == '0' ? 8 : 10;
80 switch (base) {
85 cutoff = UINTMAX_MAX / base;
86 cutlim = UINTMAX_MAX % base;
96 if (c >= base)
[all...]
/bionic/libc/bionic/
H A Dstrntoimax.c31 intmax_t strntoimax(const char *nptr, char **endptr, int base, size_t n) argument
33 return (intmax_t) strntoumax(nptr, endptr, base, n);
H A Dstrntoumax.c49 strntoumax(const char *nptr, char **endptr, int base, size_t n) argument
70 if ( base == 0 ) {
73 base = 16;
76 base = 8;
78 base = 10;
80 } else if ( base == 16 ) {
86 while ( p < end && (d = digitval(*p)) >= 0 && d < base ) {
87 v = v*base + d;
H A Dmalloc_debug_leak.cpp270 // 2. set the base pointer to be right after our header
277 void* base = dlmalloc(size); local
278 if (base != NULL) {
284 AllocationEntry* header = reinterpret_cast<AllocationEntry*>(base);
288 // now increment base to point to after our header.
290 base = reinterpret_cast<AllocationEntry*>(base) + 1;
293 return base;
390 void* base = leak_malloc(size); local
391 if (base !
[all...]
H A Dmalloc_debug_check.cpp77 void* base; // Always points to the memory allocated using dlmalloc. member in struct:hdr_t
321 dlfree(gone->base);
330 hdr->base = hdr;
356 void* base = dlmalloc(sizeof(hdr_t) + size + sizeof(ftr_t)); local
357 if (base != NULL) {
360 uintptr_t ptr = reinterpret_cast<uintptr_t>(user(reinterpret_cast<hdr_t*>(base)));
367 hdr->base = base;
372 return base;
458 if (hdr->base !
[all...]
H A Dwchar.cpp252 long int wcstol(const wchar_t* nptr, wchar_t** endptr, int base) { argument
253 return strtol(reinterpret_cast<const char*>(nptr), reinterpret_cast<char**>(endptr), base);
256 unsigned long int wcstoul(const wchar_t* nptr, wchar_t** endptr, int base) { argument
257 return strtoul(reinterpret_cast<const char*>(nptr), reinterpret_cast<char**>(endptr), base);
H A Dlibc_logging.cpp48 // Must be kept in sync with frameworks/base/core/java/android/util/EventLog.java.
152 // Writes number 'value' in base 'base' into buffer 'buf' of size 'buf_size' bytes.
154 static void format_unsigned(char* buf, size_t buf_size, uint64_t value, int base, bool caps) { argument
160 unsigned d = value % base;
161 value /= base;
193 int base = 10; local
195 base = 16;
197 base = 8;
207 format_unsigned(buf, buf_size, value, base, cap
[all...]
/bionic/libc/upstream-netbsd/libc/stdlib/
H A Dbsearch.c54 * 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/include/
H A Dftw.h52 int base; member in struct:FTW
/bionic/libc/kernel/common/linux/
H A Dtimer.h32 struct tvec_t_base_s *base; member in struct:timer_list
35 #define TIMER_INITIALIZER(_function, _expires, _data) { .function = (_function), .expires = (_expires), .data = (_data), .base = &boot_tvec_bases, }
H A Dkd.h139 unsigned char diacr, base, result; member in struct:kbdiacr
H A Dvideodev.h197 void *base; member in struct:video_buffer
/bionic/libc/upstream-netbsd/common/lib/libc/inet/
H A Dinet_addr.c128 int base; local
144 val = 0; base = 10; digit = 0;
148 base = 16, c = *++cp;
150 base = 8;
156 if (base == 8 && (c == '8' || c == '9'))
158 val = (val * base) + (c - '0');
161 } else if (base == 16 && isascii(c) &&
/bionic/libc/upstream-netbsd/libc/inet/
H A Dinet_ntop.c135 struct { int base, len; } best, cur; member in struct:__anon673
151 best.base = -1;
153 cur.base = -1;
157 if (cur.base == -1)
158 cur.base = i, cur.len = 1;
162 if (cur.base != -1) {
163 if (best.base == -1 || cur.len > best.len)
165 cur.base = -1;
169 if (cur.base != -1) {
170 if (best.base
[all...]
H A Dinet_pton.c103 u_int digit, base; local
121 val = 0; base = 10;
125 base = 16, c = *++src;
127 base = 8;
130 if (pton && base != 10)
135 if (digit >= base)
137 val = (val * base) + digit;
139 } else if (base == 16 && isxdigit(c)) {
/bionic/tests/
H A Dbenchmark_main.cpp35 int base = 1; local
36 while (base*10 < n) {
37 base *= 10;
39 if (n < 2*base) {
40 return 2*base;
42 if (n < 5*base) {
43 return 5*base;
45 return 10*base;
/bionic/libc/stdio/
H A Dvfscanf.c112 int base; /* base argument to strtoimax/strtouimax */ local
125 base = 0; /* XXX just to keep gcc happy */
216 base = 10;
221 base = 0;
230 base = 8;
236 base = 10;
244 base = 16;
276 base = 16;
311 base
[all...]
H A Dvfprintf.c196 enum { OCT, DEC, HEX } base;/* base for [diouxX] conversion */ local
491 base = DEC;
590 base = OCT;
602 base = HEX;
633 base = DEC;
641 base = HEX;
668 switch (base) {
696 cp = "bug in vfprintf: bad base";
/bionic/libc/tzcode/
H A Dstrftime.c464 int base; local
470 base = TM_YEAR_BASE;
478 len = isleap_sum(year, base) ?
497 ++base;
506 --base;
507 yday += isleap_sum(year, base) ?
528 pt = _yconv(year, base, 0, 1,
530 } else pt = _yconv(year, base, 1, 1,
/bionic/linker/
H A Dlinker.h106 Elf32_Addr base; member in struct:soinfo

Completed in 4279 milliseconds

12