Lines Matching refs:current

191 	wchar_t		current; /* always equal to *cp */
207 * condition (current == decpt) will correctly detect it.
221 current = *cp;
222 while (iswspace((wint_t)current))
223 current = *++cp;
226 if (current == L'+') {
227 current = *++cp;
228 } else if (current == L'-') {
230 current = *++cp;
239 if (L'1' <= current && current <= L'9') {
244 pd->ds[ids++] = (char)current;
245 current = *++cp;
247 switch (current) {
259 current = *++cp;
260 if (current == L'X' || current == L'x') {
264 current = *++cp;
269 if (NZDIGIT(current)) {
273 pd->ds[ids++] = (char)current;
274 current = *++cp;
276 } else if (current == (wchar_t)decpt) {
277 current = *++cp;
279 } else if (current != L'0') {
293 while (current == L'0')
294 current = *++cp;
302 current = *++cp;
305 UCASE(current) == (wchar_t)infstring[agree]) {
306 current = *++cp;
321 current = *++cp;
324 UCASE(current) == (wchar_t)nanstring[agree]) {
325 current = *++cp;
334 if (current == L'(') {
338 current = *++cp;
339 } while (iswalnum(current) ||
340 current == L'_');
343 current = *++cp;
344 } while (current &&
345 current != L')');
347 if (current == L')')
354 if (current == (wchar_t)decpt) {
359 current = *++cp;
373 if (NZDIGIT(current)) {
383 pd->ds[ids++] = (char)current;
397 current = *++cp;
405 nfast < nfastlimit && NZDIGIT(current);
407 *pfast++ = (char)current;
408 current = *++cp;
411 if (current == L'0')
417 switch (current) {
425 while (current == L'0') {
427 current = *++cp;
445 if (current == decpt) {
448 current = *++cp;
461 if (NZDIGIT(current)) {
468 pd->ds[ids++] = (char)current;
475 pd->ds[ids++] = (char)current;
490 current = *++cp;
498 nfast < nfastlimit && NZDIGIT(current);
500 *pfast++ = (char)current;
501 current = *++cp;
505 if (current == L'0')
511 switch (current) {
526 while (current == L'0') {
528 current = *++cp;
557 current = *++cp;
558 if (current == L'+') {
559 current = *++cp;
560 } else if (current == L'-') {
562 current = *++cp;
573 while (L'0' <= current && current <= L'9') {
576 e = 10 * e + current - L'0';
577 current = *++cp;