Lines Matching refs:tmpbuf
1020 zend_string *tmpbuf; in _php_math_number_format_ex() local
1035 tmpbuf = strpprintf(0, "%.*F", dec, d); in _php_math_number_format_ex()
1036 if (tmpbuf == NULL) { in _php_math_number_format_ex()
1038 } else if (!isdigit((int)ZSTR_VAL(tmpbuf)[0])) { in _php_math_number_format_ex()
1039 return tmpbuf; in _php_math_number_format_ex()
1049 dp = strpbrk(ZSTR_VAL(tmpbuf), ".,"); in _php_math_number_format_ex()
1056 integral = (dp - ZSTR_VAL(tmpbuf)); in _php_math_number_format_ex()
1059 integral = ZSTR_LEN(tmpbuf); in _php_math_number_format_ex()
1083 s = ZSTR_VAL(tmpbuf) + ZSTR_LEN(tmpbuf) - 1; in _php_math_number_format_ex()
1116 while (s >= ZSTR_VAL(tmpbuf)) { in _php_math_number_format_ex()
1118 if (thousand_sep && (++count%3)==0 && s >= ZSTR_VAL(tmpbuf)) { in _php_math_number_format_ex()
1130 zend_string_release_ex(tmpbuf, 0); in _php_math_number_format_ex()