Searched refs:end (Results 1 - 25 of 36) sorted by relevance

12

/bionic/libc/arch-mips/bionic/
H A Dcacheflush.cpp42 // 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 Dmemset.c34 char* end = q + n; local
37 if (q >= end) break; *q++ = (char) c;
38 if (q >= end) break; *q++ = (char) c;
39 if (q >= end) break; *q++ = (char) c;
40 if (q >= end) break; *q++ = (char) c;
H A Dmemchr.c34 const unsigned char* end = p + n; local
37 if (p >= end || p[0] == c) break; p++;
38 if (p >= end || p[0] == c) break; p++;
39 if (p >= end || p[0] == c) break; p++;
40 if (p >= end || p[0] == c) break; p++;
42 if (p >= end)
H A Ddebug_mapinfo.h37 uintptr_t end; member in struct:mapinfo_t
H A Ddebug_mapinfo.cpp42 uintptr_t end; local
45 &end, &name_pos) < 2) {
61 mi->end = end;
101 if ((pc >= mi->start) && (pc < mi->end)) {
H A Dstubs.cpp221 char* end; local
222 unsigned long userid = strtoul(name+1, &end, 10);
223 if (end[0] != '_' || end[1] == 0) {
229 if (end[1] == 'a' && isdigit(end[2])) {
230 // end will point to \0 if the strtoul below succeeds.
231 appid = strtoul(end+2, &end, 10) + AID_APP;
232 } else if (end[
[all...]
H A Dndk_cruft.cpp143 const unsigned char* end = p + n; local
148 while (p < end && isspace(*p)) {
152 if (p < end) {
161 if (p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) {
164 } else if (p+1 < end && p[0] == '0') {
171 if (p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) {
176 while (p < end && (d = digitval(*p)) >= 0 && d < base) {
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
H A Dlsearch.c62 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 Ddlm_plock.h50 __u64 end; member in struct:dlm_plock_info
/bionic/libc/dns/resolv/
H A Dres_cache.c174 * - end : the address of the buffer's limit, i.e. of the first byte
177 * IMPORTANT: it is assumed that end > buffer_address, i.e.
183 * - the returned value will never be strictly greater than 'end'
185 * - a return value equal to 'end' means that truncation occured
186 * (in which case, end[-1] will be set to 0)
192 * only check for truncation at the end of the sequence, as in:
194 * char buff[1000], *p = buff, *end = p + sizeof(buff);
196 * p = _bprint_c(p, end, '"');
197 * p = _bprint_s(p, end, my_string);
198 * p = _bprint_c(p, end, '"');
209 _bprint_c( char* p, char* end, int c ) argument
224 _bprint_b( char* p, char* end, const char* buf, int len ) argument
247 _bprint_s( char* p, char* end, const char* str ) argument
254 _bprint( char* p, char* end, const char* format, ... ) argument
282 _bprint_hex( char* p, char* end, unsigned value, int numDigits ) argument
295 _bprint_hexdump( char* p, char* end, const uint8_t* data, int datalen ) argument
337 char* p = buff, *end = p + sizeof(buff); local
454 const uint8_t* end; member in struct:__anon19
524 const uint8_t* end = packet->end; local
652 const uint8_t* end = packet->end; local
689 _dnsPacket_bprintQR(DnsPacket* packet, char* p, char* end) argument
766 const uint8_t* end = packet->end; local
780 const uint8_t* end = packet->end; local
1427 char temp[256], *p=temp, *end=p+sizeof(temp); local
1438 char temp[512], *p=temp, *end=p+sizeof(temp); local
[all...]
/bionic/libc/tools/
H A Dgenerate-NOTICE.py67 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/locale/
H A D_wcstod.h104 char *end; local
131 result = STRTOD_FUNC(buf, &end);
136 size = mbsnrtowcs(NULL, &s, end - buf, 0, &st);
/bionic/libc/kernel/uapi/sound/
H A Dsfnt_info.h97 int start, end; member in struct:soundfont_voice_info
140 int start, end; member in struct:soundfont_sample_info
/bionic/tests/
H A Ddirent_test.cpp33 ASSERT_TRUE(names.find(".") != names.end());
34 ASSERT_TRUE(names.find("..") != names.end());
35 ASSERT_TRUE(names.find("cmdline") != names.end());
36 ASSERT_TRUE(names.find("fd") != names.end());
37 ASSERT_TRUE(names.find("stat") != names.end());
71 std::sort(sorted_name_list.begin(), sorted_name_list.end());
145 // Reading to the end of the directory is not an error.
162 // Reading to the end of the directory is not an error.
180 // Reading to the end of the directory is not an error.
198 // Reading to the end o
[all...]
H A Dstack_protector_test.cpp54 ASSERT_TRUE(tids.find(tid) == tids.end());
/bionic/linker/arch/mips/
H A Dbegin.S104 .end __start
/bionic/libc/arch-x86/silvermont/string/
H A Dsse4-memcmp-slm.S407 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/linker/arch/mips64/
H A Dbegin.S124 .end __start
/bionic/benchmarks/
H A Dbenchmark_main.cpp198 for (BenchmarkMapIt it = g_benchmarks.begin(); it != g_benchmarks.end(); ++it) {
204 for (BenchmarkMapIt it = g_benchmarks.begin(); it != g_benchmarks.end(); ++it) {
219 for (BenchmarkMapIt it = g_benchmarks.begin(); it != g_benchmarks.end(); ++it) {
/bionic/libc/kernel/uapi/drm/
H A Dr128_drm.h225 int end; member in struct:drm_r128_indices
262 int end; member in struct:drm_r128_indirect
/bionic/libdl/
H A DAndroid.mk32 # against libc creating a circular dependency which is removed and we end up
/bionic/libc/upstream-netbsd/lib/libc/regex/
H A Dregcomp.c110 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/arch-mips/include/machine/
H A Dasm.h38 #define __bionic_asm_custom_end(f) .end f
/bionic/libc/arch-mips64/include/machine/
H A Dasm.h38 #define __bionic_asm_custom_end(f) .end f
/bionic/libc/dns/nameser/
H A Dns_name.c521 * 'lastdnptr' is a pointer to the end of the array pointed to
547 lpp = cpp; /* end of list to search */
656 * The list ends with NULL. 'lastdnptr' is a pointer to the end of the
1050 encode_bitsring(const char **bp, const char *end, unsigned char **labelp, argument
1064 if (end - cp < 2)
1073 for (tp = *dst + 1; cp < end && tp < eom; cp++) {
1075 case ']': /* end of the bitstring */
1120 if (cp >= end || tp >= eom)

Completed in 2609 milliseconds

12