Home
last modified time | relevance | path

Searched full:pixel (Results 1 – 25 of 2004) sorted by relevance

12345678910>>...81

/OK3568_Linux_fs/external/xserver/dix/
H A Dcolormap.c70 static Pixel FindBestPixel(EntryPtr /*pentFirst */ ,
103 Pixel /*i */ ,
117 Pixel * /*pixels */ ,
118 Pixel * /*prmask */ ,
119 Pixel * /*pgmask */ ,
120 Pixel * /*pbmask */
128 Pixel * /*pixels */ ,
129 Pixel * /*pmask */ ,
130 Pixel ** /*pppixFirst */
138 Pixel * /*pixels */ ,
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/udl/
H A Dudl_transfer.c68 static inline u16 pixel32_to_be16(const uint32_t pixel) in pixel32_to_be16() argument
70 return (((pixel >> 3) & 0x001f) | in pixel32_to_be16()
71 ((pixel >> 5) & 0x07e0) | in pixel32_to_be16()
72 ((pixel >> 8) & 0xf800)); in pixel32_to_be16()
75 static inline u16 get_pixel_val16(const uint8_t *pixel, int log_bpp) in get_pixel_val16() argument
79 pixel_val16 = *(const uint16_t *)pixel; in get_pixel_val16()
81 pixel_val16 = pixel32_to_be16(*(const uint32_t *)pixel); in get_pixel_val16()
104 * Rather than 256 pixel commands which are either rl or raw encoded,
109 * compression than 256 pixel raw or rle commands, with similar CPU consumpion.
120 const u8 *pixel = *pixel_start_ptr; in udl_compress_hline16() local
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/css_2401_system/host/
H A Dpixelgen_private.h137 ia_css_print("Pixel Generator ID %d Enable 0x%x\n", ID, state->com_enable); in pixelgen_ctrl_dump_state()
138 ia_css_print("Pixel Generator ID %d PRBS reset value 0 0x%x\n", ID, in pixelgen_ctrl_dump_state()
140 ia_css_print("Pixel Generator ID %d PRBS reset value 1 0x%x\n", ID, in pixelgen_ctrl_dump_state()
142 ia_css_print("Pixel Generator ID %d SYNC SID 0x%x\n", ID, state->syng_sid); in pixelgen_ctrl_dump_state()
143 ia_css_print("Pixel Generator ID %d syng free run 0x%x\n", ID, in pixelgen_ctrl_dump_state()
145 ia_css_print("Pixel Generator ID %d syng pause 0x%x\n", ID, state->syng_pause); in pixelgen_ctrl_dump_state()
146 ia_css_print("Pixel Generator ID %d syng no of frames 0x%x\n", ID, in pixelgen_ctrl_dump_state()
148 ia_css_print("Pixel Generator ID %d syng no of pixels 0x%x\n", ID, in pixelgen_ctrl_dump_state()
150 ia_css_print("Pixel Generator ID %d syng no of line 0x%x\n", ID, in pixelgen_ctrl_dump_state()
152 ia_css_print("Pixel Generator ID %d syng hblank cyc 0x%x\n", ID, in pixelgen_ctrl_dump_state()
[all …]
/OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/pgms/
H A Dgfx-x1190 'seg1' => [ 28800000.0, "1-pixel line segment" ],
91 'seg10' => [ 4460000.0, "10-pixel line segment" ],
92 'seg100' => [ 470000.0, "100-pixel line segment" ],
93 'seg500' => [ 94600.0, "500-pixel line segment" ],
94 'seg100c1' => [ 449000.0, "100-pixel line segment (1 kid)" ],
95 'seg100c2' => [ 432000.0, "100-pixel line segment (2 kids)" ],
96 'seg100c3' => [ 421000.0, "100-pixel line segment (3 kids)" ],
97 'dseg10' => [ 3720000.0, "10-pixel dashed segment" ],
98 'dseg100' => [ 687000.0, "100-pixel dashed segment" ],
99 'ddseg100' => [ 454000.0, "100-pixel double-dashed segment" ],
[all …]
/OK3568_Linux_fs/external/xserver/render/
H A Dmiindex.c44 miBuildRenderColormap(ColormapPtr pColormap, Pixel * pixels, int *nump) in miBuildRenderColormap()
48 Pixel pixel; in miBuildRenderColormap() local
146 pixel = 0; in miBuildRenderColormap()
151 &blue, &pixel, 0) != Success) in miBuildRenderColormap()
153 used[pixel] = TRUE; in miBuildRenderColormap()
156 pixel = 0; in miBuildRenderColormap()
158 if (AllocColor(pColormap, &red, &green, &blue, &pixel, 0) != Success) in miBuildRenderColormap()
160 used[pixel] = TRUE; in miBuildRenderColormap()
173 static Pixel
174 FindBestColor(miIndexedPtr pIndexed, Pixel * pixels, int num, in FindBestColor()
[all …]
H A Dmipict.c392 miRenderColorToPixel(PictFormatPtr format, xRenderColor * color, CARD32 *pixel) in miRenderColorToPixel() argument
407 *pixel = r | g | b | a; in miRenderColorToPixel()
415 *pixel = miIndexToEnt15(pIndexed, (r << 10) | (g << 5) | b); in miRenderColorToPixel()
421 *pixel = miIndexToEntY24(pIndexed, (r << 16) | (g << 8) | b); in miRenderColorToPixel()
428 miFillColor(CARD32 pixel, int bits) in miFillColor() argument
431 pixel |= pixel << bits; in miFillColor()
434 return (CARD16) pixel; in miFillColor()
472 miRenderPixelToColor(PictFormatPtr format, CARD32 pixel, xRenderColor * color) in miRenderPixelToColor() argument
479 r = (pixel >> format->direct.red) & format->direct.redMask; in miRenderPixelToColor()
480 g = (pixel >> format->direct.green) & format->direct.greenMask; in miRenderPixelToColor()
[all …]
/OK3568_Linux_fs/kernel/drivers/video/fbdev/core/
H A Dfb_draw.h21 * Create a pattern with the given pixel's color
26 pixel_to_pat( u32 bpp, u32 pixel) in pixel_to_pat() argument
30 return 0xfffffffffffffffful*pixel; in pixel_to_pat()
32 return 0x5555555555555555ul*pixel; in pixel_to_pat()
34 return 0x1111111111111111ul*pixel; in pixel_to_pat()
36 return 0x0101010101010101ul*pixel; in pixel_to_pat()
38 return 0x1001001001001001ul*pixel; in pixel_to_pat()
40 return 0x0001000100010001ul*pixel; in pixel_to_pat()
42 return 0x0001000001000001ul*pixel; in pixel_to_pat()
44 return 0x0000000100000001ul*pixel; in pixel_to_pat()
[all …]
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_10.0.2/
H A D0059-pixel-formats-Support-NV15-YU08-YU10.patch4 Subject: [PATCH 59/79] pixel-formats: Support NV15/YU08/YU10
10 libweston/pixel-formats.c | 12 ++++++++++++
11 libweston/pixel-formats.h | 12 ++++++++++++
14 diff --git a/libweston/pixel-formats.c b/libweston/pixel-formats.c
16 --- a/libweston/pixel-formats.c
17 +++ b/libweston/pixel-formats.c
37 diff --git a/libweston/pixel-formats.h b/libweston/pixel-formats.h
39 --- a/libweston/pixel-formats.h
40 +++ b/libweston/pixel-formats.h
58 * Contains information about pixel formats, mapping format codes from
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/dvb/
H A Dosd.h45 // Sets all pixel to color 0
48 // Sets all pixel to color <col>
54 // opacity=0: pixel opacity 0% (only video pixel shows)
55 // opacity=1..254: pixel opacity as specified in header
56 // opacity=255: pixel opacity 100% (only OSD pixel shows)
62 // R,G,B, and a opacity value: 0->transparent, 1..254->mix, 255->pixel
64 // Sets transparency of mixed pixel (0..15)
67 // sets pixel <x>,<y> to color number <col>
70 // returns color number of pixel <x>,<y>, or -1
73 // returns 0 on success, -1 on clipping all pixel (no pixel drawn)
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/dvb/
H A Dosd.h45 // Sets all pixel to color 0
48 // Sets all pixel to color <col>
54 // opacity=0: pixel opacity 0% (only video pixel shows)
55 // opacity=1..254: pixel opacity as specified in header
56 // opacity=255: pixel opacity 100% (only OSD pixel shows)
62 // R,G,B, and a opacity value: 0->transparent, 1..254->mix, 255->pixel
64 // Sets transparency of mixed pixel (0..15)
67 // sets pixel <x>,<y> to color number <col>
70 // returns color number of pixel <x>,<y>, or -1
73 // returns 0 on success, -1 on clipping all pixel (no pixel drawn)
[all …]
/OK3568_Linux_fs/kernel/include/uapi/linux/dvb/
H A Dosd.h56 * Sets all pixel to color 0
61 * Sets all pixel to color <col>
69 * opacity=0: pixel opacity 0% (only video pixel shows)
70 * opacity=1..254: pixel opacity as specified in header
71 * opacity=255: pixel opacity 100% (only OSD pixel shows)
79 * R,G,B, and a opacity value: 0->transparent, 1..254->mix, 255->pixel
83 * Sets transparency of mixed pixel (0..15)
88 * sets pixel <x>,<y> to color number <col>
92 /* returns color number of pixel <x>,<y>, or -1 */
96 * returns 0 on success, -1 on clipping all pixel (no pixel drawn)
[all …]
/OK3568_Linux_fs/kernel/drivers/media/platform/exynos-gsc/
H A Dgsc-core.h105 * @mbus_code: Media Bus pixel code, -1 if not applicable
111 * @depth: per plane driver's private 'number of bits per pixel'
220 * struct gsc_pix_max - image pixel size limits in various IP configurations
222 * @org_scaler_bypass_w: max pixel width when the scaler is disabled
223 * @org_scaler_bypass_h: max pixel height when the scaler is disabled
224 * @org_scaler_input_w: max pixel width when the scaler is enabled
225 * @org_scaler_input_h: max pixel height when the scaler is enabled
226 * @real_rot_dis_w: max pixel src cropped height with the rotator is off
227 * @real_rot_dis_h: max pixel src croppped width with the rotator is off
228 * @real_rot_en_w: max pixel src cropped width with the rotator is on
[all …]
/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwincmap.c210 pCmapPriv->peColors[pdefs[0].pixel + i].peRed = nRed; in winStoreColors()
211 pCmapPriv->peColors[pdefs[0].pixel + i].peGreen = nGreen; in winStoreColors()
212 pCmapPriv->peColors[pdefs[0].pixel + i].peBlue = nBlue; in winStoreColors()
215 pCmapPriv->rgbColors[pdefs[0].pixel + i].rgbRed = nRed; in winStoreColors()
216 pCmapPriv->rgbColors[pdefs[0].pixel + i].rgbGreen = nGreen; in winStoreColors()
217 pCmapPriv->rgbColors[pdefs[0].pixel + i].rgbBlue = nBlue; in winStoreColors()
271 * that expect the top pixel to be white. This "help" only lasts until in winCreateColormap()
328 Pixel pixel; /* Pixel == CARD32 */ in winGetPaletteDIB() local
355 pixel = i; in winGetPaletteDIB()
364 "%d %d %d\n", (unsigned int)pixel, nRed, nGreen, nBlue); in winGetPaletteDIB()
[all …]
/OK3568_Linux_fs/external/xserver/include/
H A Dcolormap.h72 typedef CARD32 Pixel; typedef
102 Pixel * /*pPix */ ,
109 Pixel /*pixel */ );
113 Pixel * /*ppixIn */ ,
125 Pixel * /*ppix */ ,
126 Pixel * /*masks */ );
135 Pixel * /*pixels */ ,
136 Pixel * /*prmask */ ,
137 Pixel * /*pgmask */ ,
138 Pixel * /*pbmask */ );
[all …]
/OK3568_Linux_fs/u-boot/include/
H A Dvideo_console.h59 * @x_frac: Fractional pixel X position (0=left-most pixel) which
61 * @y: Pixel Y position (0=top-most pixel)
84 * Every pixel contained within the text row is adjusted
88 * @clr: Raw colour (pixel value) to write to each pixel
127 * @x_frac: Fractional pixel X position (0=left-most pixel) which
129 * @y: Pixel Y position (0=top-most pixel)
152 * Every pixel contained within the text row is adjusted
156 * @clr: Raw colour (pixel value) to write to each pixel
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dext-ctrls-image-process.rst24 Data bus frequency. Together with the media bus pixel code, bus type
25 (clock cycles per sample), the data bus frequency defines the pixel
26 rate (``V4L2_CID_PIXEL_RATE``) in the pixel array (or possibly
28 be calculated from the pixel clock, image width and height and
29 horizontal and vertical blanking. While the pixel rate control may
30 be defined elsewhere than in the subdev containing the pixel array,
32 because only on the pixel array it can be assumed that the vertical
34 allowed in the pixel array. The selection of frame rate is performed
39 Pixel rate in the source pads of the subdev. This control is
H A Dvidioc-enum-framesizes.rst30 that contains an index and pixel format and receives a frame width
37 and height in pixels) that the device supports for the given pixel
40 The supported pixel formats can be obtained by using the
101 - Width of the frame [pixel].
104 - Height of the frame [pixel].
118 - Minimum frame width [pixel].
121 - Maximum frame width [pixel].
124 - Frame width step size [pixel].
127 - Minimum frame height [pixel].
130 - Maximum frame height [pixel].
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/
H A Dcss_receiver_2400_defs.h231 #define _HRT_CSS_RECEIVER_2400_BE_CUST_PIX_EXT_S0P0_REG_IDX 15 /* Pixel Extractor config f…
232 #define _HRT_CSS_RECEIVER_2400_BE_CUST_PIX_EXT_S0P1_REG_IDX 16 /* Pixel Extractor config f…
233 #define _HRT_CSS_RECEIVER_2400_BE_CUST_PIX_EXT_S0P2_REG_IDX 17 /* Pixel Extractor config f…
234 #define _HRT_CSS_RECEIVER_2400_BE_CUST_PIX_EXT_S0P3_REG_IDX 18 /* Pixel Extractor config f…
235 #define _HRT_CSS_RECEIVER_2400_BE_CUST_PIX_EXT_S1P0_REG_IDX 19 /* Pixel Extractor config f…
236 #define _HRT_CSS_RECEIVER_2400_BE_CUST_PIX_EXT_S1P1_REG_IDX 20 /* Pixel Extractor config f…
237 #define _HRT_CSS_RECEIVER_2400_BE_CUST_PIX_EXT_S1P2_REG_IDX 21 /* Pixel Extractor config f…
238 #define _HRT_CSS_RECEIVER_2400_BE_CUST_PIX_EXT_S1P3_REG_IDX 22 /* Pixel Extractor config f…
239 #define _HRT_CSS_RECEIVER_2400_BE_CUST_PIX_EXT_S2P0_REG_IDX 23 /* Pixel Extractor config f…
240 #define _HRT_CSS_RECEIVER_2400_BE_CUST_PIX_EXT_S2P1_REG_IDX 24 /* Pixel Extractor config f…
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/video/
H A Dbackground_segm.hpp111 If a foreground pixel keeps semi-constant value for about backgroundRatio\*history frames, it's
120 /** @brief Returns the variance threshold for the pixel-model match
126 /** @brief Sets the variance threshold for the pixel-model match
130 …/** @brief Returns the variance threshold for the pixel-model match used for new mixture component…
133 … existing components (corresponds to Tg in the paper). If a pixel is not close to any component, it
139 …/** @brief Sets the variance threshold for the pixel-model match used for new mixture component ge…
189 … A shadow is detected if pixel is a darker version of the background. The shadow threshold (Tau in
190 …he paper) is a threshold defining how much darker the shadow can be. Tau= 0.5 means that if a pixel
214 @param varThreshold Threshold on the squared Mahalanobis distance between the pixel and the model
215 to decide whether a pixel is well described by the background model. This parameter does not
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/video/
H A Dbackground_segm.hpp111 If a foreground pixel keeps semi-constant value for about backgroundRatio\*history frames, it's
120 /** @brief Returns the variance threshold for the pixel-model match
126 /** @brief Sets the variance threshold for the pixel-model match
130 …/** @brief Returns the variance threshold for the pixel-model match used for new mixture component…
133 … existing components (corresponds to Tg in the paper). If a pixel is not close to any component, it
139 …/** @brief Sets the variance threshold for the pixel-model match used for new mixture component ge…
189 … A shadow is detected if pixel is a darker version of the background. The shadow threshold (Tau in
190 …he paper) is a threshold defining how much darker the shadow can be. Tau= 0.5 means that if a pixel
214 @param varThreshold Threshold on the squared Mahalanobis distance between the pixel and the model
215 to decide whether a pixel is well described by the background model. This parameter does not
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/
H A DCVE-2019-7635.patch8 CVE-2019-7635: Reject BMP images with pixel colors out the palette
9 If a 1-, 4-, or 8-bit per pixel BMP image declares less used colors
11 number of used colors is created. If some of the image's pixel
18 This patch fixes it by validing each pixel's color to be less than the
36 *(bits+i) = (pixel>>shift);
37 pixel <<= ExpandBMP;
40 + "A BMP image contains a pixel with a color out of the palette");
55 + "A BMP image contains a pixel with a color out of the palette");
/OK3568_Linux_fs/kernel/drivers/video/fbdev/
H A Dvalkyriefb.h102 { 11, 28, 3 }, /* pixel clock = 79.55MHz for V=74.50Hz */
108 /* This used to be 12, 30, 3 for pixel clock = 78.12MHz for V=72.12Hz, but
118 { 12, 29, 3 }, /* pixel clock = 75.52MHz for V=69.71Hz? */
129 { 15, 31, 3 }, /* pixel clock = 64.58MHz for V=59.62Hz */
138 { 23, 42, 3 }, /* pixel clock = 57.07MHz for V=74.27Hz */
146 { 17, 27, 3 }, /* pixel clock = 49.63MHz for V=71.66Hz */
154 { 25, 32, 3 }, /* pixel clock = 40.0015MHz,
155 used to be 20,53,2, pixel clock 41.41MHz for V=59.78Hz */
163 { 14, 27, 2 }, /* pixel clock = 30.13MHz for V=66.43Hz */
171 { 23, 37, 2 }, /* pixel clock = 25.14MHz for V=59.85Hz */
/OK3568_Linux_fs/kernel/include/media/davinci/
H A Dvpbe_osd.h52 * @PIXFMT_1BPP: 1-bit-per-pixel bitmap
53 * @PIXFMT_2BPP: 2-bits-per-pixel bitmap
54 * @PIXFMT_4BPP: 4-bits-per-pixel bitmap
55 * @PIXFMT_8BPP: 8-bits-per-pixel bitmap
56 * @PIXFMT_RGB565: 16-bits-per-pixel RGB565
58 * @PIXFMT_RGB888: 24-bits-per-pixel RGB888
61 * @PIXFMT_OSD_ATTR: OSD Attribute Window pixel format (4bpp)
64 * An enumeration of the DaVinci pixel formats.
160 * An enumeration of the DaVinci pixel blending factor options.
181 * An enumeration of the DaVinci pixel blinking interval options.
[all …]
/OK3568_Linux_fs/external/xserver/mi/
H A Dmiwideline.c104 ``touch-each-pixel-once'' rules of wide lines and arcs.
592 AppendSpanGroup(GCPtr pGC, unsigned long pixel, Spans * spanPtr, in AppendSpanGroup() argument
597 if (pixel == pGC->fgPixel) { in AppendSpanGroup()
610 unsigned long pixel, SpanDataPtr spanData,
620 fillSpans(DrawablePtr pDrawable, GCPtr pGC, unsigned long pixel, Spans * spans, in fillSpans() argument
627 if (pixel != oldPixel.val) { in fillSpans()
628 tmpPixel.val = (XID) pixel; in fillSpans()
636 if (pixel != oldPixel.val) { in fillSpans()
642 AppendSpanGroup(pGC, pixel, spans, spanData); in fillSpans()
646 miFillPolyHelper(DrawablePtr pDrawable, GCPtr pGC, unsigned long pixel, in miFillPolyHelper() argument
[all …]
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkisp_demo/demo/drmDsp/
H A Dbo.c36 uint8_t* pixel = row + j * 4; in draw_rect() local
40 pixel[0] = b; in draw_rect()
41 pixel[1] = g; in draw_rect()
42 pixel[2] = r; in draw_rect()
43 pixel[3] = a; in draw_rect()
45 pixel[0] = r; in draw_rect()
46 pixel[1] = g; in draw_rect()
47 pixel[2] = b; in draw_rect()
48 pixel[3] = a; in draw_rect()

12345678910>>...81