Searched refs:ByteVal (Results 1 - 5 of 5) sorted by relevance
/external/llvm/tools/llvm-mc/ |
H A D | Disassembler.cpp | 114 unsigned ByteVal; local 115 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { 125 ByteArray.first.push_back(ByteVal);
|
/external/llvm/lib/Target/SystemZ/ |
H A D | SystemZSelectionDAGInfo.cpp | 65 // Chain, Dst, ByteVal and Size. These cases are expected to use 68 SDValue Dst, uint64_t ByteVal, uint64_t Size, 71 uint64_t StoreVal = ByteVal; 73 StoreVal |= ByteVal << (I * 8); 97 // used if ByteVal is all zeros or all ones; in other casees, 99 uint64_t ByteVal = CByte->getZExtValue(); local 100 if (ByteVal == 0 || ByteVal == 255 ? 105 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, 112 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size 67 memsetStore(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dst, uint64_t ByteVal, uint64_t Size, unsigned Align, MachinePointerInfo DstPtrInfo) argument [all...] |
/external/llvm/lib/Transforms/Scalar/ |
H A D | MemCpyOptimizer.cpp | 129 /// Represents a range of memset'd bytes with the ByteVal value. 346 Value *ByteVal); 373 Value *StartPtr, Value *ByteVal) { 398 if (ByteVal != isBytewiseValue(NextStore->getOperand(0))) 411 if (MSI->isVolatile() || ByteVal != MSI->getValue() || 463 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment); 555 if (Value *ByteVal = isBytewiseValue(SI->getOperand(0))) 557 ByteVal)) { 957 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) { 959 Builder.CreateMemSet(M->getRawDest(), ByteVal, 372 tryMergingIntoMemset(Instruction *StartInst, Value *StartPtr, Value *ByteVal) argument [all...] |
/external/libnfc-nxp/src/ |
H A D | phFriNfc_TopazMap.c | 138 uint8_t ByteVal 1070 uint8_t ByteVal 1077 PHNFC_UNUSED_VARIABLE(ByteVal); 1113 NdefMap->SendRecvBuf[index] = ByteVal; 1135 NdefMap->SendRecvBuf[index] = ByteVal;
|
/external/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 951 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), local 956 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false); 968 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), local 971 Builder.CreateMemSet(Dest, ByteVal, SizeVal, false);
|
Completed in 629 milliseconds