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

  /external/llvm/tools/llvm-mc/
Disassembler.cpp 140 unsigned ByteVal;
141 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) {
150 ByteArray.push_back(std::make_pair((unsigned char)ByteVal, Value.data()));
  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 71 // Chain, Dst, ByteVal and Size. These cases are expected to use
74 SDValue Dst, uint64_t ByteVal, uint64_t Size,
77 uint64_t StoreVal = ByteVal;
79 StoreVal |= ByteVal << (I * 8);
102 // used if ByteVal is all zeros or all ones; in other casees,
104 uint64_t ByteVal = CByte->getZExtValue();
105 if (ByteVal == 0 || ByteVal == 255 ?
110 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1,
117 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winevt.h 279 UINT8 ByteVal;
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 702 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)),
705 Builder.CreateMemSet(Dest.first, ByteVal, SizeVal, Dest.second, false);
718 Value *ByteVal = Builder.CreateTrunc(EmitScalarExpr(E->getArg(1)),
721 Builder.CreateMemSet(Dest.first, ByteVal, SizeVal, Dest.second, false);
    [all...]

Completed in 750 milliseconds