Home
last modified time | relevance | path

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

/PHP-8.2/Zend/
H A Dzend_operators.c3240 static zend_always_inline char *zend_print_u64_to_buf(char *buf, uint64_t num64) { argument
3242 return zend_print_ulong_to_buf(buf, num64);
3245 while (num64 > ZEND_ULONG_MAX) {
3246 *--buf = (char) (num64 % 10) + '0';
3247 num64 /= 10;
3250 zend_ulong num = (zend_ulong) num64;

Completed in 18 milliseconds