Searched refs:dst (Results 1 - 25 of 626) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/cris/lib/
H A Dstring.c6 /*# PARAMETERS: void* dst; Destination address. */
10 /*# RETURNS: dst. */
12 /*# DESCRIPTION: Copies len bytes of memory from src to dst. No guarantees */
26 /*# 950216 HP N==0 forgotten if non-aligned src/dst. */
28 /*# 001025 HP Make src and dst char *. Align dst to */
29 /*# dword, not just word-if-both-src-and-dst- */
48 register char *dst __asm__ ("r13") = pdst;
53 /* When src is aligned but not dst, this makes a few extra needless
56 if (((unsigned long) dst
[all...]
H A Dmemset.c6 /*# PARAMETERS: void* dst; Destination address. */
10 /*# RETURNS: dst. */
12 /*# DESCRIPTION: Sets the memory dst of length len bytes to c, as standard. */
68 register char *dst __asm__ ("r13") = pdst;
77 if ((unsigned long)dst & 1)
79 *dst = (char) lc;
81 dst++;
84 if ((unsigned long)dst & 2)
86 *(short *)dst = lc;
88 dst
[all...]
H A Dusercopy.c37 register char *dst __asm__ ("r13") = pdst;
43 /* When src is aligned but not dst, this makes a few extra needless
46 if (((unsigned long) dst & 3) != 0
51 if ((unsigned long) dst & 1)
53 __asm_copy_to_user_1 (dst, src, retn);
57 if ((unsigned long) dst & 2)
59 __asm_copy_to_user_2 (dst, src, retn);
96 ;; r13 - dst
142 /* Outputs */ : "=r" (dst), "=r" (src), "=r" (n), "=r" (retn)
143 /* Inputs */ : "0" (dst), "
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-parisc/
H A Delf.h75 #define ELF_CORE_COPY_REGS(dst, pt) \
76 memset(dst, 0, sizeof(dst)); /* don't leak any "random" bits */ \
77 memcpy(dst + 0, pt->gr, 32 * sizeof(elf_greg_t)); \
78 memcpy(dst + 32, pt->sr, 8 * sizeof(elf_greg_t)); \
79 memcpy(dst + 40, pt->iaoq, 2 * sizeof(elf_greg_t)); \
80 memcpy(dst + 42, pt->iasq, 2 * sizeof(elf_greg_t)); \
81 dst[44] = pt->sar; dst[45] = pt->iir; \
82 dst[4
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-parisc/
H A Delf.h75 #define ELF_CORE_COPY_REGS(dst, pt) \
76 memset(dst, 0, sizeof(dst)); /* don't leak any "random" bits */ \
77 memcpy(dst + 0, pt->gr, 32 * sizeof(elf_greg_t)); \
78 memcpy(dst + 32, pt->sr, 8 * sizeof(elf_greg_t)); \
79 memcpy(dst + 40, pt->iaoq, 2 * sizeof(elf_greg_t)); \
80 memcpy(dst + 42, pt->iasq, 2 * sizeof(elf_greg_t)); \
81 dst[44] = pt->sar; dst[45] = pt->iir; \
82 dst[4
[all...]
/asus-wl-520gu-7.0.1.45/src/router/busybox/libbb/
H A Dsafe_strncpy.c34 extern char * safe_strncpy(char *dst, const char *src, size_t size) argument
36 dst[size-1] = '\0';
37 return strncpy(dst, src, size-1);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/lib/
H A Dold-checksum.c12 unsigned int csum_partial_copy_from_user (const char *src, char *dst, argument
18 missing = copy_from_user(dst, src, len);
20 memset(dst + len - missing, 0, missing);
24 return csum_partial(dst, len, sum);
27 unsigned int csum_partial_copy_nocheck(const char *src, char *dst, int len, unsigned int sum) argument
29 memcpy(dst,src,len);
30 return csum_partial(dst,len,sum);
H A Dio.c5 void *memcpy_toio(void *dst,const void*src,unsigned len) argument
7 return __inline_memcpy(__io_virt(dst),src,len);
10 void *memcpy_fromio(void *dst,const void*src,unsigned len) argument
12 return __inline_memcpy(dst,__io_virt(src),len);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/net/
H A Ddst.h2 * net/dst.h Protocol independent destination cache definitions.
91 static inline void dst_hold(struct dst_entry * dst) argument
93 atomic_inc(&dst->__refcnt);
97 struct dst_entry * dst_clone(struct dst_entry * dst) argument
99 if (dst)
100 atomic_inc(&dst->__refcnt);
101 return dst;
105 void dst_release(struct dst_entry * dst) argument
107 if (dst)
108 atomic_dec(&dst
116 dst_free(struct dst_entry * dst) argument
127 dst_confirm(struct dst_entry *dst) argument
135 struct dst_entry * dst = *dst_p; local
142 struct dst_entry * dst = skb->dst; local
147 dst_set_expires(struct dst_entry *dst, int timeout) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/net/
H A Ddst.h2 * net/dst.h Protocol independent destination cache definitions.
91 static inline void dst_hold(struct dst_entry * dst) argument
93 atomic_inc(&dst->__refcnt);
97 struct dst_entry * dst_clone(struct dst_entry * dst) argument
99 if (dst)
100 atomic_inc(&dst->__refcnt);
101 return dst;
105 void dst_release(struct dst_entry * dst) argument
107 if (dst)
108 atomic_dec(&dst
116 dst_free(struct dst_entry * dst) argument
127 dst_confirm(struct dst_entry *dst) argument
135 struct dst_entry * dst = *dst_p; local
142 struct dst_entry * dst = skb->dst; local
147 dst_set_expires(struct dst_entry *dst, int timeout) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/parisc/kernel/
H A Dbinfmt_elf32.c65 #define ELF_CORE_COPY_REGS(dst, pt) \
66 memset(dst, 0, sizeof(dst)); /* don't leak any "random" bits */ \
68 for (i = 0; i < 32; i++) dst[i] = (elf_greg_t) pt->gr[i]; \
69 for (i = 0; i < 8; i++) dst[32 + i] = (elf_greg_t) pt->sr[i]; \
71 dst[40] = (elf_greg_t) pt->iaoq[0]; dst[41] = (elf_greg_t) pt->iaoq[1]; \
72 dst[42] = (elf_greg_t) pt->iasq[0]; dst[43] = (elf_greg_t) pt->iasq[1]; \
73 dst[4
[all...]
/asus-wl-520gu-7.0.1.45/src/router/rcamdmips/
H A Dccvt_c.c36 static void ccvt_420i(int width, int height, unsigned char *src, unsigned char *dst, int push) argument
68 *dst++ = r;
69 *dst++ = g;
70 *dst++ = b;
74 *dst++ = b;
75 *dst++ = g;
76 *dst++ = r;
80 *dst++ = r;
81 *dst++ = g;
82 *dst
126 ccvt_420i_rgb24(int width, int height, void *src, void *dst) argument
131 ccvt_420i_bgr24(int width, int height, void *src, void *dst) argument
136 ccvt_420i_rgb32(int width, int height, void *src, void *dst) argument
141 ccvt_420i_bgr32(int width, int height, void *src, void *dst) argument
149 ccvt_420p(int width, int height, unsigned char *src, unsigned char *srcu, unsigned char *srcv, unsigned char *dst, int push) argument
226 ccvt_420p_rgb24(int width, int height, void *src, void *srcu, void *srcv, void *dst) argument
232 ccvt_420p_bgr24(int width, int height, void *src, void *srcu, void *srcv, void *dst) argument
238 ccvt_420p_rgb32(int width, int height, void *src, void *srcu, void *srcv, void *dst) argument
244 ccvt_420p_bgr32(int width, int height, void *src, void *srcu, void *srcv, void *dst) argument
254 ccvt_yuyv(int width, int height, unsigned char *src, unsigned char *dst, int push) argument
327 ccvt_yuyv_rgb24(int width, int height, void *src, void *dst) argument
332 ccvt_yuyv_bgr24(int width, int height, void *src, void *dst) argument
337 ccvt_yuyv_rgb32(int width, int height, void *src, void *dst) argument
342 ccvt_yuyv_bgr32(int width, int height, void *src, void *dst) argument
369 ccvt_420i_yuyv(int width, int height, void *src, void *dst) argument
[all...]
H A Dccvt.h62 void ccvt_420i_bgr24(int width, int height, void *src, void *dst);
63 void ccvt_420i_rgb24(int width, int height, void *src, void *dst);
64 void ccvt_420i_bgr32(int width, int height, void *src, void *dst);
65 void ccvt_420i_rgb32(int width, int height, void *src, void *dst);
68 void ccvt_420p_bgr24(int width, int height, void *src, void *srcu, void *srcv, void *dst);
69 void ccvt_420p_rgb24(int width, int height, void *src, void *srcu, void *srcv, void *dst);
70 void ccvt_420p_bgr32(int width, int height, void *src, void *srcu, void *srcv, void *dst);
71 void ccvt_420p_rgb32(int width, int height, void *src, void *srcu, void *srcv, void *dst);
74 void ccvt_yuyv_rgb32(int width, int height, void *src, void *dst);
75 void ccvt_yuyv_bgr32(int width, int height, void *src, void *dst);
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/lib/
H A Dcsum_partial_copy.c26 unsigned int csum_partial_copy(const char *src, char *dst, argument
34 memcpy(dst, src, len);
43 unsigned int csum_partial_copy_from_user (const char *src, char *dst, argument
49 missing = copy_from_user(dst, src, len);
51 memset(dst + len - missing, 0, missing);
55 return csum_partial(dst, len, sum);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips64/lib/
H A Dcsum_partial_copy.c19 unsigned int csum_partial_copy(const char *src, char *dst, argument
27 memcpy(dst, src, len);
36 unsigned int csum_partial_copy_from_user (const char *src, char *dst, argument
42 missing = copy_from_user(dst, src, len);
44 memset(dst + len - missing, 0, missing);
48 return csum_partial(dst, len, sum);
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/core/
H A Ddst.c2 * net/dst.c Protocol independent destination cache.
19 #include <net/dst.h>
47 struct dst_entry * dst, **dstp; local
57 while ((dst = *dstp) != NULL) {
58 if (atomic_read(&dst->__refcnt)) {
59 dstp = &dst->next;
63 *dstp = dst->next;
64 dst_destroy(dst);
98 struct dst_entry * dst; local
104 dst
119 __dst_free(struct dst_entry * dst) argument
144 dst_destroy(struct dst_entry * dst) argument
173 struct dst_entry *dst; local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/lib/uuid/
H A Dcopy.c37 void uuid_copy(uuid_t dst, const uuid_t src) argument
43 for (i=0, cp1 = dst, cp2 = src; i < 16; i++)
/asus-wl-520gu-7.0.1.45/src/router/library/uuid/
H A Dcopy.c14 void uuid_copy(uuid_t dst, const uuid_t src) argument
20 for (i=0, cp1 = dst, cp2 = src; i < 16; i++)
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/parisc/lib/
H A Dio.c54 /* first compare alignment of src/dst */
125 void insb (unsigned long port, void *dst, unsigned long count) argument
127 while (((unsigned long)dst) & 0x3) {
131 *(unsigned char *) dst = inb(port);
132 ((unsigned char *) dst)++;
142 *(unsigned int *) dst = w;
143 ((unsigned int *) dst)++;
148 *(unsigned char *) dst = inb(port);
149 ((unsigned char *) dst)++;
161 void insw (unsigned long port, void *dst, unsigne argument
230 insl(unsigned long port, void *dst, unsigned long count) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390x/
H A Dchecksum.h54 * here even more important to align src and dst on a 32-bit (or even
59 csum_partial_copy(const char *src, char *dst, int len,unsigned int sum) argument
61 memcpy(dst,src,len);
62 return csum_partial_inline(dst, len, sum);
68 * here even more important to align src and dst on a 32-bit (or even
75 csum_partial_copy_from_user (const char *src, char *dst, argument
81 missing = copy_from_user(dst, src, len);
83 memset(dst + len - missing, 0, missing);
87 return csum_partial(dst, len, sum);
91 csum_partial_copy_nocheck (const char *src, char *dst, in argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390x/
H A Dchecksum.h54 * here even more important to align src and dst on a 32-bit (or even
59 csum_partial_copy(const char *src, char *dst, int len,unsigned int sum) argument
61 memcpy(dst,src,len);
62 return csum_partial_inline(dst, len, sum);
68 * here even more important to align src and dst on a 32-bit (or even
75 csum_partial_copy_from_user (const char *src, char *dst, argument
81 missing = copy_from_user(dst, src, len);
83 memset(dst + len - missing, 0, missing);
87 return csum_partial(dst, len, sum);
91 csum_partial_copy_nocheck (const char *src, char *dst, in argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/libusb/
H A Dinstall-sh71 dst=
173 dst=$src
176 if test -d "$dst"; then
196 dst=$dstarg
198 case $dst in
199 -*) dst=./$dst ;;
204 if test -d "$dst"; then
205 dst=$dst/`basenam
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/m68k/lib/
H A Dchecksum.c135 csum_partial_copy_from_user(const char *src, char *dst, int len, argument
312 : "=d" (sum), "=d" (len), "=a" (src), "=a" (dst),
314 : "0" (sum), "1" (len), "2" (src), "3" (dst)
327 csum_partial_copy(const char *src, char *dst, int len, int sum) argument
415 : "=d" (sum), "=d" (len), "=a" (src), "=a" (dst),
417 : "0" (sum), "1" (len), "2" (src), "3" (dst)
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/alpha/lib/
H A Dsrm_printk.c14 char *src, *dst; local
31 for (dst = src + num_lf; src >= buf; ) {
33 *dst-- = '\r';
35 *dst-- = *src--;
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ppc/
H A Dchecksum.h26 * and adds in "sum" (32-bit), while copying the block to dst.
27 * If an access exception occurs on src or dst, it stores -EFAULT
29 * NULL), and, for an error on src, zeroes the rest of dst.
34 extern unsigned int csum_partial_copy_generic(const char *src, char *dst,
38 #define csum_partial_copy_from_user(src, dst, len, sum, errp) \
39 csum_partial_copy_generic((src), (dst), (len), (sum), (errp), 0)
41 #define csum_partial_copy_nocheck(src, dst, len, sum) \
42 csum_partial_copy_generic((src), (dst), (len), (sum), 0, 0)
46 #define csum_partial_copy(src, dst, len, sum) \
47 csum_partial_copy_generic((src), (dst), (le
[all...]

Completed in 228 milliseconds

1234567891011>>