Home
last modified time | relevance | path

Searched refs:vact (Results 1 – 6 of 6) sorted by relevance

/external/libkmsxx/kms++/src/
Dmode_cvt.cpp53 Videomode videomode_from_cvt(uint32_t hact, uint32_t vact, uint32_t refresh, bool ilace, bool reduc… in videomode_from_cvt() argument
63 float V_LINES = vact; in videomode_from_cvt()
73 if (hact * 3 == vact * 4) in videomode_from_cvt()
75 else if (hact * 9 == vact * 16) in videomode_from_cvt()
77 else if (hact * 10 == vact * 16) in videomode_from_cvt()
79 else if (hact == 1280 && (vact == 1024 || vact == 768)) in videomode_from_cvt()
Dvideomode.cpp103 uint16_t vact, uint16_t vfp, uint16_t vsw, uint16_t vbp) in videomode_from_timings() argument
113 m.vdisplay = vact; in videomode_from_timings()
114 m.vsync_start = vact + vfp; in videomode_from_timings()
115 m.vsync_end = vact + vfp + vsw; in videomode_from_timings()
116 m.vtotal = vact + vfp + vsw + vbp; in videomode_from_timings()
Dmodedb_dmt.cpp14 #define DRM_MODE(nm, c, hact, hfp, hsw, hbp, vact, vfp, vsw, vbp, f) \ argument
18 ….vdisplay = (vact), .vsync_start = (vact) + (vfp), .vsync_end = (vact) + (vfp) + (vsw), .vtotal = …
19 ….vrefresh = DIV_ROUND(c * 1000, ((hact) + (hfp) + (hsw) + (hbp)) * ((vact) + (vfp) + (vsw) + (vbp)…
/external/libkmsxx/kms++/inc/kms++/
Dmode_cvt.h8 Videomode videomode_from_cvt(uint32_t hact, uint32_t vact, uint32_t refresh, bool ilace, bool reduc…
Dvideomode.h57 uint16_t vact, uint16_t vfp, uint16_t vsw, uint16_t vbp);
/external/libkmsxx/utils/
Dkmstest.cpp210 unsigned vact = stoul(sm[9]); in parse_crtc() local
216 output.mode = videomode_from_timings(clock / 1000, hact, hfp, hsw, hbp, vact, vfp, vsw, vbp); in parse_crtc()