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

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
FixedPointBuilder.h 33 Value *Convert(Value *Src, const FixedPointSemantics &SrcSema,
35 unsigned SrcWidth = SrcSema.getWidth();
37 unsigned SrcScale = SrcSema.getScale();
39 bool SrcIsSigned = SrcSema.isSigned();
84 bool LessIntBits = DstSema.getIntegralBits() < SrcSema.getIntegralBits();
139 /// \p SrcSema - The fixed-point semantic of the source value
141 Value *CreateFixedToFixed(Value *Src, const FixedPointSemantics &SrcSema,
143 return Convert(Src, SrcSema, DstSema, false);
149 /// \p SrcSema - The fixed-point semantic of the source value
152 Value *CreateFixedToInteger(Value *Src, const FixedPointSemantics &SrcSema,
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprScalar.cpp 906 const llvm::fltSemantics &SrcSema =
916 APFloat MinSrc(SrcSema, APFloat::uninitialized);
921 MinSrc = APFloat::getInf(SrcSema, true);
925 MinSrc.subtract(APFloat(SrcSema, 1), APFloat::rmTowardNegative);
928 APFloat MaxSrc(SrcSema, APFloat::uninitialized);
933 MaxSrc = APFloat::getInf(SrcSema, false);
937 MaxSrc.add(APFloat(SrcSema, 1), APFloat::rmTowardPositive);

Completed in 18 milliseconds