HomeSort by: relevance | last modified time | path
    Searched refs:BytesLoaded (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp 601 unsigned BytesLoaded = (IntType->getBitWidth() + 7) / 8;
602 if (BytesLoaded > 32 || BytesLoaded == 0)
620 if (Offset <= -1 * static_cast<int64_t>(BytesLoaded))
629 unsigned BytesLeft = BytesLoaded;
643 ResultVal = RawBytes[BytesLoaded - 1];
644 for (unsigned i = 1; i != BytesLoaded; ++i) {
646 ResultVal |= RawBytes[BytesLoaded - 1 - i];
650 for (unsigned i = 1; i != BytesLoaded; ++i) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
AArch64InstructionSelector.cpp 2971 unsigned BytesLoaded = MemOp->getSize();
2972 if (BytesLoaded < 4 && SrcTy.getSizeInBytes() == BytesLoaded)

Completed in 21 milliseconds