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

1234567891011

/bionic/libc/string/
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)
/bionic/libc/kernel/common/linux/
H A Dcirc_buf.h30 #define CIRC_CNT_TO_END(head,tail,size) ({int end = (size) - (tail); int n = ((head) + end) & ((size)-1); n < end ? n : end;})
31 #define CIRC_SPACE_TO_END(head,tail,size) ({int end = (size) - 1 - (head); int n = (end + (tail)) & ((size)-1); n <= end ? n : end+1;})
/bionic/libc/arch-mips/bionic/
H A Dcacheflush.c44 * int cacheflush (long start, long end, long flags)
59 int cacheflush (long start, long end, long flags) argument
61 if (end < start) {
65 * end => nbytes
70 XLOG("called with (start,len) instead of (start,end)");
74 end += start;
82 * Modify "start" and "end" to avoid GCC 4.3.0-4.4.2 bug in
85 * "end" points to the last byte of the line before the last cache line.
87 * "end" to the last byte.
93 end
[all...]
H A D__get_sp.S39 .end __get_sp
H A Dbzero.S44 .end bzero
H A D_exit_with_stack_teardown.S51 .end _exit_with_stack_teardown
H A Datexit.S43 .end atexit
/bionic/libc/kernel/arch-mips/asm/
H A Dtlbflush.h25 #define flush_tlb_range(vma, vmaddr, end) local_flush_tlb_range(vma, vmaddr, end)
26 #define flush_tlb_kernel_range(vmaddr,end) local_flush_tlb_kernel_range(vmaddr, end)
/bionic/libc/unistd/
H A Dsbrk.c40 char* end; local
47 end = start + increment;
49 new_brk = __brk(end);
52 else if (new_brk < end)
/bionic/libc/stdlib/
H A Dstrntoumax.c52 const unsigned char* end = p + n; local
58 while (p < end && isspace(*p))
62 if (p < end) {
71 if ( p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X') ) {
74 } else if ( p+1 < end && p[0] == '0' ) {
81 if ( p+2 < end && p[0] == '0' && (p[1] == 'x' || p[1] == 'X') ) {
86 while ( p < end && (d = digitval(*p)) >= 0 && d < base ) {
/bionic/libc/kernel/arch-x86/asm/
H A Dcacheflush.h26 #define flush_cache_range(vma, start, end) do { } while (0)
32 #define flush_icache_range(start, end) do { } while (0)
36 #define flush_cache_vmap(start, end) do { } while (0)
37 #define flush_cache_vunmap(start, end) do { } while (0)
/bionic/libc/bionic/
H A Dfdprintf.c40 goto end;
44 end:
H A Dmalloc_debug_check_mapinfo.h37 unsigned end; member in struct:mapinfo
/bionic/libc/kernel/common/asm-generic/
H A Dpgtable.h94 #define pgd_addr_end(addr, end) ({ unsigned long __boundary = ((addr) + PGDIR_SIZE) & PGDIR_MASK; (__boundary - 1 < (end) - 1)? __boundary: (end); })
96 #define pud_addr_end(addr, end) ({ unsigned long __boundary = ((addr) + PUD_SIZE) & PUD_MASK; (__boundary - 1 < (end) - 1)? __boundary: (end); })
100 #define pmd_addr_end(addr, end) ({ unsigned long __boundary = ((addr) + PMD_SIZE) & PMD_MASK; (__boundary - 1 < (end) - 1)? __boundary: (end); })
H A D4level-fixup.h45 #define pud_addr_end(addr, end) (end)
H A Dpgtable-nopud.h44 #define pud_addr_end(addr, end) (end)
/bionic/libc/arch-mips/syscalls/
H A D__brk.S22 .end __brk
H A D__fcntl.S22 .end __fcntl
H A D__fcntl64.S22 .end __fcntl64
H A D__fork.S22 .end __fork
H A D__fstatfs64.S22 .end __fstatfs64
H A D__getcpu.S22 .end __getcpu
H A D__getcwd.S22 .end __getcwd
H A D__getpriority.S22 .end __getpriority

Completed in 539 milliseconds

1234567891011