Lines Matching refs:row

57 						   const zend_uchar ** row, unsigned int byte_count)  in ps_fetch_from_1_to_8_bytes()  argument
68 case 8:uval = is_bit? (uint64_t) bit_uint8korr(*row):(uint64_t) uint8korr(*row);break; in ps_fetch_from_1_to_8_bytes()
69 case 7:uval = bit_uint7korr(*row);break; in ps_fetch_from_1_to_8_bytes()
70 case 6:uval = bit_uint6korr(*row);break; in ps_fetch_from_1_to_8_bytes()
71 case 5:uval = bit_uint5korr(*row);break; in ps_fetch_from_1_to_8_bytes()
72 case 4:uval = is_bit? (uint64_t) bit_uint4korr(*row):(uint64_t) uint4korr(*row);break; in ps_fetch_from_1_to_8_bytes()
73 case 3:uval = is_bit? (uint64_t) bit_uint3korr(*row):(uint64_t) uint3korr(*row);break; in ps_fetch_from_1_to_8_bytes()
74 case 2:uval = is_bit? (uint64_t) bit_uint2korr(*row):(uint64_t) uint2korr(*row);break; in ps_fetch_from_1_to_8_bytes()
75 case 1:uval = (uint64_t) uint1korr(*row);break; in ps_fetch_from_1_to_8_bytes()
97 case 8:lval = (int64_t) sint8korr(*row);break; in ps_fetch_from_1_to_8_bytes()
102 case 4:lval = (int64_t) sint4korr(*row);break; in ps_fetch_from_1_to_8_bytes()
103 case 3:lval = (int64_t) sint3korr(*row);break; in ps_fetch_from_1_to_8_bytes()
104 case 2:lval = (int64_t) sint2korr(*row);break; in ps_fetch_from_1_to_8_bytes()
105 case 1:lval = (int64_t) *(int8_t*)*row;break; in ps_fetch_from_1_to_8_bytes()
122 (*row)+= byte_count; in ps_fetch_from_1_to_8_bytes()
130 …(zval *zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_null() argument
139 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_int8() argument
141 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 1); in ps_fetch_int8()
148 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_int16() argument
150 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 2); in ps_fetch_int16()
157 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_int32() argument
159 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 4); in ps_fetch_int32()
166 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_int64() argument
168 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 8); in ps_fetch_int64()
175 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_float() argument
180 float4get(fval, *row); in ps_fetch_float()
181 (*row)+= 4; in ps_fetch_float()
198 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_double() argument
202 float8get(value, *row); in ps_fetch_double()
204 (*row)+= 8; in ps_fetch_double()
213 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_time() argument
220 if ((length = php_mysqlnd_net_field_length(row))) { in ps_fetch_time()
221 const zend_uchar * to = *row; in ps_fetch_time()
238 (*row) += length; in ps_fetch_time()
256 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_date() argument
263 if ((length = php_mysqlnd_net_field_length(row))) { in ps_fetch_date()
264 const zend_uchar * to = *row; in ps_fetch_date()
275 (*row)+= length; in ps_fetch_date()
293 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_datetime() argument
300 if ((length = php_mysqlnd_net_field_length(row))) { in ps_fetch_datetime()
301 const zend_uchar * to = *row; in ps_fetch_datetime()
319 (*row)+= length; in ps_fetch_datetime()
337 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_string() argument
343 const zend_ulong length = php_mysqlnd_net_field_length(row); in ps_fetch_string()
347 ZVAL_STRINGL(zv, (char *)*row, length); in ps_fetch_string()
349 (*row) += length; in ps_fetch_string()
357 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_bit() argument
359 const zend_ulong length = php_mysqlnd_net_field_length(row); in ps_fetch_bit()
360 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, length); in ps_fetch_bit()