HomeSort by relevance Sort by last modified time
    Searched refs:ByteVal (Results 1 - 6 of 6) 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...]
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 126 /// MemsetRange - Represents a range of memset'd bytes with the ByteVal value.
351 Value *ByteVal);
376 Value *StartPtr, Value *ByteVal) {
401 if (ByteVal != isBytewiseValue(NextStore->getOperand(0)))
414 if (MSI->isVolatile() || ByteVal != MSI->getValue() ||
468 Builder.CreateMemSet(StartPtr, ByteVal, Range.End-Range.Start, Alignment);
553 if (Value *ByteVal = isBytewiseValue(SI->getOperand(0)))
555 ByteVal)) {
838 if (Value *ByteVal = isBytewiseValue(GV->getInitializer())) {
840 Builder.CreateMemSet(M->getRawDest(), ByteVal, M->getLength()
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_TopazMap.c 138 uint8_t ByteVal
    [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 276 milliseconds