Searched refs:himask (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/heap/ |
D | marking.h | 203 static void PrintWord(uint32_t word, uint32_t himask = 0) { 205 if ((mask & himask) != 0) PrintF("["); 207 if ((mask & himask) != 0) PrintF("]");
|
/external/mesa3d/src/gallium/drivers/i915/ |
D | i915_debug.c | 235 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/ |
D | longobject.c | 3643 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/swiftshader/third_party/LLVM/lib/Target/CellSPU/ |
D | SPUISelLowering.cpp | 923 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()
|