HomeSort by: relevance | last modified time | path
    Searched refs:vsub (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/
drm_fourcc.c 165 { .format = DRM_FORMAT_C8, .depth = 8, .num_planes = 1, .cpp = { 1, 0, 0 }, .hsub = 1, .vsub = 1 },
166 { .format = DRM_FORMAT_RGB332, .depth = 8, .num_planes = 1, .cpp = { 1, 0, 0 }, .hsub = 1, .vsub = 1 },
167 { .format = DRM_FORMAT_BGR233, .depth = 8, .num_planes = 1, .cpp = { 1, 0, 0 }, .hsub = 1, .vsub = 1 },
168 { .format = DRM_FORMAT_XRGB4444, .depth = 0, .num_planes = 1, .cpp = { 2, 0, 0 }, .hsub = 1, .vsub = 1 },
169 { .format = DRM_FORMAT_XBGR4444, .depth = 0, .num_planes = 1, .cpp = { 2, 0, 0 }, .hsub = 1, .vsub = 1 },
170 { .format = DRM_FORMAT_RGBX4444, .depth = 0, .num_planes = 1, .cpp = { 2, 0, 0 }, .hsub = 1, .vsub = 1 },
171 { .format = DRM_FORMAT_BGRX4444, .depth = 0, .num_planes = 1, .cpp = { 2, 0, 0 }, .hsub = 1, .vsub = 1 },
172 { .format = DRM_FORMAT_ARGB4444, .depth = 0, .num_planes = 1, .cpp = { 2, 0, 0 }, .hsub = 1, .vsub = 1, .has_alpha = true },
173 { .format = DRM_FORMAT_ABGR4444, .depth = 0, .num_planes = 1, .cpp = { 2, 0, 0 }, .hsub = 1, .vsub = 1, .has_alpha = true },
174 { .format = DRM_FORMAT_RGBA4444, .depth = 0, .num_planes = 1, .cpp = { 2, 0, 0 }, .hsub = 1, .vsub = 1, .has_alpha = true }
    [all...]
drm_framebuffer.c 174 return DIV_ROUND_UP(height, format->vsub);
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/arm/
subsf3vfp.S 24 vsub.f32 s14, s14, s15
subdf3vfp.S 23 vsub.f64 d6, d6, d7
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_fourcc.h 130 /** @vsub: Vertical chroma subsampling factor */
131 u8 vsub; member in struct:drm_format_info
202 return info->is_yuv && info->hsub == 4 && info->vsub == 4;
217 return info->is_yuv && info->hsub == 4 && info->vsub == 1;
232 return info->is_yuv && info->hsub == 2 && info->vsub == 2;
247 return info->is_yuv && info->hsub == 2 && info->vsub == 1;
262 return info->is_yuv && info->hsub == 1 && info->vsub == 1;
306 return height / info->vsub;
  /src/sys/external/bsd/drm2/drm/
drm_gem_framebuffer_helper.c 125 unsigned vsub = (plane > 0 ? fb->format->vsub : 1); /* XXX ? */ local in function:drm_gem_fb_create_with_funcs
138 size = (mode_cmd->height/vsub - 1)*mode_cmd->pitches[plane]
  /src/lib/libc_vfp/
vfpdf.S 77 vsub.f64 d0, d0, d1
85 vsub.f64 d0, d1, d0
vfpsf.S 67 vsub.f32 s0, s0, s1
75 vsub.f32 s0, s1, s0
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_sprite.c 261 u32 src_x, src_y, src_w, src_h, hsub, vsub; local in function:intel_plane_check_src_coordinates
284 vsub = fb->format->vsub;
286 hsub = vsub = max(fb->format->hsub, fb->format->vsub);
295 if (src_y % vsub || src_h % vsub) {
297 src_y, src_h, vsub, rotated ? "rotated " : "");
intel_display.c 2608 .cpp = { 4, 1, }, .hsub = 8, .vsub = 16, },
2610 .cpp = { 4, 1, }, .hsub = 8, .vsub = 16, },
2612 .cpp = { 4, 1, }, .hsub = 8, .vsub = 16, .has_alpha = true, },
2614 .cpp = { 4, 1, }, .hsub = 8, .vsub = 16, .has_alpha = true, },
2627 .hsub = 1, .vsub = 1, },
2630 .hsub = 1, .vsub = 1, },
2633 .hsub = 1, .vsub = 1, .has_alpha = true },
2636 .hsub = 1, .vsub = 1, .has_alpha = true },
2639 .hsub = 2, .vsub = 1, .is_yuv = true },
2642 .hsub = 2, .vsub = 1, .is_yuv = true }
2910 int hsub, vsub; local in function:intel_fb_check_ccs_xy
2954 int hsub, vsub; local in function:intel_fb_plane_dims
3169 unsigned int vsub = i ? fb->format->vsub : 1; local in function:intel_plane_remap_gtt
3747 int vsub; local in function:skl_check_main_ccs_coordinates
3956 int hsub, vsub; local in function:skl_check_ccs_aux_surface
    [all...]
  /src/sys/arch/arm/sunxi/
sunxi_mixer.c 1023 const int vsub = format->vsub; local in function:sunxi_mixer_vsu_init
1026 const u_int src_ch = src_h / vsub;
1037 VSU_WRITE(sc, VS_C_VSTEP_REG, (vstep / vsub) << 4);

Completed in 24 milliseconds