/third_party/FreeBSD/contrib/gdtoa/ |
H A D | gdtoa.h | 87 FPI { struct 93 } FPI; typedef 95 enum { /* FPI.rounding values: same as FLT_ROUNDS */ 108 extern char* gdtoa ANSI((FPI *fpi, int be, ULong *bits, int *kindp, 113 extern int strtodg ANSI((CONST char*, char**, FPI*, Long*, ULong*));
|
H A D | strtord.c | 79 static FPI fpi0 = { 53, 1-1023-53+1, 2046-1023-53+1, 1, SI }; 80 FPI *fpi, fpi1;
|
H A D | gdtoaimp.h | 612 extern char *gdtoa ANSI((FPI *fpi, int be, ULong *bits, int *kindp, 615 extern int gethex ANSI((CONST char**, FPI*, Long*, Bigint**, int)); 617 extern int hexnan ANSI((CONST char**, FPI*, ULong*)); 635 extern int strtodg_l ANSI((CONST char*, char**, FPI*, Long*, ULong*, locale_t)); 640 extern int strtoIg ANSI((CONST char*, char**, FPI*, Long*, Bigint**, int*));
|
H A D | hexnan.c | 55 CONST char **sp; FPI *fpi; ULong *x0; in hexnan() 57 hexnan( CONST char **sp, FPI *fpi, ULong *x0)
|
H A D | gdtoa_fltrnds.h | 0 FPI *fpi, fpi1;
|
H A D | strtof.c | 43 static FPI fpi0 = { 24, 1-127-24+1, 254-127-24+1, 1, SI };
|
H A D | gethex.c | 41 CONST char **sp; FPI *fpi; Long *exp; Bigint **bp; int sign; in gethex() 43 gethex( CONST char **sp, FPI *fpi, Long *exp, Bigint **bp, int sign)
|
H A D | strtodg.c | 175 U *d; FPI *fpi; Long *exp; ULong *bits; int exact, rd, *irv; in rvOK() 177 (U *d, FPI *fpi, Long *exp, ULong *bits, int exact, int rd, int *irv) 319 CONST char *s00; char **se; FPI *fpi; Long *exp; ULong *bits; locale_t loc; in strtodg_l() 321 (CONST char *s00, char **se, FPI *fpi, Long *exp, ULong *bits, locale_t loc)
|
H A D | strtod.c | 171 static FPI fpi = { 53, 1-1023-53+1, 2046-1023-53+1, 1, SI }; 179 FPI fpi1 = fpi; 298 static FPI fpinan = /* only 52 explicit bits */
|
/third_party/ffmpeg/libavfilter/ |
H A D | src_avsynctest.c | 171 #define FPI 0x8000 macro 182 x &= 2 * FPI - 1; in sin32() 184 if (x >= (3 * FPI / 2)) in sin32() 185 x = x - 2 * FPI; in sin32() 186 else if (x > FPI / 2) in sin32() 187 x = FPI - x; in sin32() 231 dst[i] = sin32(av_rescale_q(800LL * 2LL * FPI, outlink->time_base, av_make_q(1, s->apts + i)), a); in audio_frame()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | WasmEHPrepare.cpp | 282 auto *FPI = cast<FuncletPadInst>(BB->getFirstNonPHI()); in prepareEHPad() local 284 for (auto &U : FPI->uses()) { in prepareEHPad() 320 IRB.CreateCall(LPadIndexF, {FPI, IRB.getInt32(Index)}); in prepareEHPad() 331 auto *CPI = cast<CatchPadInst>(FPI); in prepareEHPad()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | Verifier.cpp | 479 void visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI); 494 void visitFuncletPadInst(FuncletPadInst &FPI); 3610 if (auto *FPI = dyn_cast<FuncletPadInst>(EHPad)) in getParentPad() 3611 return FPI->getParentPad(); in getParentPad() 3794 void Verifier::visitFuncletPadInst(FuncletPadInst &FPI) { in visitFuncletPadInst() argument 3797 SmallVector<FuncletPadInst *, 8> Worklist({&FPI}); in visitFuncletPadInst() 3852 if (ExitedPad == &FPI) { in visitFuncletPadInst() 3855 // FPI, but not including FPI since we need to make sure in visitFuncletPadInst() 3856 // to check all direct users of FPI fo in visitFuncletPadInst() 4762 visitConstrainedFPIntrinsic(ConstrainedFPIntrinsic &FPI) visitConstrainedFPIntrinsic() argument 4805 "invalid predicate for constrained FP comparison intrinsic", &FPI); visitConstrainedFPIntrinsic() local [all...] |
H A D | Instructions.cpp | 1082 FuncletPadInst::FuncletPadInst(const FuncletPadInst &FPI) 1083 : Instruction(FPI.getType(), FPI.getOpcode(), 1085 FPI.getNumOperands(), 1086 FPI.getNumOperands()) { 1087 std::copy(FPI.op_begin(), FPI.op_end(), op_begin()); 1088 setParentPad(FPI.getParentPad());
|
H A D | AsmWriter.cpp | 3820 } else if (const auto *FPI = dyn_cast<FuncletPadInst>(&I)) { in printInstruction() 3822 writeOperand(FPI->getParentPad(), /*PrintType=*/false); in printInstruction() 3824 for (unsigned Op = 0, NumOps = FPI->getNumArgOperands(); Op < NumOps; in printInstruction() 3828 writeOperand(FPI->getArgOperand(Op), /*PrintType=*/true); in printInstruction()
|
H A D | Core.cpp | 2771 if (FuncletPadInst *FPI = dyn_cast<FuncletPadInst>(unwrap(Instr))) { 2772 return FPI->getNumArgOperands();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | InlineFunction.cpp | 219 if (auto *FPI = dyn_cast<FuncletPadInst>(EHPad)) in getParentPad() 220 return FPI->getParentPad(); in getParentPad() 2128 auto *FPI = cast<FuncletPadInst>(I); in InlineFunction() local 2129 if (isa<ConstantTokenNone>(FPI->getParentPad())) in InlineFunction() 2130 FPI->setParentPad(CallSiteEHPad); in InlineFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.h | 770 void visitConstrainedFPIntrinsic(const ConstrainedFPIntrinsic &FPI);
|
H A D | SelectionDAGBuilder.cpp | 1131 if (auto *FPI = dyn_cast<ConstrainedFPIntrinsic>(&I)) in visit() 1132 if (FPI->getExceptionBehavior() == fp::ExceptionBehavior::ebIgnore) in visit() 6994 const ConstrainedFPIntrinsic &FPI) { in visitConstrainedFPIntrinsic() 6999 ComputeValueVTs(TLI, DAG.getDataLayout(), FPI.getType(), ValueVTs); in visitConstrainedFPIntrinsic() 7008 if (FPI.isUnaryOp()) { in visitConstrainedFPIntrinsic() 7009 Opers.push_back(getValue(FPI.getArgOperand(0))); in visitConstrainedFPIntrinsic() 7010 } else if (FPI.isTernaryOp()) { in visitConstrainedFPIntrinsic() 7011 Opers.push_back(getValue(FPI.getArgOperand(0))); in visitConstrainedFPIntrinsic() 7012 Opers.push_back(getValue(FPI.getArgOperand(1))); in visitConstrainedFPIntrinsic() 7013 Opers.push_back(getValue(FPI in visitConstrainedFPIntrinsic() 6993 visitConstrainedFPIntrinsic( const ConstrainedFPIntrinsic &FPI) visitConstrainedFPIntrinsic() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | Reassociate.cpp | 1822 if (auto FPI = dyn_cast<FPMathOperator>(I)) 1823 Builder.setFastMathFlags(FPI->getFastMathFlags());
|