Home
last modified time | relevance | path

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

/external/v8/src/heap/
Dmarking.cc142 void PrintWord(uint32_t word, uint32_t himask = 0) { in PrintWord() argument
144 if ((mask & himask) != 0) PrintF("["); in PrintWord()
146 if ((mask & himask) != 0) PrintF("]"); in PrintWord()
/external/mesa3d/src/gallium/drivers/i915/
Di915_debug.c235 unsigned himask = 0xFFFFFFFFUL >> (31 - (hi)); in BITS() local
243 PRINTF(stream, ": 0x%x\n", ((dw) & himask) >> (lo)); in BITS()
250 unsigned himask; \
251 himask = (1UL << (hi)) - 1; \
252 assert ((x & himask & ~lomask) == 0); \
/external/python/cpython2/Objects/
Dlongobject.c3643 digit lomask, himask; in long_rshift() local
3680 himask = PyLong_MASK ^ lomask; in long_rshift()
3689 z->ob_digit[i] |= (a->ob_digit[j+1] << hishift) & himask; in long_rshift()
/external/python/cpython3/Objects/
Dlongobject.c4292 digit loshift, lomask, himask; in long_rshift() local
4323 himask = PyLong_MASK ^ lomask; in long_rshift()
4330 z->ob_digit[i] |= (a->ob_digit[j+1] << hishift) & himask; in long_rshift()
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
DSPUISelLowering.cpp923 SDValue lowmask, himask; in LowerSTORE() local
942 himask = DAG.getNode(SPUISD::SHL_BYTES, dl, MVT::i128, lowmask, in LowerSTORE()
962 DAG.getNode( ISD::XOR, dl, MVT::i128, himask, ones)); in LowerSTORE()