Lines Matching refs:row

58 						   const zend_uchar ** row, unsigned int byte_count)  in ps_fetch_from_1_to_8_bytes()  argument
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()
98 case 8:lval = (int64_t) sint8korr(*row);break; in ps_fetch_from_1_to_8_bytes()
103 case 4:lval = (int64_t) sint4korr(*row);break; in ps_fetch_from_1_to_8_bytes()
104 case 3:lval = (int64_t) sint3korr(*row);break; in ps_fetch_from_1_to_8_bytes()
105 case 2:lval = (int64_t) sint2korr(*row);break; in ps_fetch_from_1_to_8_bytes()
106 case 1:lval = (int64_t) *(int8_t*)*row;break; in ps_fetch_from_1_to_8_bytes()
123 (*row)+= byte_count; in ps_fetch_from_1_to_8_bytes()
131 …(zval *zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_null() argument
140 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_int8() argument
142 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 1); in ps_fetch_int8()
149 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_int16() argument
151 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 2); in ps_fetch_int16()
158 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_int32() argument
160 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 4); in ps_fetch_int32()
167 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_int64() argument
169 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, 8); in ps_fetch_int64()
176 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_float() argument
181 float4get(fval, *row); in ps_fetch_float()
182 (*row)+= 4; in ps_fetch_float()
199 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_double() argument
203 float8get(value, *row); in ps_fetch_double()
205 (*row)+= 8; in ps_fetch_double()
214 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_time() argument
221 if ((length = php_mysqlnd_net_field_length(row))) { in ps_fetch_time()
222 const zend_uchar * to = *row; in ps_fetch_time()
239 (*row) += length; in ps_fetch_time()
271 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_date() argument
278 if ((length = php_mysqlnd_net_field_length(row))) { in ps_fetch_date()
279 const zend_uchar * to = *row; in ps_fetch_date()
290 (*row)+= length; in ps_fetch_date()
308 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_datetime() argument
315 if ((length = php_mysqlnd_net_field_length(row))) { in ps_fetch_datetime()
316 const zend_uchar * to = *row; in ps_fetch_datetime()
334 (*row)+= length; in ps_fetch_datetime()
368 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_string() argument
374 const zend_ulong length = php_mysqlnd_net_field_length(row); in ps_fetch_string()
378 ZVAL_STRINGL(zv, (char *)*row, length); in ps_fetch_string()
380 (*row) += length; in ps_fetch_string()
388 …zval * zv, const MYSQLND_FIELD * const field, const unsigned int pack_len, const zend_uchar ** row) in ps_fetch_bit() argument
390 const zend_ulong length = php_mysqlnd_net_field_length(row); in ps_fetch_bit()
391 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, length); in ps_fetch_bit()