/bionic/libc/arch-mips/bionic/ |
D | cacheflush.cpp | 48 int cacheflush(long start, long end, long /*flags*/) { in cacheflush() argument 49 if (end < start) { in cacheflush() 56 end += start; in cacheflush() 61 __builtin___clear_cache(reinterpret_cast<char*>(start), reinterpret_cast<char*>(end)); in cacheflush()
|
/bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
D | lsearch.c | 62 const char *element, *end; in linear_base() local 64 end = (const char *)base + *nelp * width; in linear_base() 65 for (element = base; element < end; element += width) in linear_base() 82 memcpy((void *)end, key, width); in linear_base() 83 return((void *)end); in linear_base()
|
/bionic/libc/dns/resolv/ |
D | res_cache.c | 217 _bprint_c( char* p, char* end, int c ) in _bprint_c() argument 219 if (p < end) { in _bprint_c() 220 if (p+1 == end) in _bprint_c() 232 _bprint_b( char* p, char* end, const char* buf, int len ) in _bprint_b() argument 234 int avail = end - p; in _bprint_b() 245 if (p < end) in _bprint_b() 248 end[-1] = 0; in _bprint_b() 255 _bprint_s( char* p, char* end, const char* str ) in _bprint_s() argument 257 return _bprint_b(p, end, str, strlen(str)); in _bprint_s() 261 char* _bprint( char* p, char* end, const char* format, ... ) __DEBUG__; [all …]
|
/bionic/libc/bionic/ |
D | stubs.cpp | 206 char* end; in app_id_from_name() local 211 end = const_cast<char*>(name+3); in app_id_from_name() 215 userid = strtoul(name+1, &end, 10); in app_id_from_name() 221 if (end[0] != '_' || end[1] == 0) { in app_id_from_name() 227 if (end[1] == 'a' && isdigit(end[2])) { in app_id_from_name() 230 appid = strtoul(end+2, &end, 10) + AID_SHARED_GID_START; in app_id_from_name() 237 appid = strtoul(end+2, &end, 10) + AID_APP; in app_id_from_name() 239 } else if (end[1] == 'i' && isdigit(end[2])) { in app_id_from_name() 241 appid = strtoul(end+2, &end, 10) + AID_ISOLATED_START; in app_id_from_name() 244 if (!strcmp(android_ids[n].name, end + 1)) { in app_id_from_name() [all …]
|
D | debug_mapinfo.cpp | 49 uintptr_t end; in parse_maps_line() local 54 &end, permissions, &offset, &name_pos) < 2) { in parse_maps_line() 70 mi->end = end; in parse_maps_line() 117 if (addr < mi->start || addr + sizeof(T) > mi->end) { in get_val() 162 if ((pc >= mi->start) && (pc < mi->end)) { in mapinfo_find()
|
D | ndk_cruft.cpp | 148 const unsigned char* end = p + n; in strntoumax() local 153 while (p < end && isspace(*p)) { in strntoumax() 157 if (p < end) { in strntoumax() 166 if (p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) { in strntoumax() 169 } else if (p+1 < end && p[0] == '0') { in strntoumax() 176 if (p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) { in strntoumax() 181 while (p < end && (d = digitval(*p)) >= 0 && d < base) { in strntoumax()
|
D | debug_mapinfo.h | 37 uintptr_t end; member
|
/bionic/libc/tools/ |
D | generate-NOTICE.py | 67 end = i 70 while end > 0: 71 …if lines[end - 1] != " *" and lines[end - 1] != " * ==============================================… 73 end -= 1 77 for line in lines[start:end]:
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | open_memstream.c | 43 size_t i, end; in memstream_write() local 45 end = (st->pos + l); in memstream_write() 47 if (end >= st->size) { in memstream_write() 51 if (sz < end + 1) in memstream_write() 52 sz = end + 1; in memstream_write()
|
D | open_wmemstream.c | 45 size_t nmc, len, end; in wmemstream_write() local 47 end = (st->pos + l); in wmemstream_write() 49 if (end >= st->size) { in wmemstream_write() 53 if (sz < end + 1) in wmemstream_write() 54 sz = end + 1; in wmemstream_write()
|
/bionic/libc/upstream-openbsd/lib/libc/locale/ |
D | _wcstod.h | 104 char *end; in FUNCNAME() local 131 result = STRTOD_FUNC(buf, &end); in FUNCNAME() 136 size = mbsnrtowcs(NULL, &s, end - buf, 0, &st); in FUNCNAME()
|
/bionic/tools/relocation_packer/src/ |
D | packer.cc | 40 packed->insert(packed->end(), sleb128_packed.begin(), sleb128_packed.end()); in PackRelocations()
|
/bionic/libc/kernel/uapi/linux/ |
D | dlm_plock.h | 50 __u64 end; member
|
/bionic/libc/kernel/uapi/sound/ |
D | sfnt_info.h | 97 int start, end; member 140 int start, end; member
|
/bionic/tests/ |
D | dirent_test.cpp | 33 ASSERT_TRUE(names.find(".") != names.end()); in CheckProcSelf() 34 ASSERT_TRUE(names.find("..") != names.end()); in CheckProcSelf() 35 ASSERT_TRUE(names.find("cmdline") != names.end()); in CheckProcSelf() 36 ASSERT_TRUE(names.find("fd") != names.end()); in CheckProcSelf() 37 ASSERT_TRUE(names.find("stat") != names.end()); in CheckProcSelf() 71 std::sort(sorted_name_list.begin(), sorted_name_list.end()); in TEST()
|
D | stack_protector_test.cpp | 51 ASSERT_TRUE(tids.find(tid) == tids.end()); in Check()
|
D | setjmp_test.cpp | 91 size_t end = sizeof(sigset_t) * 8; in AssertSigmaskEquals() local 92 for (size_t i = 1; i <= end; ++i) { in AssertSigmaskEquals()
|
/bionic/libc/arch-x86/silvermont/string/ |
D | sse4-memcmp-slm.S | 407 jne L(end) 449 jne L(end) 452 jne L(end) 494 jne L(end) 496 jne L(end) 501 jne L(end) 567 jne L(end) 600 jne L(end) 603 jne L(end) 635 jne L(end) [all …]
|
/bionic/libdl/ |
D | libdl.map | 23 # end arm-only
|
/bionic/libc/kernel/uapi/drm/ |
D | r128_drm.h | 225 int end; member 262 int end; member
|
/bionic/linker/arch/mips/ |
D | begin.S | 104 .end __start
|
/bionic/linker/ |
D | linker_allocator.cpp | 170 page_records_.begin(), page_records_.end(), boundary); in find_page_record() 172 if (it == page_records_.end() || it->page_addr != addr) { in find_page_record() 187 page_records_.begin(), page_records_.end(), record); in create_page_record()
|
/bionic/linker/arch/mips64/ |
D | begin.S | 124 .end __start
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | regcomp.c | 110 const char *end; /* end of string (-> NUL normally) */ member 184 #define MORE() (p->next < p->end) 185 #define MORE2() (p->next+1 < p->end) 280 p->end = p->next + len; in regcomp() 771 if (p->next + 5 < p->end && strncmp(p->next, "[:<:]]", in p_bracket() 777 if (p->next + 5 < p->end && strncmp(p->next, "[:>:]]", in p_bracket() 1054 oldend = p->end; in bothcases() 1058 p->end = bracket+2; in bothcases() 1065 p->end = oldend; in bothcases() 1112 oldend = p->end; in nonnewline() [all …]
|
/bionic/libc/arch-mips/include/machine/ |
D | asm.h | 36 #define __bionic_asm_custom_end(f) .end f
|