Searched refs:nDigits (Results 1 – 9 of 9) sorted by relevance
329 int nDigits = e - 2; in str() local331 if (exp >= nDigits) in str()333 + zeros(exp - nDigits); in str()
244 int nDigits = 0, pointPos, exponent; in strToF() local260 nDigits++; in strToF()262 pointPos = nDigits; in strToF()267 nDigits++; in strToF()270 if (nDigits == 0) { in strToF()296 nDigits--; in strToF()299 } while (nDigits > 0); in strToF()
225 int nDigits = (codepoint < 0x1000 in appendNumericEntity() local230 for (int digit = nDigits; --digit >= 0;) { in appendNumericEntity()
393 uint32_t j, nDigits = sizeof(digits) / sizeof(digits[0]); in testAllTransformOptions() local411 for (j = 0; j < nDigits; j++) { in testAllTransformOptions()
3794 int nDigits = pos.getIndex() - oldPos; in parseInt() local3795 if (nDigits > maxDigits) { in parseInt()3797 nDigits -= maxDigits; in parseInt()3798 while (nDigits > 0) { in parseInt()3800 nDigits--; in parseInt()
3778 int nDigits = pos.getIndex() - oldPos; in parseInt() local3779 if (nDigits > maxDigits) { in parseInt()3781 nDigits -= maxDigits; in parseInt()3782 while (nDigits > 0) { in parseInt()3784 nDigits--; in parseInt()
3774 int32_t nDigits = pos.getIndex() - oldPos; in parseInt() local3775 if (nDigits > maxDigits) { in parseInt()3777 nDigits -= maxDigits; in parseInt()3778 while (nDigits > 0) { in parseInt()3780 nDigits--; in parseInt()
28864 int nDigits = 0;28897 z+=incr; nDigits++;28902 while( z<zEnd && sqlite3Isdigit(*z) ){ z+=incr; nDigits++; d++; }28915 z+=incr; nDigits++;29022 return z==zEnd && nDigits>0 && eValid && nonNum==0;