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

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v10/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...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/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.c33 register char *dst __asm__ ("r13") = pdst;
39 /* When src is aligned but not dst, this makes a few extra needless
42 if (((unsigned long) dst & 3) != 0
47 if ((unsigned long) dst & 1)
49 __asm_copy_to_user_1 (dst, src, retn);
53 if ((unsigned long) dst & 2)
55 __asm_copy_to_user_2 (dst, src, retn);
84 ;; r13 - dst \n\
115 /* Outputs */ : "=r" (dst), "=r" (src), "=r" (n), "=r" (retn)
116 /* Inputs */ : "0" (dst), "
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dsafe_strncpy.c13 char * safe_strncpy(char *dst, const char *src, size_t size) argument
15 if (!size) return dst;
16 dst[--size] = '\0';
17 return strncpy(dst, src, size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/core/
H A Duverbs_marshall.c35 void ib_copy_ah_attr_to_user(struct ib_uverbs_ah_attr *dst, argument
38 memcpy(dst->grh.dgid, src->grh.dgid.raw, sizeof src->grh.dgid);
39 dst->grh.flow_label = src->grh.flow_label;
40 dst->grh.sgid_index = src->grh.sgid_index;
41 dst->grh.hop_limit = src->grh.hop_limit;
42 dst->grh.traffic_class = src->grh.traffic_class;
43 dst->dlid = src->dlid;
44 dst->sl = src->sl;
45 dst->src_path_bits = src->src_path_bits;
46 dst
52 ib_copy_qp_attr_to_user(struct ib_uverbs_qp_attr *dst, struct ib_qp_attr *src) argument
89 ib_copy_path_rec_to_user(struct ib_user_path_rec *dst, struct ib_sa_path_rec *src) argument
115 ib_copy_path_rec_from_user(struct ib_sa_path_rec *dst, struct ib_user_path_rec *src) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/clib/
H A Dstrncat.c49 * Concatenate src on the end of dst. At most strlen(dst)+n+1 bytes
50 * are written at dst (at most n+1 bytes being appended). Return dst.
53 strncat(char *dst, const char *src, size_t n) argument
56 char *d = dst;
68 return (dst);
H A Dmemmove.c83 register char *dst = dst0; local
87 if (length == 0 || dst == src) /* nothing to do */
98 if ((unsigned long)dst < (unsigned long)src) {
103 if ((t | (size_t)dst) & wmask) {
108 if ((t ^ (size_t)dst) & wmask || length < wsize)
113 TLOOP1(*dst++ = *src++);
119 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
121 TLOOP(*dst++ = *src++);
129 dst
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dcfbfillrect.c39 bitfill_aligned(unsigned long __iomem *dst, int dst_idx, unsigned long pat, unsigned n, int bits) argument
53 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); local
59 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); local
60 dst++;
67 FB_WRITEL(pat, dst++);
68 FB_WRITEL(pat, dst++);
69 FB_WRITEL(pat, dst++);
70 FB_WRITEL(pat, dst
82 FB_WRITEL(comp(pat, FB_READL(dst), last), dst); local
95 bitfill_unaligned(unsigned long __iomem *dst, int dst_idx, unsigned long pat, int left, int right, unsigned n, int bits) argument
110 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); local
115 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); local
141 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); local
149 bitfill_aligned_rev(unsigned long __iomem *dst, int dst_idx, unsigned long pat, unsigned n, int bits) argument
218 bitfill_unaligned_rev(unsigned long __iomem *dst, int dst_idx, unsigned long pat, int left, int right, unsigned n, int bits) argument
284 unsigned long __iomem *dst; local
[all...]
H A Dsyscopyarea.c29 bitcpy(unsigned long *dst, int dst_idx, const unsigned long *src, argument
45 *dst = comp(*src, *dst, first);
50 *dst = comp(*src, *dst, first);
51 dst++;
59 *dst++ = *src++;
60 *dst++ = *src++;
61 *dst++ = *src++;
62 *dst
170 bitcpy_rev(unsigned long *dst, int dst_idx, const unsigned long *src, int src_idx, int bits, unsigned n) argument
321 unsigned long *dst = NULL, *src = NULL; local
[all...]
H A Dsysfillrect.c25 bitfill_aligned(unsigned long *dst, int dst_idx, unsigned long pat, argument
40 *dst = comp(pat, *dst, first);
46 *dst = comp(pat, *dst, first);
47 dst++;
54 *dst++ = pat;
55 *dst++ = pat;
56 *dst++ = pat;
57 *dst
81 bitfill_unaligned(unsigned long *dst, int dst_idx, unsigned long pat, int left, int right, unsigned n, int bits) argument
135 bitfill_aligned_rev(unsigned long *dst, int dst_idx, unsigned long pat, unsigned n, int bits) argument
191 bitfill_unaligned_rev(unsigned long *dst, int dst_idx, unsigned long pat, int left, int right, unsigned n, int bits) argument
248 unsigned long *dst; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/core/
H A Ddst.c2 * net/core/dst.c Protocol independent destination cache.
19 #include <net/dst.h>
39 static void ___dst_free(struct dst_entry * dst);
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;
66 dst = dst_destroy(dst);
122 struct dst_entry * dst; local
143 ___dst_free(struct dst_entry * dst) argument
154 __dst_free(struct dst_entry * dst) argument
168 dst_destroy(struct dst_entry * dst) argument
227 dst_ifdown(struct dst_entry *dst, struct net_device *dev, int unregister) argument
253 struct dst_entry *dst; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/kernel/
H A Dbinfmt_elf32.c15 #define ELF_CORE_COPY_REGS(dst, pt) \
16 memset(dst, 0, sizeof(dst)); /* don't leak any "random" bits */ \
18 for (i = 0; i < 32; i++) dst[i] = (elf_greg_t) pt->gr[i]; \
19 for (i = 0; i < 8; i++) dst[32 + i] = (elf_greg_t) pt->sr[i]; \
21 dst[40] = (elf_greg_t) pt->iaoq[0]; dst[41] = (elf_greg_t) pt->iaoq[1]; \
22 dst[42] = (elf_greg_t) pt->iasq[0]; dst[43] = (elf_greg_t) pt->iasq[1]; \
23 dst[4
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/squashfs/
H A Dsqlzma.h5 int LzmaUncompress(void *dst, int *dstlen, void *src, int srclen);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/lib/
H A Dstr.c35 strlcpy(char *dst, const char *src, size_t size) argument
37 strncpy(dst, src, size);
39 return (strlen(dst));
49 strlcat(char *dst, const char *src, size_t size) argument
51 /* strncpy(dst, src, size - strlen(dst)); */
55 if (strlen (dst) + strlen (src) >= size)
58 strcat (dst, src);
60 return (strlen(dst));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/
H A Ddst.h2 * net/dst.h Protocol independent destination cache definitions.
31 * After this it enters dead state (dst->obsolete > 0) and if its refcnt
102 void (*update_pmtu)(struct dst_entry *dst, u32 mtu);
112 dst_metric(const struct dst_entry *dst, int metric) argument
114 return dst->metrics[metric-1];
117 static inline u32 dst_mtu(const struct dst_entry *dst) argument
119 u32 mtu = dst_metric(dst, RTAX_MTU);
128 dst_allfrag(const struct dst_entry *dst) argument
130 int ret = dst_metric(dst, RTAX_FEATURES) & RTAX_FEATURE_ALLFRAG;
137 dst_metric_locked(struct dst_entry *dst, in argument
142 dst_hold(struct dst_entry * dst) argument
148 dst_clone(struct dst_entry * dst) argument
156 dst_release(struct dst_entry * dst) argument
169 dst_pop(struct dst_entry *dst) argument
181 dst_free(struct dst_entry * dst) argument
195 struct dst_entry *dst = container_of(head, struct dst_entry, rcu_head); local
199 dst_confirm(struct dst_entry *dst) argument
207 struct dst_entry * dst = *dst_p; local
214 struct dst_entry * dst = skb->dst; local
219 dst_set_expires(struct dst_entry *dst, int timeout) argument
252 dst_check(struct dst_entry *dst, u32 cookie) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/util/
H A Dinstall.sh35 dst=""
66 dst=$1
79 if [ x"$dst" = x ]
89 if [ -d $dst ]
91 dst="$dst"/`basename $src`
97 $doit $rmcmd $dst
98 $doit $instcmd $src $dst
103 if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; fi
104 if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; f
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/util/
H A Dinstall.sh35 dst=""
66 dst=$1
79 if [ x"$dst" = x ]
89 if [ -d $dst ]
91 dst="$dst"/`basename $src`
97 $doit $rmcmd $dst
98 $doit $instcmd $src $dst
103 if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; fi
104 if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; f
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Dlocal_string_utils.h24 size_t flac__strlcpy(char *dst, const char *src, size_t siz);
25 size_t flac__strlcat(char *dst, const char *src, size_t siz);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/lib/
H A Dio.c5 void __memcpy_toio(unsigned long dst,const void*src,unsigned len) argument
7 __inline_memcpy((void *) dst,src,len);
11 void __memcpy_fromio(void *dst,unsigned long src,unsigned len) argument
13 __inline_memcpy(dst,(const void *) src,len);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/rdma/
H A Dib_marshall.h41 void ib_copy_qp_attr_to_user(struct ib_uverbs_qp_attr *dst,
44 void ib_copy_ah_attr_to_user(struct ib_uverbs_ah_attr *dst,
47 void ib_copy_path_rec_to_user(struct ib_user_path_rec *dst,
50 void ib_copy_path_rec_from_user(struct ib_sa_path_rec *dst,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Davstring.h50 * Copy the string src to dst, but no more than size - 1 bytes, and
51 * null-terminate dst.
55 * @param dst destination buffer
60 size_t av_strlcpy(char *dst, const char *src, size_t size);
63 * Append the string src to the string dst, but to a total length of
64 * no more than size - 1 bytes, and null-terminate dst.
67 * size <= strlen(dst).
69 * @param dst destination buffer
72 * @return the total length of src and dst
74 size_t av_strlcat(char *dst, cons
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/include/libavutil/
H A Davstring.h50 * Copy the string src to dst, but no more than size - 1 bytes, and
51 * null-terminate dst.
55 * @param dst destination buffer
60 size_t av_strlcpy(char *dst, const char *src, size_t size);
63 * Append the string src to the string dst, but to a total length of
64 * no more than size - 1 bytes, and null-terminate dst.
67 * size <= strlen(dst).
69 * @param dst destination buffer
72 * @return the total length of src and dst
74 size_t av_strlcat(char *dst, cons
[all...]

Completed in 208 milliseconds

1234567891011>>