Home
last modified time | relevance | path

Searched refs:dst1 (Results 1 – 10 of 10) sorted by relevance

/linux/tools/testing/selftests/bpf/progs/
H A Dcpumask_success.c318 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2; in BPF_PROG() local
323 if (!create_cpumask_set(&mask1, &mask2, &dst1, &dst2)) in BPF_PROG()
329 if (bpf_cpumask_and(dst1, cast(mask1), cast(mask2))) { in BPF_PROG()
333 if (!bpf_cpumask_empty(cast(dst1))) { in BPF_PROG()
338 bpf_cpumask_or(dst1, cast(mask1), cast(mask2)); in BPF_PROG()
339 if (!bpf_cpumask_test_cpu(0, cast(dst1))) { in BPF_PROG()
343 if (!bpf_cpumask_test_cpu(1, cast(dst1))) { in BPF_PROG()
349 if (!bpf_cpumask_equal(cast(dst1), cast(dst2))) { in BPF_PROG()
357 bpf_cpumask_release(dst1); in BPF_PROG()
365 struct bpf_cpumask *mask1, *mask2, *dst1, *dst in BPF_PROG() local
407 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2; BPF_PROG() local
[all...]
/linux/drivers/video/fbdev/
H A Dvt8623fb.c147 u8 __iomem *dst1; in vt8623fb_iplan_imageblit() local
153 dst1 = info->screen_base + (image->dy * info->fix.line_length) in vt8623fb_iplan_imageblit()
158 dst = (u32 __iomem *) dst1; in vt8623fb_iplan_imageblit()
165 dst1 += info->fix.line_length; in vt8623fb_iplan_imageblit()
173 u8 __iomem *dst1; in vt8623fb_iplan_fillrect() local
177 dst1 = info->screen_base + (rect->dy * info->fix.line_length) in vt8623fb_iplan_fillrect()
181 dst = (u32 __iomem *) dst1; in vt8623fb_iplan_fillrect()
185 dst1 += info->fix.line_length; in vt8623fb_iplan_fillrect()
203 u8 __iomem *dst1; in vt8623fb_cfb4_imageblit() local
209 dst1 = info->screen_base + (image->dy * info->fix.line_length) in vt8623fb_cfb4_imageblit()
[all …]
H A Darkfb.c180 u8 __iomem *dst1; in arkfb_iplan_imageblit() local
186 dst1 = info->screen_base + (image->dy * info->fix.line_length) in arkfb_iplan_imageblit()
191 dst = (u32 __iomem *) dst1; in arkfb_iplan_imageblit()
198 dst1 += info->fix.line_length; in arkfb_iplan_imageblit()
207 u8 __iomem *dst1; in arkfb_iplan_fillrect() local
211 dst1 = info->screen_base + (rect->dy * info->fix.line_length) in arkfb_iplan_fillrect()
215 dst = (u32 __iomem *) dst1; in arkfb_iplan_fillrect()
219 dst1 += info->fix.line_length; in arkfb_iplan_fillrect()
238 u8 __iomem *dst1; in arkfb_cfb4_imageblit() local
244 dst1 = info->screen_base + (image->dy * info->fix.line_length) in arkfb_cfb4_imageblit()
[all …]
H A Ds3fb.c356 u8 __iomem *dst1; in s3fb_iplan_imageblit() local
362 dst1 = info->screen_base + (image->dy * info->fix.line_length) in s3fb_iplan_imageblit()
367 dst = (u32 __iomem *) dst1; in s3fb_iplan_imageblit()
374 dst1 += info->fix.line_length; in s3fb_iplan_imageblit()
383 u8 __iomem *dst1; in s3fb_iplan_fillrect() local
387 dst1 = info->screen_base + (rect->dy * info->fix.line_length) in s3fb_iplan_fillrect()
391 dst = (u32 __iomem *) dst1; in s3fb_iplan_fillrect()
395 dst1 += info->fix.line_length; in s3fb_iplan_fillrect()
413 u8 __iomem *dst1; in s3fb_cfb4_imageblit() local
419 dst1 = info->screen_base + (image->dy * info->fix.line_length) in s3fb_cfb4_imageblit()
[all …]
/linux/Documentation/bpf/
H A Dcpumasks.rst291 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2;
307 bpf_cpumask_and(dst1, (const struct cpumask *)mask1, (const struct cpumask *)mask2);
308 if (!bpf_cpumask_empty((const struct cpumask *)dst1))
312 bpf_cpumask_or(dst1, (const struct cpumask *)mask1, (const struct cpumask *)mask2);
313 if (!bpf_cpumask_test_cpu(0, (const struct cpumask *)dst1))
317 if (!bpf_cpumask_test_cpu(1, (const struct cpumask *)dst1))
322 if (!bpf_cpumask_equal((const struct cpumask *)dst1,
330 bpf_cpumask_release(dst1);
/linux/tools/testing/selftests/net/
H A Dpmtu.sh1170 dst1="${prefix4}.${b_r1}.1"
1174 dst1="${prefix6}:${b_r1}::1"
1190 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1800 ${dst1}
1194 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})"
1202 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})"
1211 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})"
1275 dst1="${prefix4}.${b_r1}.1"
1280 run_cmd "${ns_a}" ping -q -M want -Q "${dsfield}" -c 1 -w 1 -s "${len}" "${dst1}"
1286 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" "${dst1}" dsfield "${policy_mark}")"
1320 dst1
[all...]
/linux/net/ipv6/
H A Dexthdrs.c243 opt->dsthao = opt->dst1; in ipv6_dest_hao()
244 opt->dst1 = 0; in ipv6_dest_hao()
320 opt->lastopt = opt->dst1 = skb_network_header_len(skb); in ipv6_destopt_rcv()
322 dstbuf = opt->dst1; in ipv6_destopt_rcv()
332 opt->nhoff = opt->dst1; in ipv6_destopt_rcv()
718 opt->dst0 = opt->dst1; in ipv6_rthdr_rcv()
719 opt->dst1 = 0; in ipv6_rthdr_rcv()
H A Daf_inet6.c868 ((opt->dst1 || opt->dst0) && in ipv6_opt_accepted()
/linux/net/xfrm/
H A Dxfrm_policy.c2697 struct dst_entry *dst1 = &xdst->u.dst; in xfrm_bundle_create() local
2726 dst_copy_metrics(dst1, dst); in xfrm_bundle_create()
2747 dst1->xfrm = xfrm[i]; in xfrm_bundle_create()
2750 dst1->obsolete = DST_OBSOLETE_FORCE_CHK; in xfrm_bundle_create()
2751 dst1->lastuse = now; in xfrm_bundle_create()
2753 dst1->input = dst_discard; in xfrm_bundle_create()
2756 dst1->output = xfrm[i]->mode_cbs->output; in xfrm_bundle_create()
2761 dst1->output = afinfo->output; in xfrm_bundle_create()
2763 dst1->output = dst_discard_out; in xfrm_bundle_create()
3034 struct dst_entry *dst1; in xfrm_create_dummy_bundle() local
[all …]
/linux/include/linux/
H A Dipv6.h161 __u16 dst1; member