| /linux/tools/testing/selftests/bpf/progs/ |
| A D | cpumask_success.c | 318 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2; in BPF_PROG() local 348 bpf_cpumask_xor(dst2, cast(mask1), cast(mask2)); in BPF_PROG() 349 if (!bpf_cpumask_equal(cast(dst1), cast(dst2))) { in BPF_PROG() 358 bpf_cpumask_release(dst2); in BPF_PROG() 365 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2; in BPF_PROG() local 400 bpf_cpumask_release(dst2); in BPF_PROG() 407 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2; in BPF_PROG() local 426 cpu = bpf_cpumask_any_distribute(cast(dst2)); in BPF_PROG() 432 bpf_cpumask_copy(dst2, cast(dst1)); in BPF_PROG() 438 cpu = bpf_cpumask_any_distribute(cast(dst2)); in BPF_PROG() [all …]
|
| /linux/drivers/video/fbdev/core/ |
| A D | sysimgblt.c | 56 u32 *dst, *dst2; in color_imageblit() local 63 dst2 = dst1; in color_imageblit() 102 dst2 += p->fix.line_length; in color_imageblit() 103 dst1 = (u8 *)((long)dst2 & ~(sizeof(u32) - 1)); in color_imageblit() 116 u32 *dst, *dst2; in slow_imageblit() local 123 dst2 = dst1; in slow_imageblit() 169 dst2 += pitch; in slow_imageblit() 170 dst1 = (u8 *)((long)dst2 & ~(sizeof(u32) - 1)); in slow_imageblit()
|
| A D | cfbimgblt.c | 81 u32 __iomem *dst, *dst2; in color_imageblit() local 89 dst2 = (u32 __iomem *) dst1; in color_imageblit() 128 dst2 += p->fix.line_length; in color_imageblit() 129 dst1 = (u8 __iomem *)((long __force)dst2 & ~(sizeof(u32) - 1)); in color_imageblit() 144 u32 __iomem *dst, *dst2; in slow_imageblit() local 152 dst2 = (u32 __iomem *) dst1; in slow_imageblit() 198 dst2 += pitch; in slow_imageblit() 199 dst1 = (u8 __iomem *)((long __force)dst2 & ~(sizeof(u32) - 1)); in slow_imageblit()
|
| A D | svgalib.c | 244 u16 __iomem *dst2 = dst; in svga_tilecopy() local 246 fb_writew(fb_readw(src2), dst2); in svga_tilecopy() 249 dst2 += colstride; in svga_tilecopy()
|
| /linux/tools/testing/selftests/net/ |
| A D | pmtu.sh | 1123 dst2="${prefix4}.${b_r2}.1" 1127 dst2="${prefix6}:${b_r2}::1" 1143 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1800 ${dst2} 1228 dst2="${prefix4}.${b_r2}.1" 1273 dst2="${prefix4}.${b_r2}.1" 1285 UDP:"${dst2}":50000,tos="${dsfield}" 2179 dst2="${prefix4}.${b_r2}.1" 2206 run_cmd ${ns_a} ping -q -M want -i 0.1 -c 2 -s 1800 "${dst2}" 2233 dst2="${prefix6}:${b_r2}::1" 2287 dst2="${prefix4}.${b_r2}.1" [all …]
|
| /linux/net/ipv6/ |
| A D | icmp.c | 359 struct dst_entry *dst, *dst2; in icmpv6_route_lookup() local 379 dst2 = dst; in icmpv6_route_lookup() 383 if (dst != dst2) in icmpv6_route_lookup() 396 err = ip6_dst_lookup(net, sk, &dst2, &fl2); in icmpv6_route_lookup() 400 dst2 = xfrm_lookup(net, dst2, flowi6_to_flowi(&fl2), sk, XFRM_LOOKUP_ICMP); in icmpv6_route_lookup() 401 if (!IS_ERR(dst2)) { in icmpv6_route_lookup() 403 dst = dst2; in icmpv6_route_lookup() 405 err = PTR_ERR(dst2); in icmpv6_route_lookup() 408 return dst2; in icmpv6_route_lookup()
|
| /linux/Documentation/bpf/ |
| A D | cpumasks.rst | 291 struct bpf_cpumask *mask1, *mask2, *dst1, *dst2; 321 bpf_cpumask_xor(dst2, (const struct cpumask *)mask1, (const struct cpumask *)mask2); 323 (const struct cpumask *)dst2)) 331 bpf_cpumask_release(dst2);
|
| /linux/net/ipv4/ |
| A D | icmp.c | 490 struct dst_entry *dst, *dst2; in icmp_route_lookup() local 560 dst2 = xfrm_lookup(net, &rt2->dst, flowi4_to_flowi(&fl4_dec), NULL, in icmp_route_lookup() 562 rt2 = dst_rtable(dst2); in icmp_route_lookup() 563 if (!IS_ERR(dst2)) { in icmp_route_lookup() 567 } else if (PTR_ERR(dst2) == -EPERM) { in icmp_route_lookup() 572 err = PTR_ERR(dst2); in icmp_route_lookup()
|
| /linux/mm/ |
| A D | migrate.c | 1719 struct folio *folio, *folio2, *dst = NULL, *dst2; in migrate_pages_batch() local 1891 dst2 = list_next_entry(dst, lru); in migrate_pages_batch() 1923 dst = dst2; in migrate_pages_batch() 1924 dst2 = list_next_entry(dst, lru); in migrate_pages_batch() 1935 dst2 = list_next_entry(dst, lru); in migrate_pages_batch() 1945 dst = dst2; in migrate_pages_batch() 1946 dst2 = list_next_entry(dst, lru); in migrate_pages_batch()
|
| /linux/fs/bcachefs/ |
| A D | bkey.h | 409 struct bkey dst2 = __bch2_bkey_unpack_key(&b->format, src); in __bkey_unpack_key_format_checked() local 411 BUG_ON(memcmp(dst, &dst2, sizeof(*dst))); in __bkey_unpack_key_format_checked()
|
| /linux/net/xfrm/ |
| A D | xfrm_policy.c | 3631 struct dst_entry *dst2; in xfrm_out_fwd_icmp() local 3639 dst2 = xfrm_lookup(net, dst, &fl1, NULL, (XFRM_LOOKUP_QUEUE | XFRM_LOOKUP_ICMP)); in xfrm_out_fwd_icmp() 3641 if (IS_ERR(dst2)) in xfrm_out_fwd_icmp() 3644 if (dst2->xfrm) { in xfrm_out_fwd_icmp() 3646 dst = dst2; in xfrm_out_fwd_icmp() 3648 dst_release(dst2); in xfrm_out_fwd_icmp()
|