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

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Decompressor.h 25 /// @param IsLE Flag determines if Data is in little endian form.
28 bool IsLE, bool Is64Bit);
  /src/external/apache2/llvm/dist/llvm/lib/Object/
Decompressor.cpp 21 bool IsLE, bool Is64Bit) {
27 : D.consumeCompressedZLibHeader(Is64Bit, IsLE);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.h 619 bool &Swap, bool IsLE);
640 bool &Swap, bool IsLE);
660 unsigned &InsertAtByte, bool &Swap, bool IsLE);
PPCISelLowering.cpp 1769 bool IsLE = DAG.getDataLayout().isLittleEndian();
1771 if (IsLE)
1777 if (!IsLE)
1783 unsigned j = IsLE ? 0 : 1;
1800 bool IsLE = DAG.getDataLayout().isLittleEndian();
1802 if (IsLE)
1809 if (!IsLE)
1816 unsigned j = IsLE ? 0 : 2;
1842 bool IsLE = DAG.getDataLayout().isLittleEndian();
1844 if (IsLE)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
MachOEmitter.cpp 331 makeRelocationInfo(const MachOYAML::Relocation &R, bool IsLE) {
335 if (IsLE)
ELFEmitter.cpp 1944 bool IsLE = Doc.Header.Data == ELFYAML::ELF_ELFDATA(ELF::ELFDATA2LSB);
1947 if (IsLE)
1951 if (IsLE)
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 7495 bool IsLE = SI.getModule()->getDataLayout().isLittleEndian();
7502 const bool IsOffsetStore = (IsLE && Upper) || (!IsLE && !Upper);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 2938 bool IsLE = getDataLayout().isLittleEndian();
2957 unsigned Shifts = IsLE ? i : SubScale - 1 - i;
2981 unsigned Shifts = IsLE ? i : NumElts - 1 - i;
3770 bool IsLE = getDataLayout().isLittleEndian();
3792 SubOffset = (IsLE ? ((Scale - 1) - SubOffset) : SubOffset);
DAGCombiner.cpp 12004 bool isLE = DAG.getDataLayout().isLittleEndian();
12066 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
12243 unsigned Idx = isLE ? 0 : VecSrcVT.getVectorNumElements() - 1;
12758 bool isLE = DAG.getDataLayout().isLittleEndian();
12764 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
16818 bool IsLE = DAG.getDataLayout().isLittleEndian();
16820 unsigned Idx = IsLE ? (NumStores - 1 - i) : i;
18585 bool IsLE = DAG.getDataLayout().isLittleEndian();
18588 unsigned BCTruncElt = IsLE ? 0 : NumElts - 1;
18602 BCTruncElt = IsLE ? 0 : XBitWidth / VecEltBitWidth - 1
    [all...]

Completed in 59 milliseconds