Home
last modified time | relevance | path

Searched refs:wmin (Results 1 – 9 of 9) sorted by relevance

/linux/include/trace/events/
H A Dwbt.h29 __field(u64, wmin)
43 __entry->wmin = stat[1].min;
49 "wmean=%llu, wmin=%llu, wmax=%llu, wsamples=%llu",
51 __entry->rnr_samples, __entry->wmean, __entry->wmin,
/linux/arch/x86/events/
H A Dcore.c826 int num, int wmin, int wmax, int gpmax) in perf_sched_init() argument
837 if (constraints[idx]->weight == wmin) in perf_sched_init()
842 sched->state.weight = wmin; in perf_sched_init()
975 int wmin, int wmax, int gpmax, int *assign) in perf_assign_events() argument
979 perf_sched_init(&sched, constraints, n, wmin, wmax, gpmax); in perf_assign_events()
996 int n0, i, wmin, wmax, unsched = 0; in x86_schedule_events() local
1013 for (i = 0, wmin = X86_PMC_IDX_MAX, wmax = 0; i < n; i++) { in x86_schedule_events()
1032 wmin = min(wmin, c->weight); in x86_schedule_events()
1094 unsched = perf_assign_events(cpuc->event_constraint, n, wmin, in x86_schedule_events()
[all...]
/linux/drivers/media/platform/mediatek/mdp3/
H A Dmdp_cfg_data.c1259 .wmin = 16,
1265 .wmin = 2,
1278 .wmin = 64,
1284 .wmin = 64,
H A Dmtk-mdp3-m2m.c617 default_format.fmt.pix_mp.width = limit->out_limit.wmin; in mdp_m2m_open()
/linux/drivers/media/platform/samsung/s3c-camif/
H A Dcamif-capture.c712 unsigned int wmin, hmin, sc_hrmax, sc_vrmax; in __camif_video_try_format() local
736 wmin = max_t(u32, pix_lim->min_out_width, crop->width / sc_hrmax); in __camif_video_try_format()
737 wmin = round_up(wmin, pix_lim->out_width_align); in __camif_video_try_format()
741 v4l_bound_align_image(&pix->width, wmin, pix_lim->max_sc_out_width, in __camif_video_try_format()
751 pr_debug("%ux%u, wmin: %d, hmin: %d, sc_hrmax: %d, sc_vrmax: %d\n", in __camif_video_try_format()
752 pix->width, pix->height, wmin, hmin, sc_hrmax, sc_vrmax); in __camif_video_try_format()
/linux/arch/x86/events/intel/
H A Duncore.c458 int i, wmin, wmax, ret = 0; in uncore_assign_events() local
463 for (i = 0, wmin = UNCORE_PMC_IDX_MAX, wmax = 0; i < n; i++) { in uncore_assign_events()
466 wmin = min(wmin, c->weight); in uncore_assign_events()
494 wmin, wmax, n, assign); in uncore_assign_events()
/linux/include/media/
H A Dv4l2-common.h354 * @wmin: minimum width.
364 * Clip an image to have @width between @wmin and @wmax, and @height between
375 * #. @wmax must not be smaller than @wmin.
379 * #. @wmin and @hmin must be at least 1 (don't use 0).
386 void v4l_bound_align_image(unsigned int *width, unsigned int wmin,
/linux/drivers/mtd/nand/raw/
H A Dnandsim.c442 unsigned long wmin = -1, wmax = 0, avg; in ns_show() local
449 if (wear < wmin) in ns_show()
450 wmin = wear; in ns_show()
478 seq_printf(m, "Minimum number of erases: %lu\n", wmin); in ns_show()
/linux/drivers/media/platform/mediatek/mdp/
H A Dmtk_mdp_m2m.c151 static void mtk_mdp_bound_align_image(u32 *w, unsigned int wmin, in mtk_mdp_bound_align_image() argument
163 v4l_bound_align_image(w, wmin, wmax, walign, h, hmin, hmax, halign, 0); in mtk_mdp_bound_align_image()