HomeSort by: relevance | last modified time | path
    Searched defs:ByteVal (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-mc/
Disassembler.cpp 113 unsigned ByteVal;
114 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) {
124 ByteArray.first.push_back(ByteVal);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-ml/
Disassembler.cpp 107 unsigned ByteVal;
108 if (Value.getAsInteger(0, ByteVal) || ByteVal > 255) {
118 ByteArray.first.push_back(ByteVal);
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 62 // Chain, Dst, ByteVal and Size. These cases are expected to use
65 SDValue Dst, uint64_t ByteVal, uint64_t Size,
67 uint64_t StoreVal = ByteVal;
69 StoreVal |= ByteVal << (I * 8);
91 // used if ByteVal is all zeros or all ones; in other casees,
93 uint64_t ByteVal = CByte->getZExtValue();
94 if (ByteVal == 0 || ByteVal == 255 ?
99 SDValue Chain1 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size1,
107 DAG, DL, Chain, Dst, ByteVal, Size2
    [all...]

Completed in 21 milliseconds