Lines Matching refs:tmpbuf
1107 zend_string *tmpbuf; in _php_math_number_format_ex() local
1122 tmpbuf = strpprintf(0, "%.*F", dec, d); in _php_math_number_format_ex()
1123 if (tmpbuf == NULL) { in _php_math_number_format_ex()
1125 } else if (!isdigit((int)ZSTR_VAL(tmpbuf)[0])) { in _php_math_number_format_ex()
1126 return tmpbuf; in _php_math_number_format_ex()
1136 dp = strpbrk(ZSTR_VAL(tmpbuf), ".,"); in _php_math_number_format_ex()
1143 integral = (dp - ZSTR_VAL(tmpbuf)); in _php_math_number_format_ex()
1146 integral = ZSTR_LEN(tmpbuf); in _php_math_number_format_ex()
1170 s = ZSTR_VAL(tmpbuf) + ZSTR_LEN(tmpbuf) - 1; in _php_math_number_format_ex()
1203 while (s >= ZSTR_VAL(tmpbuf)) { in _php_math_number_format_ex()
1205 if (thousand_sep && (++count%3)==0 && s >= ZSTR_VAL(tmpbuf)) { in _php_math_number_format_ex()
1217 zend_string_release_ex(tmpbuf, 0); in _php_math_number_format_ex()
1241 zend_string *tmpbuf; in _php_math_number_format_long() local
1280 tmpbuf = strpprintf(0, ZEND_ULONG_FMT, tmpnum); in _php_math_number_format_long()
1281 reslen = ZSTR_LEN(tmpbuf); in _php_math_number_format_long()
1300 s = ZSTR_VAL(tmpbuf) + ZSTR_LEN(tmpbuf) - 1; in _php_math_number_format_long()
1322 while (s >= ZSTR_VAL(tmpbuf)) { in _php_math_number_format_long()
1324 if (thousand_sep && (++count % 3) == 0 && s >= ZSTR_VAL(tmpbuf)) { in _php_math_number_format_long()
1335 zend_string_release_ex(tmpbuf, 0); in _php_math_number_format_long()