Home
last modified time | relevance | path

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

/external/libvncserver/libvncserver/
Dcursor.c571 int gmax, gshift; in rfbShowCursor() local
580 gshift = s->serverFormat.greenShift; in rfbShowCursor()
584 gmask = (gmax << gshift); in rfbShowCursor()
633 gdst = (dval & gmask) >> gshift; in rfbShowCursor()
637 gsrc = (sval & gmask) >> gshift; in rfbShowCursor()
652 val |= (gdst << gshift); in rfbShowCursor()
/external/libjpeg-turbo/java/
DTJUnitTest.java225 int gshift = TJ.getGreenOffset(pf) * 8; in initIntBuf() local
240 buf[index] |= (255 << gshift); in initIntBuf()
246 buf[index] |= (255 << gshift); in initIntBuf()
432 int gshift = TJ.getGreenOffset(pf) * 8; in checkIntBuf() local
447 int g = (buf[index] >> gshift) & 0xFF; in checkIntBuf()
493 int g = (buf[pitch * row + col] >> gshift) & 0xFF; in checkIntBuf()
/external/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()