Lines Matching refs:uval
66 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()
73 case 4:uval = is_bit? (uint64_t) bit_uint4korr(*row):(uint64_t) uint4korr(*row);break; in ps_fetch_from_1_to_8_bytes()
74 case 3:uval = is_bit? (uint64_t) bit_uint3korr(*row):(uint64_t) uint3korr(*row);break; in ps_fetch_from_1_to_8_bytes()
75 case 2:uval = is_bit? (uint64_t) bit_uint2korr(*row):(uint64_t) uint2korr(*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()
90 tmp_len = sprintf((char *)&tmp, MYSQLND_LLU_SPEC, uval); in ps_fetch_from_1_to_8_bytes()