Searched refs:from (Results 1 - 19 of 19) sorted by relevance

/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);
H A Dstrcpy.c16 * may be used to endorse or promote products derived from this software
40 strcpy(char *to, const char *from) argument
44 for (; (*to = *from) != '\0'; ++from, ++to);
/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);
/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_connbytes.h4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
37 __aligned_u64 from; member in struct:xt_connbytes_info::__anon549
/bionic/libdl/
H A DAndroid.mk9 # NOTE: --exclude-libs=libgcc.a makes sure that any symbols libdl.so pulls from
11 # a) pull symbols from libgcc.a and b) depend on libdl.so will not rely on libdl.so
12 # to provide those symbols, but will instead pull them from libgcc.a. Specifically,
13 # we use this property to make sure libc.so has its own copy of the code from
31 # NOTE: libdl needs __aeabi_unwind_cpp_pr0 from libgcc.a but libgcc.a needs a
32 # few symbols from libc. Using --no-undefined here results in having to link
35 # LOCAL_ALLOW_UNDEFINED_SYMBOLS to remove --no-undefined from the linker flags.
/bionic/libc/kernel/uapi/linux/
H A Dnbd.h4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
59 __be64 from; member in struct:nbd_request
H A Diso_fs.h4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
24 #define ISODCL(from,to) (to - from + 1)
H A Dif_link.h4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
269 __u32 from; member in struct:ifla_vlan_qos_mapping
H A Dperf_event.h4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
369 __u64 from; member in struct:perf_branch_entry
H A Dcdrom.h4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
171 unsigned from; member in struct:cdrom_blk
/bionic/libc/tools/zoneinfo/
H A DZoneCompactor.java21 // Use the 'zic' command-line tool to convert from flat files
72 String from = st.nextToken();
73 links.put(from, to);
92 String from = it.next();
93 String to = links.get(from);
95 offsets.put(from, offsets.get(to));
96 lengths.put(from, lengths.get(to));
/bionic/libc/arch-x86/bionic/
H A Dsyscall.S30 # Load all the arguments from the calling frame.
/bionic/libc/dns/resolv/
H A Dres_send.c21 * may be used to endorse or promote products derived from this software
1057 struct sockaddr_storage from; local
1158 fromlen = sizeof(from);
1160 (struct sockaddr *)(void *)&from, &fromlen);
1180 * response from old query, ignore it.
1194 !res_ourserver_p(statp, (struct sockaddr *)(void *)&from)) {
1196 * response from wrong server? ignore it.
1249 /* don't retry if called from dig */
/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
144 static void repeat(struct parse *p, sopno start, int from, int to, size_t reclimit);
628 pos = HERE(); /* repetion op, if any, covers from here */
1128 == static void repeat(struct parse *p, sopno start, int from, int to,
1134 sopno start, /* operand from here to end of strip */
1135 int from, /* repeated from thi
1132 repeat( struct parse *p, sopno start, int from, int to, size_t reclimit) argument
[all...]
/bionic/linker/
H A Dlinker_phdr.cpp105 constant offset from their p_vaddr value. This offset is computed as the
126 The load_bias must be added to any p_vaddr value read from the ELF file to
131 #define MAYBE_MAP_FLAG(x, from, to) (((x) & (from)) ? (to) : 0)
225 // Loads the program header table from an ELF file into a read-only private
553 * read-only from the program's POV, but contain absolute addresses
789 // loaded program header from it.
/bionic/libm/
H A DAndroid.mk215 # TODO: this comes from from upstream's libc, not libm, but it's an
/bionic/libc/
H A DAndroid.mk1354 # ensures that symbols that are pulled into those new libraries from libgcc.a are not declared
1355 # external; if that were the case, then libc would not pull those symbols from libgcc.a as it
1356 # should, instead relying on the external symbols from the dependent libraries. That would
1416 # Make sure that unwind.h comes from libunwind.
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dvfprintf.c6 * This code is derived from software contributed to Berkeley by
18 * may be used to endorse or promote products derived from this software
276 int ch; /* character from fmt */
282 int width; /* width from format (%8d), or 0 */
283 int prec; /* precision from format; <0 for N/A */
536 * They don't exclude field widths read from args.
1010 /* leading zeroes from decimal precision */
1138 int ch; /* character from fmt */
H A Dvfwprintf.c6 * This code is derived from software contributed to Berkeley by
18 * may be used to endorse or promote products derived from this software
282 wchar_t ch; /* character from fmt */
287 int width; /* width from format (%8d), or 0 */
288 int prec; /* precision from format; <0 for N/A */
512 * They don't exclude field widths read from args.
986 /* leading zeroes from decimal precision */
1122 int ch; /* character from fmt */

Completed in 1180 milliseconds