Searched defs:end (Results 1 - 24 of 24) sorted by relevance

/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 Ddebug_mapinfo.h37 uintptr_t end; member in struct:mapinfo_t
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 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 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 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) {
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 Dlibc_logging.cpp161 char* end = buf + buf_size - 1; local
167 if (p != end) {
180 if (p != 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/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
H A Dbtrfs.h109 __u64 end; member in struct:btrfs_ioctl_scrub_args
H A Dfuse.h66 uint64_t end; member in struct:fuse_file_lock
/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)
/bionic/tests/
H A Dstring_test.cpp1014 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);
/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/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/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/kernel/uapi/drm/
H A Dmga_drm.h265 unsigned int end; member in struct:drm_mga_indices
H A Dr128_drm.h225 int end; member in struct:drm_r128_indices
262 int end; member in struct:drm_r128_indirect
H A Dradeon_drm.h605 int end; member in struct:drm_radeon_indices
650 int end; member in struct:drm_radeon_indirect
/bionic/linker/
H A Dlinker.cpp201 /* Stick the new library at the end of the list.
899 char* end = stpcpy(buffer, kDefaultLdPaths[0]); local
900 *end = ':';
901 strcpy(end + 1, kDefaultLdPaths[1]);
1457 int end = reverse ? -1 : count; local
1460 for (int i = begin; i != end; i += step) {
/bionic/libc/tzcode/
H A Dlocaltime.c477 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);
1451 ** Return the number of leap years through the end of the given year
/bionic/libc/upstream-dlmalloc/
H A Dmalloc.c1018 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
4115 /* Adjust to end on a page boundary */
4145 char* end local
4178 char* end = CMFAIL; local
5163 internal_inspect_all(mstate m, void(*handler)(void *start, void *end, size_t used_bytes, void* callback_arg), void* arg) argument
5350 dlmalloc_inspect_all(void(*handler)(void *start, void *end, size_t used_bytes, void* callback_arg), void* arg) argument
5880 mspace_inspect_all(mspace msp, void(*handler)(void *start, void *end, size_t used_bytes, void* callback_arg), void* arg) argument
[all...]

Completed in 1559 milliseconds