Lines Matching refs:ids

191 	int		ids = 0;  in wstring_to_decimal()  local
242 pd->ds[ids++] = (char)current; in wstring_to_decimal()
271 pd->ds[ids++] = (char)current; in wstring_to_decimal()
378 if (ids + nzbp + 2 < DECIMAL_STRING_LENGTH) { in wstring_to_decimal()
380 pd->ds[ids++] = '0'; in wstring_to_decimal()
381 pd->ds[ids++] = (char)current; in wstring_to_decimal()
385 if (ids < DECIMAL_STRING_LENGTH) { in wstring_to_decimal()
386 pd->ds[ids] = '\0'; in wstring_to_decimal()
387 pd->ndigits = ids; in wstring_to_decimal()
389 ids = DECIMAL_STRING_LENGTH; in wstring_to_decimal()
401 nfastlimit = DECIMAL_STRING_LENGTH - 3 - ids; in wstring_to_decimal()
402 for (nfast = 0, pfast = &(pd->ds[ids]); in wstring_to_decimal()
408 ids += nfast; in wstring_to_decimal()
466 pd->ds[ids++] = (char)current; in wstring_to_decimal()
470 if (ids + nzbp + nzap + 2 < DECIMAL_STRING_LENGTH) { in wstring_to_decimal()
472 pd->ds[ids++] = '0'; in wstring_to_decimal()
473 pd->ds[ids++] = (char)current; in wstring_to_decimal()
478 if (ids < DECIMAL_STRING_LENGTH) { in wstring_to_decimal()
479 pd->ds[ids] = '\0'; in wstring_to_decimal()
480 pd->ndigits = ids; in wstring_to_decimal()
482 ids = DECIMAL_STRING_LENGTH; in wstring_to_decimal()
494 nfastlimit = DECIMAL_STRING_LENGTH - 3 - ids; in wstring_to_decimal()
495 for (nfast = 0, pfast = &(pd->ds[ids]); in wstring_to_decimal()
501 ids += nfast; in wstring_to_decimal()
592 if (ids < DECIMAL_STRING_LENGTH) { in wstring_to_decimal()
593 pd->ds[ids] = '\0'; in wstring_to_decimal()
594 pd->ndigits = ids; in wstring_to_decimal()