/bionic/libc/arch-mips/bionic/ |
H A D | cacheflush.cpp | 42 // int cacheflush (long start, long end, long flags) 48 int cacheflush(long start, long end, long /*flags*/) { argument 49 if (end < start) { 53 __libc_format_log(ANDROID_LOG_WARN, "libc", "cacheflush called with (start,len) instead of (start,end)"); 56 end += start; 61 __builtin___clear_cache(reinterpret_cast<char*>(start), reinterpret_cast<char*>(end));
|
/bionic/libc/bionic/ |
H A D | debug_mapinfo.h | 37 uintptr_t end; member in struct:mapinfo_t
|
H A D | debug_mapinfo.cpp | 49 uintptr_t end; local 54 &end, permissions, &offset, &name_pos) < 2) { 70 mi->end = end; 117 if (addr < mi->start || addr + sizeof(T) > mi->end) { 162 if ((pc >= mi->start) && (pc < mi->end)) {
|
H A D | stubs.cpp | 206 char* end; local 211 end = const_cast<char*>(name+3); 215 userid = strtoul(name+1, &end, 10); 221 if (end[0] != '_' || end[1] == 0) { 227 if (end[1] == 'a' && isdigit(end[2])) { 229 // end will point to \0 if the strtoul below succeeds. 230 appid = strtoul(end+2, &end, 1 [all...] |
H A D | libc_logging.cpp | 164 char* end = buf + buf_size - 1; local 170 if (p != end) { 183 if (p != end) {
|
H A D | ndk_cruft.cpp | 148 const unsigned char* end = p + n; local 153 while (p < end && isspace(*p)) { 157 if (p < end) { 166 if (p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) { 169 } else if (p+1 < end && p[0] == '0') { 176 if (p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) { 181 while (p < end && (d = digitval(*p)) >= 0 && d < base) {
|
/bionic/libc/upstream-openbsd/lib/libc/locale/ |
H A D | _wcstod.h | 104 char *end; local 131 result = STRTOD_FUNC(buf, &end); 136 size = mbsnrtowcs(NULL, &s, end - buf, 0, &st);
|
/bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
H A D | lsearch.c | 62 const char *element, *end; local 64 end = (const char *)base + *nelp * width; 65 for (element = base; element < end; element += width) 82 memcpy((void *)end, key, width); 83 return((void *)end);
|
/bionic/libc/kernel/uapi/linux/ |
H A D | dlm_plock.h | 50 __u64 end; member in struct:dlm_plock_info
|
H A D | btrfs.h | 110 __u64 end; member in struct:btrfs_ioctl_scrub_args
|
H A D | fuse.h | 66 uint64_t end; member in struct:fuse_file_lock
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
H A D | open_memstream.c | 43 size_t i, end; local 45 end = (st->pos + l); 47 if (end >= st->size) { 51 if (sz < end + 1) 52 sz = end + 1;
|
H A D | open_wmemstream.c | 45 size_t nmc, len, end; local 47 end = (st->pos + l); 49 if (end >= st->size) { 53 if (sz < end + 1) 54 sz = end + 1;
|
/bionic/tests/ |
H A D | setjmp_test.cpp | 91 size_t end = sizeof(sigset_t) * 8; local 92 for (size_t i = 1; i <= end; ++i) {
|
H A D | string_test.cpp | 1014 size_t end = start + random() % (state.MAX_LEN - start); local 1017 memset(state.ptr2 + start, '\0', end - start); 1018 memcpy(state.ptr2 + end, state.ptr1 + end, state.MAX_LEN - end); 1020 bzero(state.ptr1 + start, end - start);
|
H A D | gtest_main.cpp | 255 char* end = p; local 264 *end = '\0'; 265 if (*(end - 1) == '.') { 266 *(end - 1) = '\0'; 707 break; // Read end. 801 while (it != child_proc_list.end()) {
|
/bionic/libc/dns/nameser/ |
H A D | ns_name.c | 515 * 'lastdnptr' is a pointer to the end of the array pointed to 541 lpp = cpp; /* end of list to search */ 650 * The list ends with NULL. 'lastdnptr' is a pointer to the end of the 1044 encode_bitsring(const char **bp, const char *end, unsigned char **labelp, argument 1058 if (end - cp < 2) 1067 for (tp = *dst + 1; cp < end && tp < eom; cp++) { 1069 case ']': /* end of the bitstring */ 1114 if (cp >= end || tp >= eom)
|
/bionic/libc/kernel/uapi/sound/ |
H A D | sfnt_info.h | 97 int start, end; member in struct:soundfont_voice_info 140 int start, end; member in struct:soundfont_sample_info
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
H A D | regcomp.c | 110 const char *end; /* end of string (-> NUL normally) */ local 174 /* ========= end header generated by ./mkh ========= */ 184 #define MORE() (p->next < p->end) 185 #define MORE2() (p->next+1 < p->end) 280 p->end = p->next + len; 343 int stop, /* character this ERE should end at */ 382 if (!first) { /* tail-end fixups */ 771 if (p->next + 5 < p->end && strncmp(p->next, "[:<:]]", 777 if (p->next + 5 < p->end [all...] |
/bionic/libc/dns/resolv/ |
H A D | res_cache.c | 182 * - end : the address of the buffer's limit, i.e. of the first byte 185 * IMPORTANT: it is assumed that end > buffer_address, i.e. 191 * - the returned value will never be strictly greater than 'end' 193 * - a return value equal to 'end' means that truncation occured 194 * (in which case, end[-1] will be set to 0) 200 * only check for truncation at the end of the sequence, as in: 202 * char buff[1000], *p = buff, *end = p + sizeof(buff); 204 * p = _bprint_c(p, end, '"'); 205 * p = _bprint_s(p, end, my_string); 206 * p = _bprint_c(p, end, '"'); 217 _bprint_c( char* p, char* end, int c ) argument 232 _bprint_b( char* p, char* end, const char* buf, int len ) argument 255 _bprint_s( char* p, char* end, const char* str ) argument 262 _bprint( char* p, char* end, const char* format, ... ) argument 290 _bprint_hex( char* p, char* end, unsigned value, int numDigits ) argument 303 _bprint_hexdump( char* p, char* end, const uint8_t* data, int datalen ) argument 346 char* p = buff, *end = p + sizeof(buff); local 459 const uint8_t* end; member in struct:__anon16 529 const uint8_t* end = packet->end; local 657 const uint8_t* end = packet->end; local 694 _dnsPacket_bprintQR(DnsPacket* packet, char* p, char* end) argument 771 const uint8_t* end = packet->end; local 785 const uint8_t* end = packet->end; local 1432 char temp[256], *p=temp, *end=p+sizeof(temp); local 1443 char temp[512], *p=temp, *end=p+sizeof(temp); local [all...] |
/bionic/libc/kernel/uapi/drm/ |
H A D | mga_drm.h | 265 unsigned int end; member in struct:drm_mga_indices
|
H A D | r128_drm.h | 225 int end; member in struct:drm_r128_indices 262 int end; member in struct:drm_r128_indirect
|
H A D | radeon_drm.h | 609 int end; member in struct:drm_radeon_indices 654 int end; member in struct:drm_radeon_indirect
|
/bionic/libc/tzcode/ |
H A D | localtime.c | 477 sp->chars[i] = '\0'; /* ensure '\0' at end */ 999 struct rule end; local 1010 if ((name = getrule(name, &end)) == NULL) 1032 endtime = transtime(year, &end, dstoffset); 1452 ** Return the number of leap years through the end of the given year
|
/bionic/libc/upstream-dlmalloc/ |
H A D | malloc.c | 1018 void *end, 1026 address, and continues up to but not including the end address. The 1036 void count_chunks(void* start, void* end, size_t used, void* arg) { 1206 to sbrk) if there is unused memory at the `high' end of the malloc 1419 } /* end of extern "C" */ 2060 each chunk and at the end. This makes consolidating fragmented 2163 the one bordering the end of available memory). It is treated 2726 TOP_FOOT_SIZE is padding at the end of a segment, including space 4117 /* Adjust to end on a page boundary */ 4147 char* end local 4180 char* end = CMFAIL; local 5165 internal_inspect_all(mstate m, void(*handler)(void *start, void *end, size_t used_bytes, void* callback_arg), void* arg) argument 5352 dlmalloc_inspect_all(void(*handler)(void *start, void *end, size_t used_bytes, void* callback_arg), void* arg) argument 5882 mspace_inspect_all(mspace msp, void(*handler)(void *start, void *end, size_t used_bytes, void* callback_arg), void* arg) argument [all...] |