Searched refs:dst (Results 51 - 75 of 626) sorted by relevance

1234567891011>>

/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ppc64/
H A Dchecksum.h44 * the same as csum_partial, but copies from src to dst while it
47 unsigned int csum_partial_copy(const char *src, char *dst,
50 extern unsigned int csum_partial_copy_generic(const char *src, char *dst,
58 char *dst,
64 char *dst,
94 #define csum_partial_copy_from_user(src, dst, len, sum, errp) \
95 csum_partial_copy_generic((src), (dst), (len), (sum), (errp), 0)
97 #define csum_partial_copy_nocheck(src, dst, len, sum) \
98 csum_partial_copy_generic((src), (dst), (len), (sum), 0, 0)
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390/
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);
92 csum_partial_copy_nocheck (const char *src, char *dst, in argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390/
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);
92 csum_partial_copy_nocheck (const char *src, char *dst, in argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/alpha/lib/
H A Dcsum_partial_copy.c102 csum_partial_cfu_aligned(const unsigned long *src, unsigned long *dst, argument
117 *dst = word;
118 dst++;
125 tmp = *dst;
130 *dst = word | tmp;
142 csum_partial_cfu_dest_aligned(const unsigned long *src, unsigned long *dst, argument
166 *dst = word;
167 dst++;
176 tmp = *dst;
184 *dst
195 csum_partial_cfu_src_aligned(const unsigned long *src, unsigned long *dst, unsigned long doff, long len, unsigned long checksum, unsigned long partial_dest, int *errp) argument
252 csum_partial_cfu_unaligned(const unsigned long * src, unsigned long * dst, unsigned long soff, unsigned long doff, long len, unsigned long checksum, unsigned long partial_dest, int *errp) argument
330 do_csum_partial_copy_from_user(const char *src, char *dst, int len, unsigned int sum, int *errp) argument
371 csum_partial_copy_from_user(const char *src, char *dst, int len, unsigned int sum, int *errp) argument
384 csum_partial_copy_nocheck(const char *src, char *dst, int len, unsigned int sum) argument
390 csum_partial_copy(const char *src, char *dst, int len, unsigned int sum) argument
[all...]
H A Dio.c139 void insb (unsigned long port, void *dst, unsigned long count) argument
141 while (((unsigned long)dst) & 0x3) {
145 *(unsigned char *) dst = inb(port);
146 ((unsigned char *) dst)++;
156 *(unsigned int *) dst = w;
157 ((unsigned int *) dst)++;
162 *(unsigned char *) dst = inb(port);
163 ((unsigned char *) dst)++;
175 void insw (unsigned long port, void *dst, unsigned long count) argument
177 if (((unsigned long)dst)
209 insl(unsigned long port, void *dst, unsigned long count) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/lib/
H A Dusercopy.c14 #define __do_strncpy_from_user(dst,src,count,res) \
38 : "i"(-EFAULT), "0"(count), "1"(count), "3"(src), "4"(dst) \
43 __strncpy_from_user(char *dst, const char *src, long count) argument
46 __do_strncpy_from_user(dst, src, count, res);
51 strncpy_from_user(char *dst, const char *src, long count) argument
55 __do_strncpy_from_user(dst, src, count, res);
71 "0: movnti %[zero],(%[dst])\n"
72 " addq %[eight],%[dst]\n"
77 "1: movb %b[zero],(%[dst])\n"
78 " incq %[dst]\
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/popt/
H A Dpoptparse.c14 char * dst; local
23 dst = malloc(nb);
24 argv2 = (void *) dst;
25 dst += (argc + 1) * sizeof(*argv);
28 argv2[i] = dst;
29 dst += strlen(strcpy(dst, argv[i])) + 1;
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-i386/
H A Dchecksum.h23 * here even more important to align src and dst on a 32-bit (or even
27 asmlinkage unsigned int csum_partial_copy_generic( const char *src, char *dst, int len, int sum,
38 unsigned int csum_partial_copy_nocheck ( const char *src, char *dst, argument
41 return csum_partial_copy_generic ( src, dst, len, sum, NULL, NULL);
45 unsigned int csum_partial_copy_from_user ( const char *src, char *dst, argument
48 return csum_partial_copy_generic ( src, dst, len, sum, err_ptr, NULL);
59 unsigned int csum_partial_copy( const char *src, char *dst, int len, int sum);
183 static __inline__ unsigned int csum_and_copy_to_user(const char *src, char *dst, argument
186 if (access_ok(VERIFY_WRITE, dst, len))
187 return csum_partial_copy_generic(src, dst, le
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-i386/
H A Dchecksum.h23 * here even more important to align src and dst on a 32-bit (or even
27 asmlinkage unsigned int csum_partial_copy_generic( const char *src, char *dst, int len, int sum,
38 unsigned int csum_partial_copy_nocheck ( const char *src, char *dst, argument
41 return csum_partial_copy_generic ( src, dst, len, sum, NULL, NULL);
45 unsigned int csum_partial_copy_from_user ( const char *src, char *dst, argument
48 return csum_partial_copy_generic ( src, dst, len, sum, err_ptr, NULL);
59 unsigned int csum_partial_copy( const char *src, char *dst, int len, int sum);
183 static __inline__ unsigned int csum_and_copy_to_user(const char *src, char *dst, argument
186 if (access_ok(VERIFY_WRITE, dst, len))
187 return csum_partial_copy_generic(src, dst, le
[all...]
/asus-wl-520gu-7.0.1.45/src/router/samba/source/lib/
H A Dsecacl.c32 SEC_ACL *dst; local
35 if((dst = (SEC_ACL *)talloc_zero(ctx,sizeof(SEC_ACL))) == NULL)
38 dst->revision = revision;
39 dst->num_aces = num_aces;
40 dst->size = SEC_ACL_HEADER_SIZE;
49 ((dst->ace = (SEC_ACE *)talloc(ctx, sizeof(SEC_ACE) * num_aces))
55 dst->ace[i] = ace_list[i]; /* Structure copy. */
56 dst->size += ace_list[i].size;
59 return dst;
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/arm/kernel/
H A Dio.c38 void _memset_io(unsigned long dst, int c, size_t count) argument
42 writeb(c, dst);
43 dst++;
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-arm/
H A Dxor.h14 #define GET_BLOCK_2(dst) \
16 : "=r" (dst), "=r" (a1), "=r" (a2) \
17 : "0" (dst))
19 #define GET_BLOCK_4(dst) \
21 : "=r" (dst), "=r" (a1), "=r" (a2), "=r" (a3), "=r" (a4) \
22 : "0" (dst))
36 #define PUT_BLOCK_2(dst) \
38 : "=r" (dst) \
39 : "0" (dst), "r" (a1), "r" (a2))
41 #define PUT_BLOCK_4(dst) \
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ia64/
H A Dchecksum.h49 * Here it is even more important to align src and dst on a 32-bit (or
52 extern unsigned int csum_partial_copy (const char *src, char *dst, int len,
68 extern unsigned int csum_partial_copy_from_user (const char *src, char *dst,
72 extern unsigned int csum_partial_copy_nocheck (const char *src, char *dst,
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/net/
H A Ddn_route.h19 extern int dn_route_output(struct dst_entry **pprt, dn_address dst, dn_address src, int flags);
70 struct dst_entry dst; member in union:dn_route::__anon11671
99 static inline void dn_rt_finish_output(struct sk_buff *skb, char *dst) argument
104 dst = NULL;
107 dst, NULL, skb->len) >= 0))
117 struct dst_entry *dst; local
122 if ((dst = sk->dst_cache) && !dst->obsolete) {
124 skb->dst = dst_clone(dst);
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/net/
H A Ddn_route.h19 extern int dn_route_output(struct dst_entry **pprt, dn_address dst, dn_address src, int flags);
70 struct dst_entry dst; member in union:dn_route::__anon7265
99 static inline void dn_rt_finish_output(struct sk_buff *skb, char *dst) argument
104 dst = NULL;
107 dst, NULL, skb->len) >= 0))
117 struct dst_entry *dst; local
122 if ((dst = sk->dst_cache) && !dst->obsolete) {
124 skb->dst = dst_clone(dst);
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-arm/
H A Dxor.h14 #define GET_BLOCK_2(dst) \
16 : "=r" (dst), "=r" (a1), "=r" (a2) \
17 : "0" (dst))
19 #define GET_BLOCK_4(dst) \
21 : "=r" (dst), "=r" (a1), "=r" (a2), "=r" (a3), "=r" (a4) \
22 : "0" (dst))
36 #define PUT_BLOCK_2(dst) \
38 : "=r" (dst) \
39 : "0" (dst), "r" (a1), "r" (a2))
41 #define PUT_BLOCK_4(dst) \
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ia64/
H A Dchecksum.h49 * Here it is even more important to align src and dst on a 32-bit (or
52 extern unsigned int csum_partial_copy (const char *src, char *dst, int len,
68 extern unsigned int csum_partial_copy_from_user (const char *src, char *dst,
72 extern unsigned int csum_partial_copy_nocheck (const char *src, char *dst,
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sh/kernel/
H A Dtraps.c110 unsigned char *src, *dst; local
127 dst = (unsigned char*) rn;
128 *(unsigned long*)dst = 0;
131 if (copy_from_user(dst, src, count))
134 if ((count == 2) && dst[1] & 0x80) {
135 dst[2] = 0xff;
136 dst[3] = 0xff;
139 dst += 4-count;
141 if (__copy_user(dst, src, count))
144 if ((count == 2) && dst[
[all...]
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/dev/
H A Ddev_flashop_engine.c163 physaddr_t dst = base + offset; local
177 phys_write8(dst, AMD_FLASH_ERASE_SEC_6);
180 while (phys_read8(dst) != 0xff);
200 physaddr_t dst = base + offset; local
214 phys_write16(dst, AMD_FLASH_ERASE_SEC_6);
217 while ((phys_read16(dst) & 0xff) != 0xff);
225 physaddr_t dst = base + offset; local
237 data_write8(dst, *ptr);
240 while ((data_read8(dst) & 0x80) != (*ptr & 0x80));
243 dst
265 physaddr_t dst = base + offset; local
359 physaddr_t dst = base + offset; local
375 physaddr_t dst = base + offset; local
387 physaddr_t dst = base + offset; local
403 physaddr_t dst = base + offset; local
415 physaddr_t dst = base + offset; local
507 physaddr_t dst = base + offset; local
616 physaddr_t dst = base + offset; local
641 physaddr_t dst = base + offset; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/isdn/hisax/
H A Drawhdlc.h23 int make_raw_hdlc_data(u_char *src, u_int slen, u_char *dst, u_int dsize);
26 u_char *src, u_int slen, u_char *dst, u_int dsize);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-sparc64/
H A Dchecksum.h38 * here even more important to align src and dst on a 32-bit (or even
41 extern unsigned int csum_partial_copy_sparc64(const char *src, char *dst, int len, unsigned int sum);
44 csum_partial_copy_nocheck (const char *src, char *dst, int len, argument
50 ret = csum_partial_copy_sparc64(src, dst, len, sum);
56 csum_partial_copy_from_user(const char *src, char *dst, int len, argument
61 return csum_partial_copy_sparc64(src, dst, len, sum);
68 extern unsigned int csum_partial_copy_user_sparc64(const char *src, char *dst, int len, unsigned int sum);
70 csum_and_copy_to_user(const char *src, char *dst, int len, argument
75 return csum_partial_copy_user_sparc64(src, dst, len, sum);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-sparc64/
H A Dchecksum.h38 * here even more important to align src and dst on a 32-bit (or even
41 extern unsigned int csum_partial_copy_sparc64(const char *src, char *dst, int len, unsigned int sum);
44 csum_partial_copy_nocheck (const char *src, char *dst, int len, argument
50 ret = csum_partial_copy_sparc64(src, dst, len, sum);
56 csum_partial_copy_from_user(const char *src, char *dst, int len, argument
61 return csum_partial_copy_sparc64(src, dst, len, sum);
68 extern unsigned int csum_partial_copy_user_sparc64(const char *src, char *dst, int len, unsigned int sum);
70 csum_and_copy_to_user(const char *src, char *dst, int len, argument
75 return csum_partial_copy_user_sparc64(src, dst, len, sum);
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/lib/
H A Dmemcpy.S20 #define dst a0 define
27 * memcpy copies len bytes from src to dst and sets v0 to dst.
29 * - src and dst don't overlap
31 * - dst is writable
34 * __copy_user copies up to len bytes from src to dst and sets a2 (len) to
36 * __copy_user assumes that src and dst don't overlap, and that the call is
41 * - dst is writable (no exceptions when writing dst)
59 * 3- (dst
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips64/lib/
H A Dmemcpy.S20 #define dst a0 define
27 * memcpy copies len bytes from src to dst and sets v0 to dst.
29 * - src and dst don't overlap
31 * - dst is writable
34 * __copy_user copies up to len bytes from src to dst and sets a2 (len) to
36 * __copy_user assumes that src and dst don't overlap, and that the call is
41 * - dst is writable (no exceptions when writing dst)
59 * 3- (dst
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/lib/
H A Dcsum_partial_copy.c98 do_csum_partial_copy_from_user (const char *src, char *dst, int len, argument
104 if (__copy_from_user(dst, src, len) != 0 && errp)
107 result = do_csum(dst, len);
117 csum_partial_copy_from_user(const char *src, char *dst, int len, argument
122 memset(dst, 0, len);
126 return do_csum_partial_copy_from_user(src, dst, len, sum, errp);
130 csum_partial_copy_nocheck(const char *src, char *dst, int len, unsigned int sum) argument
132 return do_csum_partial_copy_from_user(src, dst, len, sum, NULL);
136 csum_partial_copy (const char *src, char *dst, int len, unsigned int sum) argument
141 ret = do_csum_partial_copy_from_user(src, dst, le
[all...]

Completed in 231 milliseconds

1234567891011>>