Lines Matching refs:t
3224 struct videomode t = *vm; in dispc_mgr_set_timings() local
3226 DSSDBG("channel %d xres %u yres %u\n", channel, t.hactive, t.vactive); in dispc_mgr_set_timings()
3228 if (dispc_mgr_check_timings(dispc, channel, &t)) { in dispc_mgr_set_timings()
3234 _dispc_mgr_set_lcd_timings(dispc, channel, &t); in dispc_mgr_set_timings()
3236 xtot = t.hactive + t.hfront_porch + t.hsync_len + t.hback_porch; in dispc_mgr_set_timings()
3237 ytot = t.vactive + t.vfront_porch + t.vsync_len + t.vback_porch; in dispc_mgr_set_timings()
3244 t.hsync_len, t.hfront_porch, t.hback_porch, in dispc_mgr_set_timings()
3245 t.vsync_len, t.vfront_porch, t.vback_porch); in dispc_mgr_set_timings()
3247 vm_flag_to_int(t.flags, DISPLAY_FLAGS_VSYNC_HIGH, DISPLAY_FLAGS_VSYNC_LOW), in dispc_mgr_set_timings()
3248 vm_flag_to_int(t.flags, DISPLAY_FLAGS_HSYNC_HIGH, DISPLAY_FLAGS_HSYNC_LOW), in dispc_mgr_set_timings()
3249 vm_flag_to_int(t.flags, DISPLAY_FLAGS_PIXDATA_POSEDGE, DISPLAY_FLAGS_PIXDATA_NEGEDGE), in dispc_mgr_set_timings()
3250 vm_flag_to_int(t.flags, DISPLAY_FLAGS_DE_HIGH, DISPLAY_FLAGS_DE_LOW), in dispc_mgr_set_timings()
3251 vm_flag_to_int(t.flags, DISPLAY_FLAGS_SYNC_POSEDGE, DISPLAY_FLAGS_SYNC_NEGEDGE)); in dispc_mgr_set_timings()
3255 if (t.flags & DISPLAY_FLAGS_INTERLACED) in dispc_mgr_set_timings()
3256 t.vactive /= 2; in dispc_mgr_set_timings()
3260 !!(t.flags & DISPLAY_FLAGS_DOUBLECLK), in dispc_mgr_set_timings()
3264 dispc_mgr_set_size(dispc, channel, t.hactive, t.vactive); in dispc_mgr_set_timings()