Home
last modified time | relevance | path

Searched refs:Prec (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/lgpl3/mpfr/dist/src/
H A Dexp3.c167 mpfr_prec_t realprec, Prec; in mpfr_exp_3() local
204 Prec = realprec + shift + 2 + shift_x; in mpfr_exp_3()
205 mpfr_init2 (t, Prec); in mpfr_exp_3()
206 mpfr_init2 (tmp, Prec); in mpfr_exp_3()
216 k = MPFR_INT_CEIL_LOG2 (Prec) - MPFR_LOG2_GMP_NUMB_BITS; in mpfr_exp_3()
327 Prec = realprec + shift + 2 + shift_x; in mpfr_exp_3()
328 mpfr_set_prec (t, Prec); in mpfr_exp_3()
329 mpfr_set_prec (tmp, Prec); in mpfr_exp_3()
H A Dbernoulli.c53 mpfr_prec_t Prec[] = {0, 5, 5, 6, 6, 9, 16, 10, 19, 23, 25, 27, 35, 31, in mpfr_bernoulli_internal() local
75 prec = Prec[n >> 1]; in mpfr_bernoulli_internal()
/netbsd-src/external/lgpl3/gmp/dist/mpn/generic/
H A Dsqrtrem.c168 #define Prec (GMP_NUMB_BITS >> 1) macro
196 rp0 = (rp0 << (Prec - 1)) + (np0 >> (Prec + 1));
199 q -= q >> Prec;
203 sp0 = (sp0 << Prec) | q;
204 cc = u >> (Prec - 1);
205 rp0 = ((u << (Prec + 1)) & GMP_NUMB_MASK) + (np0 & ((CNST_LIMB (1) << (Prec + 1)) - 1));
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DFormatProviders.h63 size_t Prec; in parseNumericPrecision() local
67 else if (Str.getAsInteger(10, Prec)) { in parseNumericPrecision()
71 assert(Prec < 100 && "Precision out of range"); in parseNumericPrecision()
72 Result = std::min<size_t>(99u, Prec); in parseNumericPrecision()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DNativeFormatting.cpp164 size_t Prec = Precision.getValueOr(getDefaultPrecision(Style)); in write_double() local
184 Out << "%." << Prec << Letter; in write_double()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp241 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
243 Precedence(Prec) {} in PrototypeAST()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp264 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
266 Precedence(Prec) {} in PrototypeAST()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp258 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
260 Precedence(Prec) {} in PrototypeAST()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp263 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
265 Precedence(Prec) {} in PrototypeAST()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp258 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
260 Precedence(Prec) {} in PrototypeAST()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp258 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
260 Precedence(Prec) {} in PrototypeAST()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp256 bool IsOperator = false, unsigned Prec = 0) in PrototypeAST() argument
258 Precedence(Prec) {} in PrototypeAST()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp367 unsigned Prec = 0) in PrototypeAST() argument
369 Precedence(Prec), Line(Loc.Line) {} in PrototypeAST()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/tutorial/MyFirstLanguageFrontend/
H A DLangImpl06.rst142 bool IsOperator = false, unsigned Prec = 0)
144 Precedence(Prec) {}
/netbsd-src/external/lgpl3/mpfr/dist/
H A DChangeLog25128 Prec=53 bits (core 2 duo 64 bits)
34391 Handle case where Prec(a) ~ estimated prec of mulhigh.
34433 Fix bug in case of reuse of variable (a,b,a) with Exp(b)=Exp(a)+Prec(b).