Searched refs:num64 (Results 1 – 1 of 1) sorted by relevance
3434 static zend_always_inline char *zend_print_u64_to_buf(char *buf, uint64_t num64) { argument3436 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 18 milliseconds