Home
last modified time | relevance | path

Searched refs:bshift (Results 1 – 6 of 6) sorted by relevance

/external/libopus/celt/
Dmathops.c45 int bshift; in isqrt32() local
51 bshift=(EC_ILOG(_val)-1)>>1; in isqrt32()
52 b=1U<<bshift; in isqrt32()
55 t=(((opus_uint32)g<<1)+b)<<bshift; in isqrt32()
61 bshift--; in isqrt32()
63 while(bshift>=0); in isqrt32()
/external/libvncserver/libvncserver/
Dcursor.c572 int bmax, bshift; in rfbShowCursor() local
581 bshift = s->serverFormat.blueShift; in rfbShowCursor()
585 bmask = (bmax << bshift); in rfbShowCursor()
634 bdst = (dval & bmask) >> bshift; in rfbShowCursor()
638 bsrc = (sval & bmask) >> bshift; in rfbShowCursor()
653 val |= (bdst << bshift); in rfbShowCursor()
/external/libjpeg-turbo/java/
DTJUnitTest.java226 int bshift = TJ.getBlueOffset(pf) * 8; in initIntBuf() local
241 buf[index] |= (255 << bshift); in initIntBuf()
433 int bshift = TJ.getBlueOffset(pf) * 8; in checkIntBuf() local
448 int b = (buf[index] >> bshift) & 0xFF; in checkIntBuf()
494 int b = (buf[pitch * row + col] >> bshift) & 0xFF; in checkIntBuf()
/external/mesa3d/src/mesa/drivers/x11/
DxmesaP.h93 GLint rshift, gshift, bshift;/* Pixel color component shifts */ member
Dxm_api.c449 v->bshift = 0; in setup_truecolor()
452 v->bshift++; in setup_truecolor()
488 v->BtoPixel[i] = (b >> (8-bBits)) << v->bshift; in setup_truecolor()
/external/icu/icu4c/source/i18n/
DdecNumber.c6382 const Unit *b, Int blength, Int bshift, argument
6401 if (bshift!=0) { /* B is shifted; low As copy across */
6402 minC+=bshift;
6404 if (a==c && bshift<=alength) {
6405 c+=bshift;
6406 a+=bshift;
6408 else for (; c<clsu+bshift; a++, c++) { /* copy needed */