Lines Matching refs:tmpbuf
1016 zend_string *tmpbuf; in _php_math_number_format_ex() local
1031 tmpbuf = strpprintf(0, "%.*F", dec, d); in _php_math_number_format_ex()
1032 if (tmpbuf == NULL) { in _php_math_number_format_ex()
1034 } else if (!isdigit((int)ZSTR_VAL(tmpbuf)[0])) { in _php_math_number_format_ex()
1035 return tmpbuf; in _php_math_number_format_ex()
1045 dp = strpbrk(ZSTR_VAL(tmpbuf), ".,"); in _php_math_number_format_ex()
1052 integral = (dp - ZSTR_VAL(tmpbuf)); in _php_math_number_format_ex()
1055 integral = ZSTR_LEN(tmpbuf); in _php_math_number_format_ex()
1079 s = ZSTR_VAL(tmpbuf) + ZSTR_LEN(tmpbuf) - 1; in _php_math_number_format_ex()
1112 while (s >= ZSTR_VAL(tmpbuf)) { in _php_math_number_format_ex()
1114 if (thousand_sep && (++count%3)==0 && s >= ZSTR_VAL(tmpbuf)) { in _php_math_number_format_ex()
1126 zend_string_release_ex(tmpbuf, 0); in _php_math_number_format_ex()