Home
last modified time | relevance | path

Searched refs:himask (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/i915/
Di915_debug.c236 unsigned himask = 0xFFFFFFFFUL >> (31 - (hi)); in BITS() local
242 mesa_logi("\t\t %s : 0x%x", out, ((dw)&himask) >> (lo)); in BITS()
251 ASSERTED unsigned himask; \
252 himask = (1UL << (hi)) - 1; \
253 assert((x & himask & ~lomask) == 0); \
/third_party/python/Objects/
Dlongobject.c4382 digit lomask, himask; in long_rshift1() local
4403 himask = PyLong_MASK ^ lomask; in long_rshift1()
4410 z->ob_digit[i] |= (a->ob_digit[j+1] << hishift) & himask; in long_rshift1()