Home
last modified time | relevance | path

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

/linux/drivers/video/fbdev/core/
A Dsysimgblt.c63 dst2 = dst1; in color_imageblit()
66 dst = dst1; in color_imageblit()
100 dst1 += p->fix.line_length; in color_imageblit()
112 void *dst1, u32 fgcolor, u32 bgcolor, in slow_imageblit() argument
123 dst2 = dst1; in slow_imageblit()
131 dst = dst1; in slow_imageblit()
166 dst1 += pitch; in slow_imageblit()
187 void *dst1, u32 fgcolor, u32 bgcolor) in fast_imageblit() argument
231 dst = dst1; in fast_imageblit()
283 dst1 += p->fix.line_length; in fast_imageblit()
[all …]
A Dcfbimgblt.c89 dst2 = (u32 __iomem *) dst1; in color_imageblit()
92 dst = (u32 __iomem *) dst1; in color_imageblit()
126 dst1 += p->fix.line_length; in color_imageblit()
138 u8 __iomem *dst1, u32 fgcolor, in slow_imageblit() argument
152 dst2 = (u32 __iomem *) dst1; in slow_imageblit()
160 dst = (u32 __iomem *) dst1; in slow_imageblit()
195 dst1 += pitch; in slow_imageblit()
261 dst = (u32 __iomem *)dst1; in fast_imageblit()
313 dst1 += p->fix.line_length; in fast_imageblit()
324 u8 __iomem *dst1; in cfb_imageblit() local
[all …]
/linux/tools/testing/selftests/bpf/progs/
A Dcpumask_success.c318 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2; in BPF_PROG() local
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()
357 bpf_cpumask_release(dst1); in BPF_PROG()
380 bpf_cpumask_or(dst1, cast(mask1), cast(mask2)); in BPF_PROG()
399 bpf_cpumask_release(dst1); in BPF_PROG()
418 bpf_cpumask_or(dst1, cast(mask1), cast(mask2)); in BPF_PROG()
432 bpf_cpumask_copy(dst2, cast(dst1)); in BPF_PROG()
[all …]
/linux/drivers/video/fbdev/
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
214 dst = (u32 __iomem *) dst1; in vt8623fb_cfb4_imageblit()
[all …]
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
249 dst = (u32 __iomem *) dst1; in arkfb_cfb4_imageblit()
[all …]
A Ds3fb.c352 u8 __iomem *dst1; in s3fb_iplan_imageblit() local
358 dst1 = info->screen_base + (image->dy * info->fix.line_length) in s3fb_iplan_imageblit()
363 dst = (u32 __iomem *) dst1; in s3fb_iplan_imageblit()
370 dst1 += info->fix.line_length; in s3fb_iplan_imageblit()
379 u8 __iomem *dst1; in s3fb_iplan_fillrect() local
383 dst1 = info->screen_base + (rect->dy * info->fix.line_length) in s3fb_iplan_fillrect()
387 dst = (u32 __iomem *) dst1; in s3fb_iplan_fillrect()
391 dst1 += info->fix.line_length; in s3fb_iplan_fillrect()
409 u8 __iomem *dst1; in s3fb_cfb4_imageblit() local
420 dst = (u32 __iomem *) dst1; in s3fb_cfb4_imageblit()
[all …]
/linux/Documentation/bpf/
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/
A Dpmtu.sh1122 dst1="${prefix4}.${b_r1}.1"
1126 dst1="${prefix6}:${b_r1}::1"
1142 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1800 ${dst1}
1146 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})"
1154 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})"
1227 dst1="${prefix4}.${b_r1}.1"
1272 dst1="${prefix4}.${b_r1}.1"
1281 UDP:"${dst1}":50000,tos="${dsfield}"
2286 dst1="${prefix4}.${b_r1}.1"
2291 dst1="${prefix6}:${b_r1}::1"
[all …]
/linux/net/ipv6/
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()
331 opt->nhoff = opt->dst1; in ipv6_destopt_rcv()
715 opt->dst0 = opt->dst1; in ipv6_rthdr_rcv()
716 opt->dst1 = 0; in ipv6_rthdr_rcv()
A Ddatagram.c718 if (np->rxopt.bits.odstopts && opt->dst1) { in ip6_datagram_recv_specific_ctl()
719 u8 *ptr = nh + opt->dst1; in ip6_datagram_recv_specific_ctl()
A Daf_inet6.c880 ((opt->dst1 || opt->dst0) && in ipv6_opt_accepted()
/linux/net/xfrm/
A Dxfrm_policy.c2711 dst_copy_metrics(dst1, dst); in xfrm_bundle_create()
2732 dst1->xfrm = xfrm[i]; in xfrm_bundle_create()
2736 dst1->lastuse = now; in xfrm_bundle_create()
2738 dst1->input = dst_discard; in xfrm_bundle_create()
3015 struct dst_entry *dst1; in xfrm_create_dummy_bundle() local
3028 dst1 = &xdst->u.dst; in xfrm_create_dummy_bundle()
3032 dst_copy_metrics(dst1, dst); in xfrm_create_dummy_bundle()
3035 dst1->flags |= DST_XFRM_QUEUE; in xfrm_create_dummy_bundle()
3036 dst1->lastuse = jiffies; in xfrm_create_dummy_bundle()
3038 dst1->input = dst_discard; in xfrm_create_dummy_bundle()
[all …]
/linux/include/linux/
A Dipv6.h138 __u16 dst1; member

Completed in 46 milliseconds