Searched defs:to (Results 1 - 8 of 8) sorted by last modified time

/bionic/libc/arch-arm64/generic/bionic/
H A Dstrnlen.S12 names of its contributors may be used to endorse or promote products
62 /* Pre-pad to ensure critical loop begins an icache line. */
66 /* Put this code here to avoid wasting more space with pre-padding. */
79 lsr limit_wd, limit_wd, #4 /* Convert to Qwords. */
89 /* Start of critial section -- keep to one 64Byte cache line. */
103 /* End of critical section -- keep to one 64Byte cache line. */
109 to do now is work out the length of the string and return define
123 easiest way to get the correct byte is to byte-swap the data
133 add len, len, pos, lsr #3 /* Bits to byte
[all...]
/bionic/libc/kernel/uapi/linux/
H A Dif_link.h5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
252 __u32 to; member in struct:ifla_vlan_qos_mapping
H A Dperf_event.h5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
409 __u64 to; member in struct:perf_branch_entry
/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_connbytes.h5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
39 __aligned_u64 to; member in struct:xt_connbytes_info::__anon525
/bionic/libc/upstream-freebsd/lib/libc/string/
H A Dwcpcpy.c16 * may be used to endorse or promote products derived from this software
41 wcpcpy(wchar_t * __restrict to, const wchar_t * __restrict from) argument
44 for (; (*to = *from); ++from, ++to);
45 return(to);
/bionic/libc/upstream-netbsd/lib/libc/regex/
H A Dregcomp.c7 * This code is derived from software contributed to Berkeley by
19 * may be used to endorse or promote products derived from this software
40 * This code is derived from software contributed to Berkeley by
56 * may be used to endorse or promote products derived from this software
105 * parse structure, passed up and down to avoid global variables and
117 # define NPAREN 10 /* we need to remember () 1-9 for back refs */
144 static void repeat(struct parse *p, sopno start, int from, int to, size_t reclimit);
176 static char nuls[10]; /* place to point scanner in event of error */
565 * taken as an ordinary character and then revised to be an anchor. The
568 * The amount of lookahead needed to avoi
1132 repeat( struct parse *p, sopno start, int from, int to, size_t reclimit) argument
[all...]
/bionic/libc/upstream-openbsd/lib/libc/string/
H A Dstpcpy.c16 * may be used to endorse or promote products derived from this software
40 stpcpy(char *to, const char *from) argument
42 for (; (*to = *from) != '\0'; ++from, ++to);
43 return(to);
H A Dstrcpy.c16 * may be used to endorse or promote products derived from this software
40 strcpy(char *to, const char *from) argument
42 char *save = to;
44 for (; (*to = *from) != '\0'; ++from, ++to);

Completed in 367 milliseconds