| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | u_atomic.h | 43 #define p_atomic_set(_v, _i) __atomic_store_n((_v), (_i), __ATOMIC_RELEASE) 44 #define p_atomic_read(_v) __atomic_load_n((_v), __ATOMIC_ACQUIRE) 45 #define p_atomic_read_relaxed(_v) __atomic_load_n((_v), __ATOMIC_RELAXED) 58 #define p_atomic_set(_v, _i) (*(_v) = (_i)) 59 #define p_atomic_read(_v) (*(_v)) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| H A D | u_atomic.h | 43 #define p_atomic_set(_v, _i) __atomic_store_n((_v), (_i), __ATOMIC_RELEASE) 44 #define p_atomic_read(_v) __atomic_load_n((_v), __ATOMIC_ACQUIRE) 56 #define p_atomic_set(_v, _i) (*(_v) = (_i)) 57 #define p_atomic_read(_v) (*(_v)) 85 #define p_atomic_set(_v, _i) (*(_v) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/util/format/ |
| H A D | u_format_yuv.h | 69 const int _v = scale * ( (0.439f * _r) - (0.368f * _g) - (0.071f * _b)); local in function:util_format_rgb_float_to_yuv 73 *v = _v + 128; 83 const int _v = v - 128; 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); 111 const int _v = v - 128; 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;
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/ |
| H A D | u_format_yuv.h | 69 const int _v = scale * ( (0.439f * _r) - (0.368f * _g) - (0.071f * _b)); local in function:util_format_rgb_float_to_yuv 73 *v = _v + 128; 83 const int _v = v - 128; 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); 111 const int _v = v - 128; 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;
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/util/ |
| H A D | pan_ir.h | 296 pan_block **_v; \ 297 for (_v = (pan_block **) &blk->successors[0], \ 298 v = *_v; \ 299 v != NULL && _v < (pan_block **) &blk->successors[2]; \ 300 _v++, v = *_v) \
|
| /xsrc/external/mit/xf86-video-mach64/dist/src/ |
| H A D | atimach64render.c | 757 #define VTX_SET(_v, _col, _dstX, _dstY, _srcX, _dx, _srcY, _dy) \ 759 _v.s0 = ((float)(_srcX) + _dx) / m3d->tex_width; \ 760 _v.t0 = ((float)(_srcY) + _dy) / m3d->tex_height; \ 761 _v.x = ((float)(_dstX) * 4.0); \ 762 _v.y = ((float)(_dstY) * 4.0); \ 763 _v.argb = _col; \ 775 #define VTX_OUT(_v, n) \ 779 CARD32 x_y = ((CARD16)_v.x << 16) | \ 780 ((CARD16)_v.y & 0xffff); \ 783 outf(VERTEX_##n##_S, FVAL(_v [all...] |
| /xsrc/external/mit/MesaLib/dist/src/asahi/compiler/ |
| H A D | agx_compiler.h | 501 agx_block **_v; \ 502 for (_v = (agx_block **) &blk->successors[0], \ 503 v = *_v; \ 504 v != NULL && _v < (agx_block **) &blk->successors[2]; \ 505 _v++, v = *_v) \
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/r200/ |
| H A D | r200_swtcl.c | 430 #define VERT_X(_v) _v->v.x 431 #define VERT_Y(_v) _v->v.y 432 #define VERT_Z(_v) _v->v.z
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/ |
| H A D | radeon_swtcl.c | 552 #define VERT_X(_v) _v->v.x 553 #define VERT_Y(_v) _v->v.y 554 #define VERT_Z(_v) _v->v.z
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/ |
| H A D | compiler.h | 835 bi_block **_v; \ 836 for (_v = &blk->successors[0], \ 837 v = *_v; \ 838 v != NULL && _v < &blk->successors[2]; \ 839 _v++, v = *_v) \
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200/ |
| H A D | r200_swtcl.c | 430 #define VERT_X(_v) _v->v.x 431 #define VERT_Y(_v) _v->v.y 432 #define VERT_Z(_v) _v->v.z
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/ |
| H A D | radeon_swtcl.c | 551 #define VERT_X(_v) _v->v.x 552 #define VERT_Y(_v) _v->v.y 553 #define VERT_Z(_v) _v->v.z
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/ |
| H A D | intel_tris.c | 641 #define VERT_X(_v) _v->v.x 642 #define VERT_Y(_v) _v->v.y 643 #define VERT_Z(_v) _v->v.z
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/ |
| H A D | intel_tris.c | 641 #define VERT_X(_v) _v->v.x 642 #define VERT_Y(_v) _v->v.y 643 #define VERT_Z(_v) _v->v.z
|
| /xsrc/external/mit/xorgproto/dist/include/X11/ |
| H A D | XF86keysym.h | 273 #define _EVDEVK(_v) (0x10081000 + _v)
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/ |
| H A D | midgard_compile.c | 2981 mir_foreach_block_from(ctx, initial_block, _v) { 2982 midgard_block *v = (midgard_block *) _v;
|