Home
last modified time | relevance | path

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

/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c67 uint64_t uval = 0; in ps_fetch_from_1_to_8_bytes() local
70 case 8:uval = is_bit? (uint64_t) bit_uint8korr(*row):(uint64_t) uint8korr(*row);break; in ps_fetch_from_1_to_8_bytes()
71 case 7:uval = bit_uint7korr(*row);break; in ps_fetch_from_1_to_8_bytes()
72 case 6:uval = bit_uint6korr(*row);break; in ps_fetch_from_1_to_8_bytes()
73 case 5:uval = bit_uint5korr(*row);break; in ps_fetch_from_1_to_8_bytes()
77 case 1:uval = (uint64_t) uint1korr(*row);break; in ps_fetch_from_1_to_8_bytes()
81 if (uval > INT_MAX) { in ps_fetch_from_1_to_8_bytes()
83 tmp_len = sprintf((char *)&tmp, MYSQLND_LLU_SPEC, uval); in ps_fetch_from_1_to_8_bytes()
87 if (byte_count < 8 || uval <= L64(9223372036854775807)) { in ps_fetch_from_1_to_8_bytes()
88 ZVAL_LONG(zv, (long) uval); /* the cast is safe, we are in the range */ in ps_fetch_from_1_to_8_bytes()
[all …]
/PHP-5.5/ext/mysqli/
H A Dmysqli_api.c996 unsigned int uval; local
1034 uval= *(unsigned int *) stmt->result.buf[i].val;
1036 if (uval > INT_MAX) {
1042 *p-- = (uval % 10) + 48;
1043 uval = uval / 10;

Completed in 31 milliseconds