Home
last modified time | relevance | path

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

/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c66 uint64_t uval = 0; in ps_fetch_from_1_to_8_bytes() local
69 case 8:uval = is_bit? (uint64_t) bit_uint8korr(*row):(uint64_t) uint8korr(*row);break; in ps_fetch_from_1_to_8_bytes()
70 case 7:uval = bit_uint7korr(*row);break; in ps_fetch_from_1_to_8_bytes()
71 case 6:uval = bit_uint6korr(*row);break; in ps_fetch_from_1_to_8_bytes()
72 case 5:uval = bit_uint5korr(*row);break; in ps_fetch_from_1_to_8_bytes()
76 case 1:uval = (uint64_t) uint1korr(*row);break; in ps_fetch_from_1_to_8_bytes()
80 if (uval > INT_MAX) { in ps_fetch_from_1_to_8_bytes()
82 tmp_len = sprintf((char *)&tmp, "%" PRIu64, uval); in ps_fetch_from_1_to_8_bytes()
86 if (byte_count < 8 || uval <= L64(9223372036854775807)) { in ps_fetch_from_1_to_8_bytes()
87 ZVAL_LONG(zv, (zend_long) uval); /* the cast is safe, we are in the range */ in ps_fetch_from_1_to_8_bytes()
[all …]
/PHP-7.4/ext/mysqli/
H A Dmysqli_api.c950 unsigned int uval; local
987 uval= *(unsigned int *) stmt->result.buf[i].val;
989 if (uval > INT_MAX) {
995 *p-- = (uval % 10) + 48;
996 uval = uval / 10;

Completed in 22 milliseconds