Searched refs:_y (Results 1 - 25 of 25) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/util/format/
H A Du_format_yuv.h67 const int _y = scale * ( (0.257f * _r) + (0.504f * _g) + (0.098f * _b)); local in function:util_format_rgb_float_to_yuv
71 *y = _y + 16;
81 const int _y = y - 16; local in function:util_format_yuv_to_rgb_float
89 *r = scale * (y_factor * _y + 1.596f * _v);
90 *g = scale * (y_factor * _y - 0.391f * _u - 0.813f * _v);
91 *b = scale * (y_factor * _y + 2.018f * _u );
109 const int _y = y - 16; local in function:util_format_yuv_to_rgb_8unorm
113 const int _r = (298 * _y + 409 * _v + 128) >> 8;
114 const int _g = (298 * _y - 100 * _u - 208 * _v + 128) >> 8;
115 const int _b = (298 * _y
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_format_yuv.h67 const int _y = scale * ( (0.257f * _r) + (0.504f * _g) + (0.098f * _b)); local in function:util_format_rgb_float_to_yuv
71 *y = _y + 16;
81 const int _y = y - 16; local in function:util_format_yuv_to_rgb_float
89 *r = scale * (y_factor * _y + 1.596f * _v);
90 *g = scale * (y_factor * _y - 0.391f * _u - 0.813f * _v);
91 *b = scale * (y_factor * _y + 2.018f * _u );
109 const int _y = y - 16; local in function:util_format_yuv_to_rgb_8unorm
113 const int _r = (298 * _y + 409 * _v + 128) >> 8;
114 const int _g = (298 * _y - 100 * _u - 208 * _v + 128) >> 8;
115 const int _b = (298 * _y
[all...]
/xsrc/external/mit/xorg-server.old/dist/mi/
H A Dmiline.h98 #define OUTCODES(_result, _x, _y, _pbox) \
101 if ( (_y) < (_pbox)->y1) (_result) |= OUT_ABOVE; \
102 else if ( (_y) >= (_pbox)->y2) (_result) |= OUT_BELOW;
/xsrc/external/mit/xorg-server/dist/mi/
H A Dmiline.h97 #define OUTCODES(_result, _x, _y, _pbox) \
100 if ( (_y) < (_pbox)->y1) (_result) |= OUT_ABOVE; \
101 else if ( (_y) >= (_pbox)->y2) (_result) |= OUT_BELOW;
/xsrc/external/mit/xf86-video-qxl/dist/src/
H A Dspiceqxl_driver.c48 #define QXL_MODE(_x, _y, _b, _o) \
50 .y_res = _y, \
54 .y_mili = PIXEL_SIZE * (_y), \
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/core/core/
H A Dstate_funcs.h48 _vY[i] = _simd_set1_ps(_y[i]);
H A Dstate.h1051 INLINE void SetY(uint32_t sampleNum, float val) { _y[sampleNum] = val; }; // @llvm_func
1053 INLINE float Y(uint32_t sampleNum) const { return _y[sampleNum]; }; // @llvm_func
1056 INLINE sampleArrayT Y() const { return _y; }; // @llvm_func
1075 float _y[SWR_MAX_NUM_MULTISAMPLES]; member in struct:SWR_MULTISAMPLE_POS
/xsrc/external/mit/xorg-server/dist/test/
H A Dmisc.c84 #define assert_dimensions(_x, _y, _w, _h) \
87 assert(screenInfo.y == _y); \
91 #define set_screen(idx, _x, _y, _w, _h) \
93 screenInfo.screens[idx]->y = _y; \
/xsrc/external/mit/xf86-video-mach64/dist/src/
H A Dativalid.c156 # define ATIReverseVertical(_y) \
157 ((((pMode->_y - pATI->LCDVertical) * VInterlace) / VScan) + \
/xsrc/external/mit/xorg-server.old/dist/miext/rootless/
H A DrootlessCommon.h233 #define SetPixmapBaseToScreen(pix, _x, _y) { \
237 (int)(_y) * _pPix->devKind); \
/xsrc/external/mit/xorg-server/dist/miext/rootless/
H A DrootlessCommon.h229 #define SetPixmapBaseToScreen(pix, _x, _y) { \
233 (int)(_y) * _pPix->devKind); \
/xsrc/external/mit/MesaLib/dist/src/panfrost/shared/
H A Dpan_tiling.c289 #define OFFSET(src, _x, _y) (void *) ((uint8_t *) src + ((_y) - orig_y) * src_stride + (((_x) - orig_x) * (bpp / 8)))
/xsrc/external/mit/MesaLib.old/dist/src/mesa/x86/rtasm/
H A Dx86sse.h134 #define SHUF(_x,_y,_z,_w) (((_x)<<0) | ((_y)<<2) | ((_z)<<4) | ((_w)<<6))
/xsrc/external/mit/MesaLib/dist/src/mesa/x86/rtasm/
H A Dx86sse.h134 #define SHUF(_x,_y,_z,_w) (((_x)<<0) | ((_y)<<2) | ((_z)<<4) | ((_w)<<6))
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
H A Dsp_setup.c701 int _y = sy + y; local in function:subtriangle
702 if (block(_y) != setup->span.y) {
704 setup->span.y = block(_y);
707 setup->span.left[_y&1] = left;
708 setup->span.right[_y&1] = right;
/xsrc/external/mit/xf86-video-ati/dist/src/
H A Dradeon_dri.c418 #define WRITE_DEPTH16(_x, _y, d) \
419 *(uint16_t *)(pointer)(buf + 2*(_x + _y*info->dri->frontPitch)) = (d)
421 #define READ_DEPTH16(d, _x, _y) \
422 (d) = *(uint16_t *)(pointer)(buf + 2*(_x + _y*info->dri->frontPitch))
425 #define WRITE_DEPTHSTENCIL32(_x, _y, d) \
426 *(uint32_t *)(pointer)(buf + 4*(_x + _y*info->dri->frontPitch)) = (d)
428 #define READ_DEPTHSTENCIL32(d, _x, _y) \
429 (d) = *(uint32_t *)(pointer)(buf + 4*(_x + _y*info->dri->frontPitch))
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/rtasm/
H A Drtasm_x86sse.h214 #define SHUF(_x,_y,_z,_w) (((_x)<<0) | ((_y)<<2) | ((_z)<<4) | ((_w)<<6))
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/rtasm/
H A Drtasm_x86sse.h214 #define SHUF(_x,_y,_z,_w) (((_x)<<0) | ((_y)<<2) | ((_z)<<4) | ((_w)<<6))
/xsrc/external/mit/xorg-server.old/dist/render/
H A Dmipict.c359 #define VectorSet(i,_x,_y) { points[i].x = _x; points[i].y = _y; }
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
H A Dsp_setup.c750 int _y = sy + y; local in function:subtriangle
751 if (block(_y) != setup->span.y) {
753 setup->span.y = block(_y);
756 setup->span.left[_y&1] = left;
757 setup->span.right[_y&1] = right;
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.h172 ImVec2(float _x, float _y) { x = _x; y = _y; } argument
185 ImVec4(float _x, float _y, float _z, float _w) { x = _x; y = _y; z = _z; w = _w; } argument
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h172 ImVec2(float _x, float _y) { x = _x; y = _y; } argument
185 ImVec4(float _x, float _y, float _z, float _w) { x = _x; y = _y; z = _z; w = _w; } argument
/xsrc/external/mit/xf86-video-geode/dist/src/
H A Dlx_exa.c820 #define GetSrcOffset(_x, _y) (exaScratch.srcOffset + ((_y) * exaScratch.srcPitch) + \
/xsrc/external/mit/xf86-video-intel/dist/src/sna/
H A Dsna_accel.c15429 int _x, int _y, unsigned int _n,
15449 __FUNCTION__, _x, _y, _n, fg, bg, rop));
15482 _y += drawable->y + dy;
15568 int x = _x, y = _y, n = _n;
16169 int _x, int _y, unsigned int _n,
16205 _y += drawable->y + dy;
16287 int x = _x, y = _y, n = _n;
15428 sna_glyph_blt(DrawablePtr drawable,GCPtr gc,int _x,int _y,unsigned int _n,CharInfoPtr * _info,RegionRec * clip,uint32_t fg,uint32_t bg,bool transparent) argument
16168 sna_reversed_glyph_blt(DrawablePtr drawable,GCPtr gc,int _x,int _y,unsigned int _n,CharInfoPtr * _info,pointer _base,struct kgem_bo * bo,struct sna_damage ** damage,RegionPtr clip,uint32_t fg,uint32_t bg,bool transparent) argument
/xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
H A Dsna_accel.c15205 int _x, int _y, unsigned int _n,
15225 __FUNCTION__, _x, _y, _n, fg, bg, rop));
15258 _y += drawable->y + dy;
15343 int x = _x, y = _y, n = _n;
15943 int _x, int _y, unsigned int _n,
15979 _y += drawable->y + dy;
16060 int x = _x, y = _y, n = _n;
15204 sna_glyph_blt(DrawablePtr drawable,GCPtr gc,int _x,int _y,unsigned int _n,CharInfoPtr * _info,RegionRec * clip,uint32_t fg,uint32_t bg,bool transparent) argument
15942 sna_reversed_glyph_blt(DrawablePtr drawable,GCPtr gc,int _x,int _y,unsigned int _n,CharInfoPtr * _info,pointer _base,struct kgem_bo * bo,struct sna_damage ** damage,RegionPtr clip,uint32_t fg,uint32_t bg,bool transparent) argument

Completed in 73 milliseconds