HomeSort by relevance Sort by last modified time
    Searched defs:ByteVal (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 49 // Chain, Dst, ByteVal and Size. These cases are expected to use
52 SDValue Dst, uint64_t ByteVal, uint64_t Size,
55 uint64_t StoreVal = ByteVal;
57 StoreVal |= ByteVal << (I * 8);
80 // used if ByteVal is all zeros or all ones; in other casees,
82 uint64_t ByteVal = CByte->getZExtValue();
83 if (ByteVal == 0 || ByteVal == 255 ?
88 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1,
95 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2
    [all...]
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 137 unsigned ByteVal;
138 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) {
147 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data()));
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 690 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)),
693 Builder.CreateMemSet(Dest.first, ByteVal, SizeVal, Dest.second, false);
706 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)),
709 Builder.CreateMemSet(Dest.first, ByteVal, SizeVal, Dest.second, false);
    [all...]

Completed in 1172 milliseconds