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