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

  /src/external/apache2/llvm/dist/clang/lib/Interpreter/
IncrementalParser.cpp 202 size_t InputSize = input.size(); // don't include trailing 0
205 llvm::WritableMemoryBuffer::getNewUninitMemBuffer(InputSize + 1,
208 memcpy(MBStart, input.data(), InputSize);
209 MBStart[InputSize] = '\n';
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp 2317 uint64_t InputSize = getContext().getTypeSize(InputTy);
2318 if (getContext().getTypeSize(OutputType) < InputSize) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 5851 unsigned InputSize = IntTy->getScalarSizeInBits();
5853 // Following test does NOT adjust InputSize downwards for signed inputs,
5856 if ((int)InputSize > MantissaWidth) {
5861 if (MaxExponent < (int)InputSize - !LHSUnsigned)
5867 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned)
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 13882 int InputSize = Input.getValueType().getScalarSizeInBits();
13884 if (InputSize + OutputSize == 40)
13886 else if (InputSize + OutputSize == 72)
13888 else if (InputSize + OutputSize == 48)
13890 else if (InputSize + OutputSize == 80)
13892 else if (InputSize + OutputSize == 96)
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 14540 unsigned InputSize = (int)SrcVT.getScalarSizeInBits() - IsInputSigned;
14542 unsigned ActualSize = std::min(InputSize, OutputSize);

Completed in 96 milliseconds