Home
last modified time | relevance | path

Searched refs:to_match (Results 1 – 7 of 7) sorted by relevance

/linux-5.19.10/samples/bpf/ !
Dxdp_sample.bpf.c30 const volatile int to_match[32] = {}; variable
190 if (!IN_SET(to_match, dev->ifindex)) in BPF_PROG()
218 if (!IN_SET(to_match, idx_out)) in BPF_PROG()
252 if (!IN_SET(to_match, idx_out)) in BPF_PROG()
Dxdp_redirect_user.c117 skel->rodata->to_match[0] = ifindex_out; in main()
Dxdp_redirect_map_user.c140 skel->rodata->to_match[0] = ifindex_out; in main()
Dxdp_redirect_map_multi_user.c158 skel->rodata->to_match[i] = ifaces[i]; in main()
Dxdp_redirect_cpu_user.c488 skel->rodata->to_match[0] = if_nametoindex(redir_interface); in main()
/linux-5.19.10/drivers/gpu/drm/ !
Ddrm_edid.c3617 static u8 drm_match_cea_mode_clock_tolerance(const struct drm_display_mode *to_match, in drm_match_cea_mode_clock_tolerance() argument
3623 if (!to_match->clock) in drm_match_cea_mode_clock_tolerance()
3626 if (to_match->picture_aspect_ratio) in drm_match_cea_mode_clock_tolerance()
3639 if (abs(to_match->clock - clock1) > clock_tolerance && in drm_match_cea_mode_clock_tolerance()
3640 abs(to_match->clock - clock2) > clock_tolerance) in drm_match_cea_mode_clock_tolerance()
3644 if (drm_mode_match(to_match, &cea_mode, match_flags)) in drm_match_cea_mode_clock_tolerance()
3659 u8 drm_match_cea_mode(const struct drm_display_mode *to_match) in drm_match_cea_mode() argument
3664 if (!to_match->clock) in drm_match_cea_mode()
3667 if (to_match->picture_aspect_ratio) in drm_match_cea_mode()
3680 if (KHZ2PICOS(to_match->clock) != KHZ2PICOS(clock1) && in drm_match_cea_mode()
[all …]
/linux-5.19.10/include/drm/ !
Ddrm_edid.h559 u8 drm_match_cea_mode(const struct drm_display_mode *to_match);