Home
last modified time | relevance | path

Searched refs:to (Results 1 – 25 of 30) sorted by relevance

12

/bionic/libc/string/
Dstrcpy.c35 strcpy(char *to, const char *from) in strcpy() argument
37 char *save = to; in strcpy()
39 for (; (*to = *from) != '\0'; ++from, ++to); in strcpy()
/bionic/libc/upstream-freebsd/lib/libc/string/
Dwcpcpy.c41 wcpcpy(wchar_t * __restrict to, const wchar_t * __restrict from) in wcpcpy() argument
44 for (; (*to = *from); ++from, ++to); in wcpcpy()
45 return(to); in wcpcpy()
/bionic/libc/kernel/arch-mips/asm/
Duaccess.h77to, from, n) ({ register void __user *__cu_to_r __asm__("$4"); register const void *__cu_from… argument
79 …ne __copy_to_user(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_le… argument
80 …e __copy_to_user_inatomic(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long… argument
81 …__copy_from_user_inatomic(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long… argument
82 …fine copy_to_user(to, from, n) ({ void __user *__cu_to; const void *__cu_from; long __cu_le… argument
84to, from, n) ({ register void *__cu_to_r __asm__("$4"); register const void __user *__cu_from… argument
85to, from, n) ({ register void *__cu_to_r __asm__("$4"); register const void __user *__cu_from… argument
86 … __copy_from_user(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_le… argument
87 …ne copy_from_user(to, from, n) ({ void *__cu_to; const void __user *__cu_from; long __cu_le… argument
89 #define __copy_in_user(to, from, n) __copy_from_user(to, from, n) argument
[all …]
/bionic/libc/kernel/
DREADME.TXT8 and unmodified kernel headers in order to get rid of many annoying
24 'find_headers.py' to find these automatically).
38 similarly contains all headers and symlinks to be used on x86
41 to manage and re-generate the headers
60 'external/kernel-headers/original'. this is the script you're likely going to
67 add bionic/kernel/common and bionic/kernel/arch-<yourarch> to your C
75 see the content of tools/defaults.py, you will need to make a few updates
78 - add a new item to the 'kernel_archs' list of supported architectures
83 - update 'kernel_known_statics' to map "<arch>" to
86 then, add the new architecture-specific headers to original/asm-<arch>.
[all …]
/bionic/libc/
DCAVEATS1 Bionic is a very small C library because we have decided to *not* implement various features
5 this file is here to document explicitely what we don't want to support in Bionic:
7 - C++ exceptions are not supported. on embedded systems, they lead to extremely larger and
9 implemented, they enforce very large numbers of registers spills to the stack, even
23 the values corresponding to root. this will be fixed when we'll be able to have distinct
DNOTICE5 Permission to use, copy, modify, and distribute this
23 may be used to endorse or promote products derived from this software
43 Permission to use, copy, modify, and/or distribute this software for any
60 Permission to use, copy, modify, and/or distribute this software for any
194 Unless required by applicable law or agreed to in writing, software
242 3. The name of the company may not be used to endorse or promote
269 Unless required by applicable law or agreed to in writing, software
313 Unless required by applicable law or agreed to in writing, software
357 Unless required by applicable law or agreed to in writing, software
409 may be used to endorse or promote products derived from this software
[all …]
DSYSCALLS.TXT1 # This file is used to automatically generate bionic's the system calls stubs.
8 # - syscall_name corresponds to the name of the syscall, which may differ from
12 # been provided, allows the user to specify dispatch style syscalls.
16 # - each parameter type is assumed to be stored on 32 bits, there is no plan to support
45 # to have __NR_clone properly defined.
83 # see comments in arch-arm/bionic/kill.S to understand why we don't generate an ARM stub for kill/t…
104 # to match the kernel implementation.
258 # sockets for x86. These are done as an "indexed" call to socketcall syscall.
DAndroid.mk601 $(call transform-d-to-p-args,$(@:%.s=%.d),$(@:%.s=%.P))
616 $(transform-d-to-p)
625 $(transform-d-to-p)
646 $(transform-d-to-p)
661 $(transform-d-to-p)
678 $(transform-d-to-p)
/bionic/libc/kernel/common/linux/mtd/
Dmap.h100 #define map_copy_from(map, to, from, len) inline_map_copy_from(map, to, from, len) argument
102 #define map_copy_to(map, to, from, len) inline_map_copy_to(map, to, from, len) argument
Dmtd.h107 int (*write) (struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf);
111 int (*write_oob) (struct mtd_info *mtd, loff_t to,
121 …int (*writev) (struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size…
/bionic/libc/kernel/common/linux/netfilter/
Dxt_connbytes.h39 aligned_u64 to; member
/bionic/libc/tools/zoneinfo/
DZoneCompactor.java120 String to = st.nextToken(); in ZoneCompactor() local
122 links.put(from, to); in ZoneCompactor()
147 String to = links.get(from); in ZoneCompactor() local
149 starts.put(from, starts.get(to)); in ZoneCompactor()
150 lengths.put(from, lengths.get(to)); in ZoneCompactor()
151 offsets.put(from, offsets.get(to)); in ZoneCompactor()
/bionic/libc/kernel/arch-arm/asm/
Duaccess.h82 #define __copy_from_user(to,from,n) (memcpy(to, (void __force *)from, n), 0) argument
84 #define __copy_to_user(to,from,n) (memcpy((void __force *)to, from, n), 0) argument
/bionic/libc/upstream-freebsd/
DREADME.txt5 TODO: write a script to make this process automated.
/bionic/libc/arch-arm/bionic/
Dclone.S39 # 'child_stack' is already in r1, but we need to move 'flags' into position.
84 # save registers to parent stack
90 # store 'fn' and 'arg' to the child stack
/bionic/libc/arch-x86/bionic/
Dclone.S49 # we're the parent; nothing to do.
109 # we're the parent; nothing to do.
/bionic/libc/upstream-netbsd/
DREADME.txt9 TODO: write a script to make this process automated.
/bionic/libc/arch-mips/string/
Dmemcpy.S93 andi a3,a3,0x3 # we need to copy a3 bytes to make a0/a1 aligned
343 addiu a0,a0,64 # adding 64 to dest
346 addiu a1,a1,64 # adding 64 to src
349 # Here we have src and dest word-aligned but less than 64-bytes to go
401 # Now less than 4 bytes (value in a2) left to copy
Dmemset.S104 sh a1,0(a0) # store one halfword to get aligned
142 bnez a2,.Laligned # any work to do?
157 bne AT,zero,.Llast4 # if yes, go to last4
/bionic/libc/arch-x86/string/
Dswab.S25 testl $7,%ecx # copy first group of 1 to 7 words
/bionic/linker/
DAndroid.mk77 $(transform-o-to-static-executable)
/bionic/libc/private/
Dbionic_atomic_arm.h87 # error ANDROID_SMP should not be set to 1 for an ARM architecture less than 6
/bionic/libstdc++/
DNOTICE60 Permission to use, copy, modify, distribute and sell this software
72 Permission to use, copy, modify, distribute and sell this software
/bionic/libdl/
DNOTICE9 Unless required by applicable law or agreed to in writing, software
/bionic/libc/kernel/common/linux/
Dif_link.h205 __u32 to; member

12