Home
last modified time | relevance | path

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

/PHP-8.1/Zend/
H A Dzend_operators.c3097 static zend_always_inline char *zend_print_u64_to_buf(char *buf, uint64_t num64) { argument
3099 return zend_print_ulong_to_buf(buf, num64);
3102 while (num64 > ZEND_ULONG_MAX) {
3103 *--buf = (char) (num64 % 10) + '0';
3104 num64 /= 10;
3107 zend_ulong num = (zend_ulong) num64;

Completed in 17 milliseconds