Searched refs:uval (Results 1 – 2 of 2) sorted by relevance
66 uint64_t uval = 0; in ps_fetch_from_1_to_8_bytes() local69 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, MYSQLND_LLU_SPEC, 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, (long) uval); /* the cast is safe, we are in the range */ in ps_fetch_from_1_to_8_bytes()[all …]
861 unsigned int uval; local899 uval= *(unsigned int *) stmt->result.buf[i].val;901 if (uval > INT_MAX) {907 *p-- = (uval % 10) + 48;908 uval = uval / 10;
Completed in 12 milliseconds