Home
last modified time | relevance | path

Searched refs:gshift (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_texture_compression_astc_decode_mode.txt217 uint32_t rshift, gshift, bshift, expo;
221 expo = rshift = gshift = bshift = Xm;
227 gshift = Rex - Gex + 2;
234 gshift = 2;
241 gshift = Bex - Gex + 2;
249 Gm = (Gm >> gshift) & 0x1FF;
/third_party/openGLES/extensions/EXT/
DEXT_texture_compression_astc_decode_mode.txt217 uint32_t rshift, gshift, bshift, expo;
221 expo = rshift = gshift = bshift = Xm;
227 gshift = Rex - Gex + 2;
234 gshift = 2;
241 gshift = Bex - Gex + 2;
249 Gm = (Gm >> gshift) & 0x1FF;
/third_party/flutter/skia/third_party/externals/sdl/src/video/x11/
DSDL_x11window.c427 int rshift, gshift, bshift; in X11_CreateWindow() local
455 gshift = 0; in X11_CreateWindow()
458 gshift++; in X11_CreateWindow()
480 (rbits << rshift) | (gbits << gshift) | (bbits << bshift); in X11_CreateWindow()
1414 int rshift, gshift, bshift; in X11_SetWindowGammaRamp() local
1434 gshift = 0; in X11_SetWindowGammaRamp()
1437 gshift++; in X11_SetWindowGammaRamp()
1453 Uint32 pix = (rbits << rshift) | (gbits << gshift) | (bbits << bshift); in X11_SetWindowGammaRamp()
/third_party/libjpeg-turbo/java/
DTJUnitTest.java217 int gshift = TJ.getGreenOffset(pf) * 8; in initIntBuf() local
232 buf[index] |= (255 << gshift); in initIntBuf()
238 buf[index] |= (255 << gshift); in initIntBuf()
426 int gshift = TJ.getGreenOffset(pf) * 8; in checkIntBuf() local
441 int g = (buf[index] >> gshift) & 0xFF; in checkIntBuf()
487 int g = (buf[pitch * row + col] >> gshift) & 0xFF; in checkIntBuf()
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/java/
DTJUnitTest.java217 int gshift = TJ.getGreenOffset(pf) * 8; in initIntBuf() local
232 buf[index] |= (255 << gshift); in initIntBuf()
238 buf[index] |= (255 << gshift); in initIntBuf()
426 int gshift = TJ.getGreenOffset(pf) * 8; in checkIntBuf() local
441 int g = (buf[index] >> gshift) & 0xFF; in checkIntBuf()
487 int g = (buf[pitch * row + col] >> gshift) & 0xFF; in checkIntBuf()
/third_party/mesa3d/src/mesa/drivers/x11/
DxmesaP.h93 GLint rshift, gshift, bshift;/* Pixel color component shifts */ member
Dxm_api.c441 v->gshift = 0; in setup_truecolor()
444 v->gshift++; in setup_truecolor()
487 v->GtoPixel[i] = (g >> (8-gBits)) << v->gshift; in setup_truecolor()