Home
last modified time | relevance | path

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

/openbmc/linux/samples/bpf/
H A 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()
/openbmc/linux/drivers/gpu/drm/
H A Ddrm_edid.c4253 static u8 drm_match_cea_mode_clock_tolerance(const struct drm_display_mode *to_match, in drm_match_cea_mode_clock_tolerance() argument
4259 if (!to_match->clock) in drm_match_cea_mode_clock_tolerance()
4262 if (to_match->picture_aspect_ratio) in drm_match_cea_mode_clock_tolerance()
4275 if (abs(to_match->clock - clock1) > clock_tolerance && in drm_match_cea_mode_clock_tolerance()
4276 abs(to_match->clock - clock2) > clock_tolerance) in drm_match_cea_mode_clock_tolerance()
4280 if (drm_mode_match(to_match, &cea_mode, match_flags)) in drm_match_cea_mode_clock_tolerance()
4295 u8 drm_match_cea_mode(const struct drm_display_mode *to_match) in drm_match_cea_mode() argument
4300 if (!to_match->clock) in drm_match_cea_mode()
4303 if (to_match->picture_aspect_ratio) in drm_match_cea_mode()
4316 if (KHZ2PICOS(to_match->clock) != KHZ2PICOS(clock1) && in drm_match_cea_mode()
[all …]
/openbmc/linux/include/drm/
H A Ddrm_edid.h575 u8 drm_match_cea_mode(const struct drm_display_mode *to_match);