Home
last modified time | relevance | path

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

/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c64 uint64_t uval = 0; in ps_fetch_from_1_to_8_bytes() local
67 case 8:uval = is_bit? (uint64_t) bit_uint8korr(*row):(uint64_t) uint8korr(*row);break; in ps_fetch_from_1_to_8_bytes()
68 case 7:uval = bit_uint7korr(*row);break; in ps_fetch_from_1_to_8_bytes()
69 case 6:uval = bit_uint6korr(*row);break; in ps_fetch_from_1_to_8_bytes()
70 case 5:uval = bit_uint5korr(*row);break; in ps_fetch_from_1_to_8_bytes()
74 case 1:uval = (uint64_t) uint1korr(*row);break; in ps_fetch_from_1_to_8_bytes()
78 if (uval > INT_MAX) { in ps_fetch_from_1_to_8_bytes()
80 tmp_len = sprintf((char *)&tmp, "%" PRIu64, uval); in ps_fetch_from_1_to_8_bytes()
84 if (byte_count < 8 || uval <= L64(9223372036854775807)) { in ps_fetch_from_1_to_8_bytes()
85 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-8.0/ext/mysqli/
H A Dmysqli_api.c936 unsigned int uval = *(unsigned int *) stmt->result.buf[i].val; local
937 if (uval > INT_MAX) {
943 *p-- = (uval % 10) + 48;
944 uval = uval / 10;

Completed in 16 milliseconds