Home | History | Annotate | Download | only in cctest

Lines Matching defs:status

61   int status;
64 status = FastDtoa(min_double, FAST_DTOA_SHORTEST, 0,
66 CHECK(status);
71 status = FastDtoa(max_double, FAST_DTOA_SHORTEST, 0,
73 CHECK(status);
77 status = FastDtoa(4294967272.0, FAST_DTOA_SHORTEST, 0,
79 CHECK(status);
83 status = FastDtoa(4.1855804968213567e298, FAST_DTOA_SHORTEST, 0,
85 CHECK(status);
89 status = FastDtoa(5.5626846462680035e-309, FAST_DTOA_SHORTEST, 0,
91 CHECK(status);
95 status = FastDtoa(2147483648.0, FAST_DTOA_SHORTEST, 0,
97 CHECK(status);
101 status = FastDtoa(3.5844466002796428e+298, FAST_DTOA_SHORTEST, 0,
103 if (status) { // Not all FastDtoa variants manage to compute this number.
110 status = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, &length, &point);
111 if (status) {
118 status = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, &length, &point);
119 if (status) {
131 int status;
133 status = FastDtoa(1.0, FAST_DTOA_PRECISION, 3, buffer, &length, &point);
134 CHECK(status);
140 status = FastDtoa(1.5, FAST_DTOA_PRECISION, 10, buffer, &length, &point);
141 if (status) {
149 status = FastDtoa(min_double, FAST_DTOA_PRECISION, 5,
151 CHECK(status);
156 status = FastDtoa(max_double, FAST_DTOA_PRECISION, 7,
158 CHECK(status);
162 status = FastDtoa(4294967272.0, FAST_DTOA_PRECISION, 14,
164 if (status) {
171 status = FastDtoa(4.1855804968213567e298, FAST_DTOA_PRECISION, 17,
173 CHECK(status);
177 status = FastDtoa(5.5626846462680035e-309, FAST_DTOA_PRECISION, 1,
179 CHECK(status);
183 status = FastDtoa(2147483648.0, FAST_DTOA_PRECISION, 5,
185 CHECK(status);
189 status = FastDtoa(3.5844466002796428e+298, FAST_DTOA_PRECISION, 10,
191 CHECK(status);
199 status = FastDtoa(v, FAST_DTOA_PRECISION, 17, buffer, &length, &point);
200 CHECK(status);
206 status = FastDtoa(v, FAST_DTOA_PRECISION, 17, buffer, &length, &point);
207 CHECK(status);
214 status = FastDtoa(v, FAST_DTOA_PRECISION, 18, buffer, &length, &point);
215 CHECK(status);
220 status = FastDtoa(v, FAST_DTOA_PRECISION, 4, buffer, &length, &point);
221 CHECK(status);
230 bool status;
243 status = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, &length, &point);
245 if (!status) continue;
259 bool status;
276 status = FastDtoa(v, FAST_DTOA_PRECISION, number_digits,
279 if (!status) continue;