Searched refs:ByteVal (Results 1 – 5 of 5) sorted by relevance
/external/llvm/tools/llvm-mc/ |
D | Disassembler.cpp | 140 unsigned ByteVal; in ByteArrayFromString() local 141 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) { in ByteArrayFromString() 150 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data())); in ByteArrayFromString()
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZSelectionDAGInfo.cpp | 74 SDValue Dst, uint64_t ByteVal, uint64_t Size, in memsetStore() argument 77 uint64_t StoreVal = ByteVal; in memsetStore() 79 StoreVal |= ByteVal << (I * 8); in memsetStore() 104 uint64_t ByteVal = CByte->getZExtValue(); in EmitTargetCodeForMemset() local 105 if (ByteVal == 0 || ByteVal == 255 ? in EmitTargetCodeForMemset() 110 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1, in EmitTargetCodeForMemset() 117 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset()
|
/external/llvm/lib/Transforms/Scalar/ |
D | MemCpyOptimizer.cpp | 351 Value *ByteVal); 376 Value *StartPtr, Value *ByteVal) { in INITIALIZE_PASS_DEPENDENCY() 401 if (ByteVal != isBytewiseValue(NextStore->getOperand(0))) in INITIALIZE_PASS_DEPENDENCY() 414 if (MSI->isVolatile() || ByteVal != MSI->getValue() || in INITIALIZE_PASS_DEPENDENCY() 468 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment); in INITIALIZE_PASS_DEPENDENCY() 553 if (Value *ByteVal = isBytewiseValue(SI->getOperand(0))) in processStore() local 555 ByteVal)) { in processStore() 838 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) { in processMemCpy() local 840 Builder.CreateMemSet(M->getRawDest(), ByteVal, M->getLength(), in processMemCpy()
|
/external/libnfc-nxp/src/ |
D | phFriNfc_TopazMap.c | 138 uint8_t ByteVal 1070 uint8_t ByteVal in phFriNfc_Tpz_H_WrAByte() argument 1077 PHNFC_UNUSED_VARIABLE(ByteVal); in phFriNfc_Tpz_H_WrAByte() 1113 NdefMap->SendRecvBuf[index] = ByteVal; in phFriNfc_Tpz_H_WrAByte() 1135 NdefMap->SendRecvBuf[index] = ByteVal; in phFriNfc_Tpz_H_WrAByte()
|
/external/clang/lib/CodeGen/ |
D | CGBuiltin.cpp | 702 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local 705 Builder.CreateMemSet(Dest.first, ByteVal, SizeVal, Dest.second, false); in EmitBuiltinExpr() 718 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)), in EmitBuiltinExpr() local 721 Builder.CreateMemSet(Dest.first, ByteVal, SizeVal, Dest.second, false); in EmitBuiltinExpr()
|