Home
last modified time | relevance | path

Searched refs:num64 (Results 1 – 1 of 1) sorted by relevance

/php-src/Zend/
H A Dzend_operators.c3434 static zend_always_inline char *zend_print_u64_to_buf(char *buf, uint64_t num64) { argument
3436 return zend_print_ulong_to_buf(buf, num64);
3439 while (num64 > ZEND_ULONG_MAX) {
3440 *--buf = (char) (num64 % 10) + '0';
3441 num64 /= 10;
3444 zend_ulong num = (zend_ulong) num64;

Completed in 11 milliseconds