Lines Matching refs:g

52     mpf_class g(1 / f, very_large_prec);  in check_mpf()  local
54 (g, "0.33333 33333 33333 33333 33333 33333 33333 33333 33333 33333" in check_mpf()
59 mpf_class g(0.0, very_large_prec); in check_mpf() local
60 g = 1 / f; in check_mpf()
62 (g, "0.11111 11111 11111 11111 11111 11111 11111 11111 11111 11111" in check_mpf()
67 mpf_class g(0.0, very_large_prec); in check_mpf() local
68 g = 1 / f; in check_mpf()
70 (g, "0.06666 66666 66666 66666 66666 66666 66666 66666 66666 66666" in check_mpf()
77 mpf_class g(-(-(-1 / f)), very_large_prec); in check_mpf() local
79 (g, "-0.33333 33333 33333 33333 33333 33333 33333 33333 33333 33333" in check_mpf()
83 mpf_class f(3.0, small_prec), g(9.0, medium_prec); in check_mpf() local
85 h = 1/f + 1/g; in check_mpf()
91 mpf_class f(3.0, small_prec), g(9.0, medium_prec), h(15.0, large_prec); in check_mpf() local
93 i = f / g + h; in check_mpf()
100 mpf_class g(-(1 + f) / 3, very_large_prec); in check_mpf() local
102 (g, "-1.33333 33333 33333 33333 33333 33333 33333 33333 33333 33333" in check_mpf()
107 mpf_class g(0.0, very_large_prec); in check_mpf() local
108 g = sqrt(1 / f); in check_mpf()
110 (g, "0.33333 33333 33333 33333 33333 33333 33333 33333 33333 33333" in check_mpf()
115 mpf_class g(0.0, very_large_prec); in check_mpf() local
116 g = hypot(1 + 5 / f, 1.0); in check_mpf()
118 (g, "1.66666 66666 66666 66666 66666 66666 66666 66666 66666 66666" in check_mpf()
124 mpf_class f(3.0, small_prec), g(9.0, medium_prec); in check_mpf() local
126 h -= f / g; in check_mpf()
135 mpf_class g(0.0, very_large_prec); in check_mpf() local
136 g = mpf_class(1 / f); in check_mpf()
137 ASSERT_ALWAYS_PREC(g, "0.33333 33333 33333 33333", small_prec); in check_mpf()
141 mpf_class g(0.0, very_large_prec); in check_mpf() local
142 g = mpf_class(1 / f); in check_mpf()
144 (g, "0.11111 11111 11111 11111 11111 11111 11111 1111", medium_prec); in check_mpf()
148 mpf_class g(0.0, very_large_prec); in check_mpf() local
149 g = mpf_class(1 / f); in check_mpf()
151 (g, "0.06666 66666 66666 66666 66666 66666 66666 66666 66666 66666" in check_mpf()
156 mpf_class f(3.0, small_prec), g(9.0, medium_prec); in check_mpf() local
158 h = mpf_class(f / g + 1, large_prec); in check_mpf()
169 mpf_class g(0.0, very_large_prec); in check_mpf() local
170 g = f - q; in check_mpf()
172 (g, "2.66666 66666 66666 66666 66666 66666 66666 66666 66666 66666" in check_mpf()
179 mpf_class g(0.0, very_large_prec); in check_mpf() local
180 g = mpf_class(f - q, large_prec); in check_mpf()
182 (g, "2.66666 66666 66666 66666 66666 66666 66666 66666 66666 66666" in check_mpf()
189 mpf_class g(0.0, very_large_prec); in check_mpf() local
190 g = mpf_class(f - q); in check_mpf()
192 (g, "2.66666 66666 66666 66666 66666 66666 66666 667", medium_prec); in check_mpf()
197 mpf_class g(0.0, very_large_prec); in check_mpf() local
198 g = mpf_class(f + q); in check_mpf()
200 (g, "15.33333 33333 33333 33333 33333 33333 33333 33333 33333 33333" in check_mpf()