HomeSort by relevance Sort by last modified time
    Searched refs:Trunc (Results 1 - 25 of 75) sorted by null

1 2 3

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/preprocessed/
numeric_cast_traits_common.hpp 23 typedef Trunc<char> rounding_policy;
35 typedef Trunc<signed char> rounding_policy;
47 typedef Trunc<unsigned char> rounding_policy;
59 typedef Trunc<short> rounding_policy;
71 typedef Trunc<unsigned short> rounding_policy;
83 typedef Trunc<int> rounding_policy;
95 typedef Trunc<unsigned int> rounding_policy;
107 typedef Trunc<long> rounding_policy;
119 typedef Trunc<unsigned long> rounding_policy;
131 typedef Trunc<float> rounding_policy
    [all...]
numeric_cast_traits_long_long.hpp 21 typedef Trunc<boost::long_long_type> rounding_policy;
33 typedef Trunc<boost::ulong_long_type> rounding_policy;
45 typedef Trunc<boost::long_long_type> rounding_policy;
57 typedef Trunc<boost::ulong_long_type> rounding_policy;
69 typedef Trunc<boost::long_long_type> rounding_policy;
81 typedef Trunc<boost::ulong_long_type> rounding_policy;
93 typedef Trunc<boost::long_long_type> rounding_policy;
105 typedef Trunc<boost::ulong_long_type> rounding_policy;
117 typedef Trunc<boost::long_long_type> rounding_policy;
129 typedef Trunc<boost::ulong_long_type> rounding_policy
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
converter.hpp 25 class Float2IntRounder = Trunc< BOOST_DEDUCED_TYPENAME Traits::source_type> ,
48 class Float2IntRounder = Trunc<S> ,
numeric_cast_traits.hpp 21 typedef Trunc<Source> rounding_policy;
converter_policies.hpp 29 struct Trunc
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 509 Value *Trunc;
521 Trunc = Builder.CreateTrunc(ExtRem, RemTy);
523 Rem->replaceAllUsesWith(Trunc);
559 Value *Trunc;
571 Trunc = Builder.CreateTrunc(ExtRem, RemTy);
573 Rem->replaceAllUsesWith(Trunc);
610 Value *Trunc;
622 Trunc = Builder.CreateTrunc(ExtDiv, DivTy);
624 Div->replaceAllUsesWith(Trunc);
660 Value *Trunc;
    [all...]
BypassSlowDivision.cpp 122 Value *ShortDivisorV = FastBuilder.CreateCast(Instruction::Trunc, Divisor,
124 Value *ShortDividendV = FastBuilder.CreateCast(Instruction::Trunc, Dividend,
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/
numeric_cast_traits.hpp 131 typedef Trunc<BOOST_PP_SEQ_ELEM(BOOST_NUMERIC_CONVERSION_B, BOOST_NUMERIC_CONVERSION_SEQ_B())> rounding_policy;
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_qsort.c 186 #define Recurse(Trunc) \
188 if (l<Trunc) { \
189 if (r>=Trunc) doRight \
193 else if (r>=Trunc) { pushRight; doLeft }\
327 size_t trunc=TRUNC_nonaligned*size; local
332 if ((size_t)(last-first)>trunc) {
343 Recurse(trunc)
358 size_t trunc=TRUNC_aligned*size; local
363 if ((size_t)(last-first)>trunc) {
374 Recurse(trunc)
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 107 case Instruction::Trunc:
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 223 case Instruction::SExt: case Instruction::ZExt: case Instruction::Trunc:
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 372 if (Opcode == Instruction::BitCast || Opcode == Instruction::Trunc)
376 if (Opcode == Instruction::Trunc &&
567 case Intrinsic::trunc: ISD = ISD::FTRUNC; break;
CodeGenPrepare.cpp 693 // Sink the trunc
715 /// %x.extract.trunc = trunc i64 %x.extract.shift to i16
720 /// %x.extract.trunc = trunc i64 %x.extract.shift.1 to i16
759 // trunc.result = trunc shift.result to i16
764 // cmp i16 trunc.result, opnd2
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
Instruction.cpp 230 case Trunc: return "trunc";
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 194 case Instruction::Trunc:
204 // This also handles the case of zext(trunc(x)) -> zext(x).
331 /// Ty will always be a type smaller than V. We should return true if trunc(V)
333 /// then trunc(inst(x,y)) can be computed as inst(trunc(x),trunc(y)), which only
408 case Instruction::Trunc:
409 // trunc(trunc(x)) -> trunc(x
    [all...]
InstCombineVectorOps.cpp 629 case Instruction::Trunc:
714 case Instruction::Trunc:
791 case Instruction::Trunc:
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 591 SDValue Trunc = CurDAG->getNode(ISD::TRUNCATE, DL, VT, Base);
592 insertDAGNode(CurDAG, Base.getNode(), Trunc);
593 Base = Trunc;
    [all...]
  /external/llvm/lib/Analysis/
CostModel.cpp 452 case Instruction::Trunc:
InstructionSimplify.cpp 736 // trunc(X) - trunc(Y) -> trunc(X - Y) if everything simplifies.
742 // It does! Now see if "trunc V" simplifies.
744 // It does, return the simplified "trunc V".
    [all...]
ScalarEvolution.cpp 144 const SCEVTruncateExpr *Trunc = cast<SCEVTruncateExpr>(this);
145 const SCEV *Op = Trunc->getOperand();
146 OS << "(trunc " << *Op->getType() << " " << *Op << " to "
147 << *Trunc->getType() << ")";
771 MultiplyFactor = MultiplyFactor.trunc(W);
841 // trunc(trunc(x)) --> trunc(x)
845 // trunc(sext(x)) --> sext(x) if widening or trunc(x) if narrowin
    [all...]
TargetTransformInfo.cpp 313 case Instruction::Trunc:
314 // trunc to a native type is free (assuming the target has compare and
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp     [all...]
LoopRotation.cpp 222 case Instruction::Trunc:
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 192 SDValue Trunc, SDValue ExtLoad, SDLoc DL,
343 /// (trunc (and X, C)) -> (and (trunc X), (trunc C))
346 /// requirements are checked by the function (e.g. that trunc is
813 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
818 Trunc.getNode()->dump(&DAG);
821 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
825 AddToWorkList(Trunc.getNode());
    [all...]

Completed in 356 milliseconds

1 2 3