Home
last modified time | relevance | path

Searched refs:bmask (Results 1 – 11 of 11) sorted by relevance

/external/mesa3d/src/mesa/drivers/x11/
Dxm_api.c428 unsigned long rmask, gmask, bmask; in setup_truecolor() local
450 bmask = GET_BLUEMASK(v); in setup_truecolor()
451 while ((bmask & 1)==0) { in setup_truecolor()
453 bmask = bmask >> 1; in setup_truecolor()
468 GLint bBits = util_bitcount(bmask); in setup_truecolor()
477 for (i=0; i<=bmask; i++) in setup_truecolor()
478 v->PixelToB[i] = (unsigned char) ((i * 255) / bmask); in setup_truecolor()
Dxm_dd.c68 GLboolean rmask, GLboolean gmask, GLboolean bmask, GLboolean amask) in color_mask() argument
82 if (rmask && gmask && bmask) { in color_mask()
89 if (bmask) m |= GET_BLUEMASK(xmesa->xm_visual); in color_mask()
/external/mesa3d/src/mesa/main/
Dpixeltransfer.c114 GLuint bmask = ctx->PixelMaps.ItoB.Size - 1; in _mesa_map_ci_to_rgba() local
124 rgba[i][BCOMP] = bMap[index[i] & bmask]; in _mesa_map_ci_to_rgba()
Ddd.h615 GLboolean bmask, GLboolean amask );
/external/mksh/src/
Dfuncs.c3607 sigset_t omask, bmask; in c_sleep() local
3610 (void)sigemptyset(&bmask); in c_sleep()
3611 (void)sigaddset(&bmask, SIGPIPE); in c_sleep()
3612 (void)sigaddset(&bmask, SIGCHLD); in c_sleep()
3614 (void)sigaddset(&bmask, SIGWINCH); in c_sleep()
3617 (void)sigaddset(&bmask, SIGINFO); in c_sleep()
3620 (void)sigaddset(&bmask, SIGUSR1); in c_sleep()
3623 (void)sigaddset(&bmask, SIGUSR2); in c_sleep()
3625 sigprocmask(SIG_BLOCK, &bmask, &omask); in c_sleep()
/external/libaom/libaom/av1/common/
Dwarped_motion.c310 const int bmask = (1 << b) - 1; in highbd_error_measure() local
314 const int e2 = err & bmask; in highbd_error_measure()
/external/mesa3d/src/mesa/drivers/dri/nouveau/
Dnouveau_state.c70 GLboolean bmask, GLboolean amask) in nouveau_color_mask() argument
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/
DSparcInstrVIS.td150 def BMASK : VISInst<0b000011001, "bmask", I64Regs>;
/external/llvm-project/llvm/lib/Target/Sparc/
DSparcInstrVIS.td150 def BMASK : VISInst<0b000011001, "bmask", I64Regs>;
/external/llvm/lib/Target/Sparc/
DSparcInstrVIS.td151 def BMASK : VISInst<0b000011001, "bmask", I64Regs>;
/external/neon_2_sse/
DNEON_2_SSE.h8247 int64_t bmask; variable
8249 bmask = ( int64_t)1 << (63 - b); //positive
8250 if (a_i64 >= bmask) {
8253 res.m64_i64[0] = (a_i64 <= -bmask) ? _SIGNBIT64 : a_i64 << b;
8295 uint64_t bmask; variable
8297 bmask = ( uint64_t)1 << (64 - b);
8298 …res.m64_u64[0] = (a_i64 >= bmask)&&(b>0) ? 0xffffffffffffffff : a_i64 << b; //if b=0 we are fine w…
8357 int64_t bmask; variable
8359 bmask = ( int64_t)1 << (63 - b); //positive
8362 if (atmp[i] >= bmask) {
[all …]