Home
last modified time | relevance | path

Searched refs:cvt (Results 1 – 25 of 29) sorted by relevance

12

/openbmc/linux/drivers/video/fbdev/core/
H A Dfbcvt.c73 static u32 fb_cvt_hperiod(struct fb_cvt_data *cvt) in fb_cvt_hperiod() argument
75 u32 num = 1000000000/cvt->f_refresh; in fb_cvt_hperiod()
78 if (cvt->flags & FB_CVT_FLAG_REDUCED_BLANK) { in fb_cvt_hperiod()
80 den = 2 * (cvt->yres/cvt->interlace + 2 * cvt->v_margin); in fb_cvt_hperiod()
83 den = 2 * (cvt->yres/cvt->interlace + cvt->v_margin * 2 in fb_cvt_hperiod()
84 + FB_CVT_MIN_VPORCH + cvt->interlace/2); in fb_cvt_hperiod()
91 static u32 fb_cvt_ideal_duty_cycle(struct fb_cvt_data *cvt) in fb_cvt_ideal_duty_cycle() argument
96 u32 h_period_est = cvt->hperiod; in fb_cvt_ideal_duty_cycle()
101 static u32 fb_cvt_hblank(struct fb_cvt_data *cvt) in fb_cvt_hblank() argument
105 if (cvt->flags & FB_CVT_FLAG_REDUCED_BLANK) in fb_cvt_hblank()
[all …]
H A Dmodedb.c653 int yres_specified = 0, cvt = 0, rb = 0; in fb_find_mode() local
667 if (cvt || rb) in fb_find_mode()
668 cvt = 0; in fb_find_mode()
678 if (cvt || rb) in fb_find_mode()
679 cvt = 0; in fb_find_mode()
695 cvt = 1; in fb_find_mode()
698 if (!cvt) in fb_find_mode()
702 if (!cvt) in fb_find_mode()
706 if (!cvt) { in fb_find_mode()
712 if (!cvt) { in fb_find_mode()
[all …]
/openbmc/linux/sound/core/
H A Dump_convert.c245 static int cvt_legacy_sysex_to_ump(struct ump_cvt_to_ump *cvt, in cvt_legacy_sysex_to_ump() argument
249 bool start = cvt->in_sysex == 1; in cvt_legacy_sysex_to_ump()
260 *data = ump_compose(UMP_MSG_TYPE_DATA, group, status, cvt->len); in cvt_legacy_sysex_to_ump()
262 for (i = 0; i < cvt->len; i++) { in cvt_legacy_sysex_to_ump()
263 *data |= cvt->buf[i] << offset; in cvt_legacy_sysex_to_ump()
270 cvt->len = 0; in cvt_legacy_sysex_to_ump()
272 cvt->in_sysex = 0; in cvt_legacy_sysex_to_ump()
274 cvt->in_sysex++; in cvt_legacy_sysex_to_ump()
279 static int cvt_legacy_system_to_ump(struct ump_cvt_to_ump *cvt, in cvt_legacy_system_to_ump() argument
282 data[0] = ump_compose(UMP_MSG_TYPE_SYSTEM, group, 0, cvt->buf[0]); in cvt_legacy_system_to_ump()
[all …]
/openbmc/linux/sound/soc/codecs/
H A Dhdac_hdmi.c102 struct hdac_hdmi_cvt *cvt; member
117 struct hdac_hdmi_cvt *cvt; member
145 struct hdac_hdmi_cvt *cvt) in hdac_hdmi_get_pcm_from_cvt() argument
150 if (pcm->cvt == cvt) in hdac_hdmi_get_pcm_from_cvt()
364 struct hdac_hdmi_cvt *cvt = pcm->cvt; in hdac_hdmi_setup_audio_infoframe() local
376 hdmi->chmap.ops.set_channel_count(hdev, cvt->nid, channels); in hdac_hdmi_setup_audio_infoframe()
457 pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, dai_map->cvt); in hdac_hdmi_set_stream()
479 pcm = hdac_hdmi_get_pcm_from_cvt(hdmi, dai_map->cvt); in hdac_hdmi_set_hw_params()
528 struct hdac_hdmi_cvt *cvt) in hdac_hdmi_get_port_from_cvt() argument
535 if (pcm->cvt == cvt) { in hdac_hdmi_get_port_from_cvt()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/xserver-xorg-cvt/
H A Dxserver-xorg-cvt-native_1.20.10.bb1 SUMMARY = "X.Org X cvt"
2 HOMEPAGE = "https://linux.die.net/man/1/cvt"
30 ${CC} $CFLAGS -o ${B}/cvt \
31 ${S}/hw/xfree86/utils/cvt/cvt.c \
39 install -m 755 ${B}/cvt ${D}${bindir}
/openbmc/linux/drivers/gpu/drm/tests/
H A Ddrm_cmdline_parser_test.c26 KUNIT_EXPECT_FALSE(test, mode.cvt); in drm_test_cmdline_force_e_only()
44 KUNIT_EXPECT_FALSE(test, mode.cvt); in drm_test_cmdline_force_D_only_not_digital()
66 KUNIT_EXPECT_FALSE(test, mode.cvt); in drm_test_cmdline_force_D_only_hdmi()
88 KUNIT_EXPECT_FALSE(test, mode.cvt); in drm_test_cmdline_force_D_only_dvi()
106 KUNIT_EXPECT_FALSE(test, mode.cvt); in drm_test_cmdline_force_d_only()
128 KUNIT_EXPECT_FALSE(test, mode.cvt); in drm_test_cmdline_res()
150 KUNIT_EXPECT_TRUE(test, mode.cvt); in drm_test_cmdline_res_vesa()
172 KUNIT_EXPECT_TRUE(test, mode.cvt); in drm_test_cmdline_res_vesa_rblank()
194 KUNIT_EXPECT_FALSE(test, mode.cvt); in drm_test_cmdline_res_rblank()
217 KUNIT_EXPECT_FALSE(test, mode.cvt); in drm_test_cmdline_res_bpp()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/ltrace/ltrace/
H A D0001-Use-correct-enum-type.patch23 - enum fetch_method cvt = CVT_NOP;
24 + enum convert_method cvt = CVT_NOP;
/openbmc/linux/include/sound/
H A Dump_convert.h37 void snd_ump_convert_to_ump(struct ump_cvt_to_ump *cvt, unsigned char group,
/openbmc/openbmc/poky/meta/recipes-graphics/xorg-lib/
H A Dlibxcvt_0.1.3.bb18 ${bindir}/cvt \
/openbmc/linux/lib/zlib_dfltcc/
H A Ddfltcc.h47 unsigned cvt : 1; /* Check Value Type */ member
H A Ddfltcc_inflate.c128 param->cvt = CVT_ADLER32; in dfltcc_inflate()
H A Ddfltcc_deflate.c220 param->cvt = CVT_ADLER32; in dfltcc_deflate()
/openbmc/qemu/target/ppc/
H A Dint_helper.c439 static inline to_type cvt##from##to(from_type x, int *sat) \
455 static inline to_type cvt##from##to(from_type x, int *sat) \
537 #define VARITHSAT_CASE(type, op, cvt, element) \ argument
540 r->element[i] = cvt(result, &sat); \
543 #define VARITHSAT_DO(name, op, optype, cvt, element) \ argument
551 VARITHSAT_CASE(optype, op, cvt, element); \
557 #define VARITHSAT_SIGNED(suffix, element, optype, cvt) \ argument
558 VARITHSAT_DO(ADDS##suffix##S, +, optype, cvt, element) \
559 VARITHSAT_DO(SUBS##suffix##S, -, optype, cvt, element)
560 #define VARITHSAT_UNSIGNED(suffix, element, optype, cvt) \ argument
[all …]
H A Dfpu_helper.c556 #define FPU_FCTI(op, cvt, nanval) \ argument
559 uint64_t ret = float64_to_##cvt(arg, &env->fp_status); \
/openbmc/linux/include/drm/
H A Ddrm_edid.h132 } __attribute__((packed)) cvt; member
165 struct cvt_timing cvt[4]; member
H A Ddrm_connector.h1432 bool cvt; member
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/mutter/
H A Dmutter_47.4.bb6 xserver-xorg-cvt-native \
/openbmc/linux/drivers/media/test-drivers/vivid/
H A Dvivid-vid-cap.c1469 struct v4l2_dv_timings cvt = {}; in valid_cvt_gtf_timings() local
1473 &vivid_dv_timings_cap, &cvt) && in valid_cvt_gtf_timings()
1474 cvt.bt.width == bt->width && cvt.bt.height == bt->height) { in valid_cvt_gtf_timings()
1475 *timings = cvt; in valid_cvt_gtf_timings()
/openbmc/linux/drivers/gpu/drm/
H A Ddrm_modes.c2034 bool rb = false, cvt = false; in drm_mode_parse_cmdline_res_mode() local
2059 cvt = true; in drm_mode_parse_cmdline_res_mode()
2086 mode->cvt = cvt; in drm_mode_parse_cmdline_res_mode()
2551 else if (cmd->cvt) in drm_mode_create_from_cmdline_mode()
H A Ddrm_edid.c3099 BUILD_BUG_ON(offsetof(typeof(*descriptor), data.other_data.data.range.formula.cvt.flags) != 15); in is_rb()
3102 descriptor->data.other_data.data.range.formula.cvt.flags & DRM_EDID_CVT_FLAGS_REDUCED_BLANKING) in is_rb()
3964 const struct cvt_timing *cvt; in drm_cvt_modes() local
3971 cvt = &(timing->data.other_data.data.cvt[i]); in drm_cvt_modes()
3973 if (!memcmp(cvt->code, empty, 3)) in drm_cvt_modes()
3976 height = (cvt->code[0] + ((cvt->code[1] & 0xf0) << 4) + 1) * 2; in drm_cvt_modes()
3977 switch (cvt->code[1] & 0x0c) { in drm_cvt_modes()
3995 if (cvt->code[2] & (1 << j)) { in drm_cvt_modes()
/openbmc/linux/drivers/net/wireless/st/cw1200/
H A Dwsm.c42 #define __WSM_GET(buf, type, type2, cvt) \ argument
47 val = cvt(*(type2 *)(buf)->data); \
65 #define __WSM_PUT(buf, val, type, type2, cvt) \ argument
70 *(type2 *)(buf)->data = cvt(val); \
/openbmc/linux/drivers/usb/gadget/function/
H A Df_midi2.c1056 struct ump_cvt_to_ump *cvt = &midi2->midi1_ump_cvt; in f_midi2_midi1_ep_out_complete() local
1079 snd_ump_convert_to_ump(cvt, group, in f_midi2_midi1_ep_out_complete()
1082 if (cvt->ump_bytes) { in f_midi2_midi1_ep_out_complete()
1083 snd_ump_receive(ep->ump, cvt->ump, in f_midi2_midi1_ep_out_complete()
1084 cvt->ump_bytes); in f_midi2_midi1_ep_out_complete()
1085 cvt->ump_bytes = 0; in f_midi2_midi1_ep_out_complete()
/openbmc/linux/drivers/gpu/drm/tiny/
H A Dgm12u320.c506 .data.other_data.data.range.formula.cvt = {
/openbmc/qemu/target/mips/
H A Dhelper.h79 FOP_PROTO(cvt)
/openbmc/rest-dbus/resources/
H A Djsrender.min.js3 …a=d&&d.tag,a||(a=p(new te._tg,{_:{inline:!d,bnd:s,unlinked:!0},tagName:":",cvt:e,flow:!0,tagCtx:n}… property in AnonymousFunctionba77119e0100.v.AnonymousClassba77119e0401

12