| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/ |
| H A D | i915_trace.h | 29 __array(u32, scanline, 3) 37 __entry->scanline[it__->pipe] = intel_get_crtc_scanline(it__); 44 __entry->frame[PIPE_A], __entry->scanline[PIPE_A], 45 __entry->frame[PIPE_B], __entry->scanline[PIPE_B], 46 __entry->frame[PIPE_C], __entry->scanline[PIPE_C]) 55 __array(u32, scanline, 3) 64 __entry->scanline[it__->pipe] = intel_get_crtc_scanline(it__); 71 __entry->frame[PIPE_A], __entry->scanline[PIPE_A], 72 __entry->frame[PIPE_B], __entry->scanline[PIPE_B], 73 __entry->frame[PIPE_C], __entry->scanline[PIPE_C]) [all …]
|
| H A D | i915_irq.c | 708 u32 scanline, scan_prev_time, scan_curr_time, scan_post_time; in __intel_get_crtc_scanline_from_timestamp() local 735 scanline = div_u64(mul_u32_u32(scan_curr_time - scan_prev_time, in __intel_get_crtc_scanline_from_timestamp() 737 scanline = min(scanline, vtotal - 1); in __intel_get_crtc_scanline_from_timestamp() 738 scanline = (scanline + vblank_start) % vtotal; in __intel_get_crtc_scanline_from_timestamp() 740 return scanline; in __intel_get_crtc_scanline_from_timestamp()
|
| /OK3568_Linux_fs/u-boot/drivers/video/ |
| H A D | stb_truetype.h | 1721 static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, int m… in stbtt__fill_active_edges() argument 1740 … scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT); in stbtt__fill_active_edges() 1743 …scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> ST… in stbtt__fill_active_edges() 1748 … scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT); in stbtt__fill_active_edges() 1753 scanline[i] = scanline[i] + (stbtt_uint8) max_weight; in stbtt__fill_active_edges() 1770 unsigned char scanline_data[512], *scanline; in stbtt__rasterize_sorted_edges() local 1773 scanline = (unsigned char *) STBTT_malloc(result->w, userdata); in stbtt__rasterize_sorted_edges() 1775 scanline = scanline_data; in stbtt__rasterize_sorted_edges() 1781 STBTT_memset(scanline, 0, result->w); in stbtt__rasterize_sorted_edges() 1847 stbtt__fill_active_edges(scanline, result->w, active, max_weight); in stbtt__rasterize_sorted_edges() [all …]
|
| /OK3568_Linux_fs/external/xserver/mi/ |
| H A D | mipoly.c | 70 miInsertEdgeInET(EdgeTable * ET, EdgeTableEntry * ETE, int scanline, in miInsertEdgeInET() argument 82 while (pSLL && (pSLL->scanline < scanline)) { in miInsertEdgeInET() 90 if ((!pSLL) || (pSLL->scanline > scanline)) { in miInsertEdgeInET() 106 pSLL->scanline = scanline; in miInsertEdgeInET() 566 if (pSLL && y == pSLL->scanline) { in miFillGeneralPoly() 608 if (pSLL && y == pSLL->scanline) { in miFillGeneralPoly()
|
| H A D | mipoly.h | 97 int scanline; /* the scanline represented */ member
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/ |
| H A D | CVE-2019-7637.patch | 43 - * Calculate the pad-aligned scanline width of a surface 44 + * Calculate the pad-aligned scanline width of a surface. Return 0 in case of 58 + SDL_SetError("A scanline is too wide"); 87 + SDL_SetError("A scanline is too wide"); 93 + SDL_SetError("A scanline is too wide");
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/sun4i/ |
| H A D | sun8i_vi_layer.c | 138 unsigned int scanline, required; in sun8i_vi_layer_update_coord() local 162 scanline = subsampled ? mixer->cfg->scanline_yuv : 2048; in sun8i_vi_layer_update_coord() 164 if (src_w > scanline) { in sun8i_vi_layer_update_coord() 167 hn = scanline; in sun8i_vi_layer_update_coord()
|
| /OK3568_Linux_fs/u-boot/drivers/video/drm/ |
| H A D | drm_mipi_dsi.c | 737 int mipi_dsi_dcs_set_tear_scanline(struct mipi_dsi_device *dsi, u16 scanline) in mipi_dsi_dcs_set_tear_scanline() argument 739 u8 payload[3] = { MIPI_DCS_SET_TEAR_SCANLINE, scanline >> 8, in mipi_dsi_dcs_set_tear_scanline() 740 scanline & 0xff }; in mipi_dsi_dcs_set_tear_scanline()
|
| /OK3568_Linux_fs/external/rknpu2/examples/librknn_api_android_demo/include/stb/ |
| H A D | stb_image_write.h | 634 …hdr_scanline(stbi__write_context *s, int width, int ncomp, unsigned char *scratch, float *scanline) in stbiw__write_hdr_scanline() argument 649 case 3: linear[2] = scanline[x*ncomp + 2]; in stbiw__write_hdr_scanline() 650 linear[1] = scanline[x*ncomp + 1]; in stbiw__write_hdr_scanline() 651 linear[0] = scanline[x*ncomp + 0]; in stbiw__write_hdr_scanline() 654 linear[0] = linear[1] = linear[2] = scanline[x*ncomp + 0]; in stbiw__write_hdr_scanline() 666 case 3: linear[2] = scanline[x*ncomp + 2]; in stbiw__write_hdr_scanline() 667 linear[1] = scanline[x*ncomp + 1]; in stbiw__write_hdr_scanline() 668 linear[0] = scanline[x*ncomp + 0]; in stbiw__write_hdr_scanline() 671 linear[0] = linear[1] = linear[2] = scanline[x*ncomp + 0]; in stbiw__write_hdr_scanline()
|
| H A D | stb_image.h | 6766 stbi_uc *scanline; in stbi__hdr_load() local 6827 scanline = NULL; in stbi__hdr_load() 6844 STBI_FREE(scanline); in stbi__hdr_load() 6849 …if (len != width) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("invalid decoded … in stbi__hdr_load() 6850 if (scanline == NULL) { in stbi__hdr_load() 6851 scanline = (stbi_uc *) stbi__malloc_mad2(width, 4, 0); in stbi__hdr_load() 6852 if (!scanline) { in stbi__hdr_load() 6867 …if (count > nleft) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad … in stbi__hdr_load() 6869 scanline[i++ * 4 + k] = value; in stbi__hdr_load() 6872 …if (count > nleft) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad … in stbi__hdr_load() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/stb/ |
| H A D | stb_image_write.h | 634 …hdr_scanline(stbi__write_context *s, int width, int ncomp, unsigned char *scratch, float *scanline) in stbiw__write_hdr_scanline() argument 649 case 3: linear[2] = scanline[x*ncomp + 2]; in stbiw__write_hdr_scanline() 650 linear[1] = scanline[x*ncomp + 1]; in stbiw__write_hdr_scanline() 651 linear[0] = scanline[x*ncomp + 0]; in stbiw__write_hdr_scanline() 654 linear[0] = linear[1] = linear[2] = scanline[x*ncomp + 0]; in stbiw__write_hdr_scanline() 666 case 3: linear[2] = scanline[x*ncomp + 2]; in stbiw__write_hdr_scanline() 667 linear[1] = scanline[x*ncomp + 1]; in stbiw__write_hdr_scanline() 668 linear[0] = scanline[x*ncomp + 0]; in stbiw__write_hdr_scanline() 671 linear[0] = linear[1] = linear[2] = scanline[x*ncomp + 0]; in stbiw__write_hdr_scanline()
|
| H A D | stb_image.h | 6766 stbi_uc *scanline; in stbi__hdr_load() local 6827 scanline = NULL; in stbi__hdr_load() 6844 STBI_FREE(scanline); in stbi__hdr_load() 6849 …if (len != width) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("invalid decoded … in stbi__hdr_load() 6850 if (scanline == NULL) { in stbi__hdr_load() 6851 scanline = (stbi_uc *) stbi__malloc_mad2(width, 4, 0); in stbi__hdr_load() 6852 if (!scanline) { in stbi__hdr_load() 6867 …if (count > nleft) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad … in stbi__hdr_load() 6869 scanline[i++ * 4 + k] = value; in stbi__hdr_load() 6872 …if (count > nleft) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad … in stbi__hdr_load() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/fb/ |
| H A D | framebuffer.rst | 167 After each scanline the electron beam has to move back to the left side of the 183 to paint the 640 (xres) pixels on one scanline. But the horizontal retrace 184 also takes time (e.g. 272 `pixels`), so a full scanline takes:: 206 Since the monitor doesn't know when a new scanline starts, the graphics board 208 scanline. Similarly it supplies a synchronization pulse (vertical sync or
|
| /OK3568_Linux_fs/kernel/tools/lib/traceevent/Documentation/ |
| H A D | libtraceevent-reg_print_func.txt | 68 print fmt: "pipe %c, frame=%u, scanline=%u, wm %d/%d/%d, sr %s/%d/%d/%d, hpll %s/%d/%d/%d, fbc %s", 69 ((REC->pipe) + 'A'), REC->frame, REC->scanline, REC->primary,
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/ |
| H A D | drm_mipi_dsi.c | 1084 int mipi_dsi_dcs_set_tear_scanline(struct mipi_dsi_device *dsi, u16 scanline) in mipi_dsi_dcs_set_tear_scanline() argument 1086 u8 payload[2] = { scanline >> 8, scanline & 0xff }; in mipi_dsi_dcs_set_tear_scanline()
|
| /OK3568_Linux_fs/u-boot/include/drm/ |
| H A D | drm_mipi_dsi.h | 251 int mipi_dsi_dcs_set_tear_scanline(struct mipi_dsi_device *dsi, u16 scanline);
|
| /OK3568_Linux_fs/kernel/include/drm/ |
| H A D | drm_mipi_dsi.h | 293 int mipi_dsi_dcs_set_tear_scanline(struct mipi_dsi_device *dsi, u16 scanline);
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/display/ |
| H A D | intel_sprite.c | 89 int scanline, min, max, vblank_start; in intel_pipe_update_start() local 135 scanline = intel_get_crtc_scanline(crtc); in intel_pipe_update_start() 136 if (scanline < min || scanline > max) in intel_pipe_update_start() 172 while (need_vlv_dsi_wa && scanline == vblank_start) in intel_pipe_update_start() 173 scanline = intel_get_crtc_scanline(crtc); in intel_pipe_update_start() 175 crtc->debug.scanline_start = scanline; in intel_pipe_update_start()
|
| H A D | intel_hdmi.c | 1488 u32 scanline; in kbl_repositioning_enc_en_signal() local 1492 scanline = intel_de_read(dev_priv, PIPEDSL(intel_crtc->pipe)); in kbl_repositioning_enc_en_signal() 1493 if (scanline > 100 && scanline < 200) in kbl_repositioning_enc_en_signal()
|
| /OK3568_Linux_fs/kernel/Documentation/input/devices/ |
| H A D | sentelic.rst | 783 (Note that position unit is in 0.5 scanline) 792 (Note that position unit is in 0.5 scanline) 797 (Note that position unit is in 0.5 scanline) 802 (Note that position unit is in 0.5 scanline)
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/grub/files/ |
| H A D | video-Remove-trailing-whitespaces.patch | 321 /* Call VESA BIOS 0x4f06 to set scanline length (in bytes), return status. */ 338 /* Call VESA BIOS 0x4f06 to return scanline length (in bytes), return status. */
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/ |
| H A D | svga.rst | 232 - Added 480-scanline modes (especially useful for notebooks,
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/libtiff/tiff/ |
| H A D | 0001-tiffcrop-Fix-issue-330-and-some-more-from-320-to-349.patch | 47 * lower level, scanline level routines. Debug reports a limited set
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/media/drivers/ |
| H A D | cx2341x-devel.rst | 3166 Current scanline 3167 The scanline counts from the top line of the first field
|
| /OK3568_Linux_fs/external/xserver/ |
| H A D | ChangeLog | 186699 Use negative strides in Xgl if pixel data have bottom-top scanline order 190596 Forced commit: Previous commit included the removal of the 8192 scanline 191593 136. Fix bug that prevented fbman from using the last partial scanline of a
|