Searched defs:base (Results 1 - 25 of 29) sorted by last modified time

12

/bionic/libc/bionic/
H A Dmalloc_debug_leak.cpp265 // 2. set the base pointer to be right after our header
272 void* base = dlmalloc(size); local
273 if (base != NULL) {
279 AllocationEntry* header = reinterpret_cast<AllocationEntry*>(base);
283 // now increment base to point to after our header.
285 base = reinterpret_cast<AllocationEntry*>(base) + 1;
288 return base;
377 void* base = leak_malloc(size); local
378 if (base !
[all...]
/bionic/libc/include/
H A Dftw.h52 int base; member in struct:FTW
/bionic/libc/inet/
H A Dinet_aton.c71 int base, n; local
85 val = 0; base = 10;
89 base = 16, c = *++cp;
91 base = 8;
95 val = (val * base) + (c - '0');
97 } else if (base == 16 && isascii(c) && isxdigit(c)) {
H A Dinet_ntop.c110 struct { int base, len; } best, cur; member in struct:__anon51
123 best.base = -1;
125 cur.base = -1;
129 if (cur.base == -1)
130 cur.base = i, cur.len = 1;
134 if (cur.base != -1) {
135 if (best.base == -1 || cur.len > best.len)
137 cur.base = -1;
141 if (cur.base != -1) {
142 if (best.base
[all...]
H A Dinet_pton.c109 u_int digit, base; local
127 val = 0; base = 10;
131 base = 16, c = *++src;
133 base = 8;
136 if (pton && base != 10)
141 if (digit >= base)
143 val = (val * base) + digit;
145 } else if (base == 16 && isxdigit(c)) {
/bionic/libc/kernel/arch-mips/asm/pci/
H A Dbridge.h666 bridge_t *base; member in struct:bridge_controller
/bionic/libc/kernel/arch-mips/asm/
H A Dsgiarcs.h132 ULONG base; member in struct:linux_mdesc
/bionic/libc/kernel/common/linux/
H A Dkd.h139 unsigned char diacr, base, result; member in struct:kbdiacr
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 Dvideodev.h197 void *base; member in struct:video_buffer
H A Dvideodev2.h500 void *base; member in struct:v4l2_framebuffer
/bionic/libc/netbsd/resolv/
H A Dres_cache.c351 XLOG_BYTES( const void* base, int len ) argument
356 p = _bprint_hexdump(p, end, base, len);
470 const uint8_t* base; member in struct:__anon648
478 packet->base = buff;
486 packet->cursor = packet->base;
605 const uint8_t* p = packet->base;
755 if (packet->base[2] & 0x1) {
856 hash = hash*FNV_MULT ^ (packet->base[2] & 1);
964 if ((pack1->base[2] & 1) != (pack2->base[
[all...]
/bionic/libc/stdio/
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";
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...]
/bionic/libc/stdlib/
H A Dbsearch.c41 * the base up one item past p: e.g., when lim is 5 we change base
52 const char *base = base0; local
57 p = base + (lim >> 1) * size;
60 base = (char *)p + size;
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 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 Dstrtoll.c46 strtoll(const char *nptr, char **endptr, int base) argument
48 return strtoimax(nptr, endptr, base);
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 Dstrtoull.c46 strtoull(const char *nptr, char **endptr, int base) argument
48 return (unsigned long long)strtoumax(nptr, endptr, base);
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...]
H A Dwchar.c290 long int wcstol(const wchar_t *nptr, wchar_t **endptr, int base) argument
292 return strtol( (const char*)nptr, (char**)endptr, base );
295 unsigned long int wcstoul(const wchar_t *nptr, wchar_t **endptr, int base) argument
297 return strtoul( (const char*)nptr, (char**)endptr, 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,

Completed in 169 milliseconds

12