Searched refs:SplatByte (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp2336 /// SplatByte - Distribute ByteVal over NumBits bits.
2338 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) {
2365 SDValue Mask55 = DAG.getConstant(SplatByte(Len, 0x55), VT);
2366 SDValue Mask33 = DAG.getConstant(SplatByte(Len, 0x33), VT);
2367 SDValue Mask0F = DAG.getConstant(SplatByte(Len, 0x0F), VT);
2368 SDValue Mask01 = DAG.getConstant(SplatByte(Len, 0x01), VT);
H A DSelectionDAG.cpp3234 /// SplatByte - Distribute ByteVal over NumBits bits.
3235 static APInt SplatByte(unsigned NumBits, uint8_t ByteVal) { function
3253 APInt Val = SplatByte(NumBits, C->getZExtValue() & 255);
3263 APInt Magic = SplatByte(NumBits, 0x01);

Completed in 88 milliseconds