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

1234567891011>>

/linux-master/arch/nios2/lib/
H A Dmemmove.c15 unsigned long dst, src; local
21 dst = (unsigned long) d;
24 if ((count < 8) || ((dst ^ src) & 3))
27 if (dst & 1) {
28 *(char *)dst++ = *(char *)src++;
31 if (dst & 2) {
32 *(short *)dst = *(short *)src;
34 dst += 2;
38 *(long *)dst = *(long *)src;
40 dst
[all...]
/linux-master/tools/build/feature/
H A Dtest-libelf-getphdrnum.c6 size_t dst; local
8 return elf_getphdrnum(0, &dst);
H A Dtest-libelf-getshdrstrndx.c6 size_t dst; local
8 return elf_getshdrstrndx(0, &dst);
/linux-master/drivers/infiniband/core/
H A Duverbs_marshall.c63 struct ib_uverbs_ah_attr *dst,
69 memset(&dst->grh, 0, sizeof(dst->grh));
76 dst->dlid = rdma_ah_get_dlid(src);
77 dst->sl = rdma_ah_get_sl(src);
78 dst->src_path_bits = rdma_ah_get_path_bits(src);
79 dst->static_rate = rdma_ah_get_static_rate(src);
80 dst->is_global = rdma_ah_get_ah_flags(src) &
82 if (dst->is_global) {
85 memcpy(dst
62 ib_copy_ah_attr_to_user(struct ib_device *device, struct ib_uverbs_ah_attr *dst, struct rdma_ah_attr *ah_attr) argument
96 ib_copy_qp_attr_to_user(struct ib_device *device, struct ib_uverbs_qp_attr *dst, struct ib_qp_attr *src) argument
136 __ib_copy_path_rec_to_user(struct ib_user_path_rec *dst, struct sa_path_rec *src) argument
161 ib_copy_path_rec_to_user(struct ib_user_path_rec *dst, struct sa_path_rec *src) argument
175 ib_copy_path_rec_from_user(struct sa_path_rec *dst, struct ib_user_path_rec *src) argument
[all...]
/linux-master/fs/cramfs/
H A Dinternal.h2 int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
/linux-master/drivers/net/ethernet/microchip/lan966x/
H A Dlan966x_vcap_debugfs.c15 out->prf(out->dst, " port[%d] (%s): ", port->chip_port,
19 out->prf(out->dst, "\n state: ");
21 out->prf(out->dst, "on");
23 out->prf(out->dst, "off");
26 out->prf(out->dst, "\n Lookup %d: ", l);
30 out->prf(out->dst, "\n other: ");
33 out->prf(out->dst, "normal");
36 out->prf(out->dst, "7tuple");
39 out->prf(out->dst, "dbl_vid");
42 out->prf(out->dst, "dmac_vi
[all...]
/linux-master/drivers/gpu/drm/i915/
H A Di915_memcpy.c42 static void __memcpy_ntdqa(void *dst, const void *src, unsigned long len) argument
55 :: "r" (src), "r" (dst) : "memory");
57 dst += 64;
63 :: "r" (src), "r" (dst) : "memory");
65 dst += 16;
71 static void __memcpy_ntdqu(void *dst, const void *src, unsigned long len) argument
84 :: "r" (src), "r" (dst) : "memory");
86 dst += 64;
92 :: "r" (src), "r" (dst) : "memory");
94 dst
117 i915_memcpy_from_wc(void *dst, const void *src, unsigned long len) argument
142 i915_unaligned_memcpy_from_wc(void *dst, const void *src, unsigned long len) argument
[all...]
H A Di915_memcpy.h15 bool i915_memcpy_from_wc(void *dst, const void *src, unsigned long len);
16 void i915_unaligned_memcpy_from_wc(void *dst, const void *src, unsigned long len);
28 #define i915_can_memcpy_from_wc(dst, src, len) \
29 i915_memcpy_from_wc((void *)((unsigned long)(dst) | (unsigned long)(src) | (len)), NULL, 0)
/linux-master/drivers/net/ethernet/microchip/sparx5/
H A Dsparx5_vcap_debugfs.c84 out->prf(out->dst, " port[%02d] (%s): ", port->portno,
87 out->prf(out->dst, "\n Lookup %d: ", lookup);
92 out->prf(out->dst, "\n state: ");
94 out->prf(out->dst, "on");
96 out->prf(out->dst, "off");
98 out->prf(out->dst, "\n etype: %s",
101 out->prf(out->dst, "\n ipv4: %s",
104 out->prf(out->dst, "\n ipv6: %s",
107 out->prf(out->dst, "\n mpls_uc: %s",
110 out->prf(out->dst, "\
[all...]
/linux-master/arch/x86/crypto/
H A Dcamellia.h27 asmlinkage void __camellia_enc_blk(const void *ctx, u8 *dst, const u8 *src,
29 asmlinkage void camellia_dec_blk(const void *ctx, u8 *dst, const u8 *src);
32 asmlinkage void __camellia_enc_blk_2way(const void *ctx, u8 *dst, const u8 *src,
34 asmlinkage void camellia_dec_blk_2way(const void *ctx, u8 *dst, const u8 *src);
37 asmlinkage void camellia_ecb_enc_16way(const void *ctx, u8 *dst, const u8 *src);
38 asmlinkage void camellia_ecb_dec_16way(const void *ctx, u8 *dst, const u8 *src);
40 asmlinkage void camellia_cbc_dec_16way(const void *ctx, u8 *dst, const u8 *src);
42 static inline void camellia_enc_blk(const void *ctx, u8 *dst, const u8 *src) argument
44 __camellia_enc_blk(ctx, dst, src, false);
47 static inline void camellia_enc_blk_xor(const void *ctx, u8 *dst, cons argument
52 camellia_enc_blk_2way(const void *ctx, u8 *dst, const u8 *src) argument
58 camellia_enc_blk_xor_2way(const void *ctx, u8 *dst, const u8 *src) argument
[all...]
H A Dserpent-sse2.h12 asmlinkage void __serpent_enc_blk_4way(const struct serpent_ctx *ctx, u8 *dst,
14 asmlinkage void serpent_dec_blk_4way(const struct serpent_ctx *ctx, u8 *dst,
17 static inline void serpent_enc_blk_xway(const void *ctx, u8 *dst, const u8 *src) argument
19 __serpent_enc_blk_4way(ctx, dst, src, false);
23 u8 *dst, const u8 *src)
25 __serpent_enc_blk_4way(ctx, dst, src, true);
28 static inline void serpent_dec_blk_xway(const void *ctx, u8 *dst, const u8 *src) argument
30 serpent_dec_blk_4way(ctx, dst, src);
37 asmlinkage void __serpent_enc_blk_8way(const struct serpent_ctx *ctx, u8 *dst,
39 asmlinkage void serpent_dec_blk_8way(const struct serpent_ctx *ctx, u8 *dst,
22 serpent_enc_blk_xway_xor(const struct serpent_ctx *ctx, u8 *dst, const u8 *src) argument
42 serpent_enc_blk_xway(const void *ctx, u8 *dst, const u8 *src) argument
47 serpent_enc_blk_xway_xor(const struct serpent_ctx *ctx, u8 *dst, const u8 *src) argument
53 serpent_dec_blk_xway(const void *ctx, u8 *dst, const u8 *src) argument
[all...]
/linux-master/tools/lib/bpf/
H A Dstr_error.h7 char *libbpf_strerror_r(int err, char *dst, int len);
/linux-master/net/core/
H A Ddst.c3 * net/core/dst.c Protocol independent destination cache.
27 #include <net/dst.h>
47 void dst_init(struct dst_entry *dst, struct dst_ops *ops, argument
51 dst->dev = dev;
52 netdev_hold(dev, &dst->dev_tracker, GFP_ATOMIC);
53 dst->ops = ops;
54 dst_init_metrics(dst, dst_default_metrics.metrics, true);
55 dst->expires = 0UL;
57 dst->xfrm = NULL;
59 dst
82 struct dst_entry *dst; local
99 dst_destroy(struct dst_entry *dst) argument
133 struct dst_entry *dst = container_of(head, struct dst_entry, rcu_head); local
147 dst_dev_put(struct dst_entry *dst) argument
162 dst_release(struct dst_entry *dst) argument
169 dst_release_immediate(struct dst_entry *dst) argument
176 dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old) argument
206 __dst_destroy_metrics_generic(struct dst_entry *dst, unsigned long old) argument
217 dst_blackhole_check(struct dst_entry *dst, u32 cookie) argument
222 dst_blackhole_cow_metrics(struct dst_entry *dst, unsigned long old) argument
227 dst_blackhole_neigh_lookup(const struct dst_entry *dst, struct sk_buff *skb, const void *daddr) argument
234 dst_blackhole_update_pmtu(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb, u32 mtu, bool confirm_neigh) argument
241 dst_blackhole_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb) argument
247 dst_blackhole_mtu(const struct dst_entry *dst) argument
268 struct dst_entry *dst; local
[all...]
H A Ddst_cache.c3 * net/core/dst_cache.c - dst entry cache
19 struct dst_entry *dst; member in struct:dst_cache_pcpu
28 struct dst_entry *dst, u32 cookie)
30 dst_release(dst_cache->dst);
31 if (dst)
32 dst_hold(dst);
35 dst_cache->dst = dst;
41 struct dst_entry *dst; local
43 dst
27 dst_cache_per_cpu_dst_set(struct dst_cache_pcpu *dst_cache, struct dst_entry *dst, u32 cookie) argument
75 struct dst_entry *dst; local
90 dst_cache_set_ip4(struct dst_cache *dst_cache, struct dst_entry *dst, __be32 saddr) argument
105 dst_cache_set_ip6(struct dst_cache *dst_cache, struct dst_entry *dst, const struct in6_addr *saddr) argument
124 struct dst_entry *dst; local
176 struct dst_entry *dst = idst->dst; local
[all...]
/linux-master/fs/smb/client/
H A Dunc.c21 char *dst, *delim; local
39 dst = kmalloc((len + 1), GFP_KERNEL);
40 if (dst == NULL)
43 memcpy(dst, src, len);
44 dst[len] = '\0';
46 return dst;
52 char *delim, *dst; local
64 dst = kstrdup(delim, GFP_KERNEL);
65 if (!dst)
68 return dst;
[all...]
/linux-master/net/sunrpc/
H A Dsunrpc.h28 struct dst_entry *dst; local
31 dst = rcu_dereference(sk->sk_dst_cache);
32 if (dst && dst->dev &&
33 (dst->dev->features & NETIF_F_LOOPBACK))
/linux-master/drivers/media/platform/verisilicon/
H A Dhantro_vp8.c54 u8 *dst; local
57 dst = ctx->vp8_dec.prob_tbl.cpu;
59 dst[0] = hdr->prob_skip_false;
60 dst[1] = hdr->prob_intra;
61 dst[2] = hdr->prob_last;
62 dst[3] = hdr->prob_gf;
63 dst[4] = hdr->segment.segment_probs[0];
64 dst[5] = hdr->segment.segment_probs[1];
65 dst[6] = hdr->segment.segment_probs[2];
66 dst[
[all...]
/linux-master/lib/crypto/
H A Dutils.c13 * XOR @len bytes from @src1 and @src2 together, writing the result to @dst
17 void __crypto_xor(u8 *dst, const u8 *src1, const u8 *src2, unsigned int len) argument
23 int d = (((unsigned long)dst ^ (unsigned long)src1) |
24 ((unsigned long)dst ^ (unsigned long)src2)) &
31 * needed to advance dst and src to values whose alignments
35 while (((unsigned long)dst & (relalign - 1)) && len > 0) {
36 *dst++ = *src1++ ^ *src2++;
45 put_unaligned(l, (u64 *)dst);
47 *(u64 *)dst = *(u64 *)src1 ^ *(u64 *)src2;
49 dst
[all...]
/linux-master/include/net/
H A Ddst.h3 * net/dst.h Protocol independent destination cache definitions.
48 /* A non-zero value of dst->obsolete forces by-hand validation
50 * dst layer to indicate that the entry has been forcefully
103 u32 *dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old);
112 static inline bool dst_metrics_read_only(const struct dst_entry *dst) argument
114 return dst->_metrics & DST_METRICS_READ_ONLY;
117 void __dst_destroy_metrics_generic(struct dst_entry *dst, unsigned long old);
119 static inline void dst_destroy_metrics_generic(struct dst_entry *dst) argument
121 unsigned long val = dst->_metrics;
123 __dst_destroy_metrics_generic(dst, va
126 dst_metrics_write_ptr(struct dst_entry *dst) argument
140 dst_init_metrics(struct dst_entry *dst, const u32 *src_metrics, bool read_only) argument
159 dst_metrics_ptr(struct dst_entry *dst) argument
165 dst_metric_raw(const struct dst_entry *dst, const int metric) argument
173 dst_metric(const struct dst_entry *dst, const int metric) argument
182 dst_metric_advmss(const struct dst_entry *dst) argument
192 dst_metric_set(struct dst_entry *dst, int metric, u32 val) argument
207 dst_feature(const struct dst_entry *dst, u32 feature) argument
214 dst_mtu(const struct dst_entry *dst) argument
220 dst_metric_rtt(const struct dst_entry *dst, int metric) argument
226 dst_metric_locked(const struct dst_entry *dst, int metric) argument
231 dst_hold(struct dst_entry *dst) argument
241 dst_use_noref(struct dst_entry *dst, unsigned long time) argument
249 dst_clone(struct dst_entry *dst) argument
300 dst_hold_safe(struct dst_entry *dst) argument
315 struct dst_entry *dst = skb_dst(skb); local
374 const struct dst_entry *dst; local
395 dst_confirm(struct dst_entry *dst) argument
399 dst_neigh_lookup(const struct dst_entry *dst, const void *daddr) argument
405 dst_neigh_lookup_skb(const struct dst_entry *dst, struct sk_buff *skb) argument
418 dst_confirm_neigh(const struct dst_entry *dst, const void *daddr) argument
427 struct dst_entry *dst = skb_dst(skb); local
432 dst_set_expires(struct dst_entry *dst, int timeout) argument
468 dst_check(struct dst_entry *dst, u32 cookie) argument
511 dst_xfrm(const struct dst_entry *dst) argument
532 dst_xfrm(const struct dst_entry *dst) argument
540 struct dst_entry *dst = skb_dst(skb); local
549 struct dst_entry *dst = skb_dst(skb); local
[all...]
H A Ddst_ops.h29 void (*update_pmtu)(struct dst_entry *dst, struct sock *sk,
32 void (*redirect)(struct dst_entry *dst, struct sock *sk,
35 struct neighbour * (*neigh_lookup)(const struct dst_entry *dst,
38 void (*confirm_neigh)(const struct dst_entry *dst,
46 static inline int dst_entries_get_fast(struct dst_ops *dst) argument
48 return percpu_counter_read_positive(&dst->pcpuc_entries);
51 static inline int dst_entries_get_slow(struct dst_ops *dst) argument
53 return percpu_counter_sum_positive(&dst->pcpuc_entries);
57 static inline void dst_entries_add(struct dst_ops *dst, int val) argument
59 percpu_counter_add_batch(&dst
63 dst_entries_init(struct dst_ops *dst) argument
68 dst_entries_destroy(struct dst_ops *dst) argument
[all...]
/linux-master/include/linux/
H A Dtask_io_accounting_ops.h49 static inline void task_blk_io_accounting_add(struct task_io_accounting *dst, argument
52 dst->read_bytes += src->read_bytes;
53 dst->write_bytes += src->write_bytes;
54 dst->cancelled_write_bytes += src->cancelled_write_bytes;
85 static inline void task_blk_io_accounting_add(struct task_io_accounting *dst, argument
93 static inline void task_chr_io_accounting_add(struct task_io_accounting *dst, argument
96 dst->rchar += src->rchar;
97 dst->wchar += src->wchar;
98 dst->syscr += src->syscr;
99 dst
102 task_chr_io_accounting_add(struct task_io_accounting *dst, struct task_io_accounting *src) argument
108 task_io_accounting_add(struct task_io_accounting *dst, struct task_io_accounting *src) argument
[all...]
/linux-master/drivers/video/fbdev/core/
H A Dsyscopyarea.c28 bitcpy(struct fb_info *p, unsigned long *dst, unsigned dst_idx, argument
44 *dst = comp(*src, *dst, first);
49 *dst = comp(*src, *dst, first);
50 dst++;
58 *dst++ = *src++;
59 *dst++ = *src++;
60 *dst++ = *src++;
61 *dst
170 bitcpy_rev(struct fb_info *p, unsigned long *dst, unsigned dst_idx, const unsigned long *src, unsigned src_idx, unsigned bits, unsigned n) argument
[all...]
H A Dcfbfillrect.c35 bitfill_aligned(struct fb_info *p, unsigned long __iomem *dst, int dst_idx, argument
50 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); local
56 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); local
57 dst++;
64 FB_WRITEL(pat, dst++);
65 FB_WRITEL(pat, dst++);
66 FB_WRITEL(pat, dst++);
67 FB_WRITEL(pat, dst
79 FB_WRITEL(comp(pat, FB_READL(dst), last), dst); local
92 bitfill_unaligned(struct fb_info *p, unsigned long __iomem *dst, int dst_idx, unsigned long pat, int left, int right, unsigned n, int bits) argument
107 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); local
112 FB_WRITEL(comp(pat, FB_READL(dst), first), dst); local
138 FB_WRITEL(comp(pat, FB_READL(dst), last), dst); local
146 bitfill_aligned_rev(struct fb_info *p, unsigned long __iomem *dst, int dst_idx, unsigned long pat, unsigned n, int bits, u32 bswapmask) argument
217 bitfill_unaligned_rev(struct fb_info *p, 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 Dsysfillrect.c25 bitfill_aligned(struct fb_info *p, unsigned long *dst, int dst_idx, argument
40 *dst = comp(pat, *dst, first);
46 *dst = comp(pat, *dst, first);
47 dst++;
53 memset_l(dst, pat, n);
54 dst += n;
58 *dst = comp(pat, *dst, las
71 bitfill_unaligned(struct fb_info *p, unsigned long *dst, int dst_idx, unsigned long pat, int left, int right, unsigned n, int bits) argument
125 bitfill_aligned_rev(struct fb_info *p, unsigned long *dst, int dst_idx, unsigned long pat, unsigned n, int bits) argument
181 bitfill_unaligned_rev(struct fb_info *p, unsigned long *dst, int dst_idx, unsigned long pat, int left, int right, unsigned n, int bits) argument
239 unsigned long *dst; local
[all...]
/linux-master/net/ceph/
H A Darmor.c5 int ceph_armor(char *dst, const char *src, const char *end);
6 int ceph_unarmor(char *dst, const char *src, const char *end);
37 int ceph_armor(char *dst, const char *src, const char *end) argument
46 *dst++ = encode_bits(a >> 2);
49 *dst++ = encode_bits(((a & 3) << 4) | (b >> 4));
52 *dst++ = encode_bits(((b & 15) << 2) |
54 *dst++ = encode_bits(c & 63);
56 *dst++ = encode_bits((b & 15) << 2);
57 *dst++ = '=';
60 *dst
75 ceph_unarmor(char *dst, const char *src, const char *end) argument
[all...]

Completed in 562 milliseconds

1234567891011>>