Lines Matching refs:row
57 unsigned int pack_len, zend_uchar **row, zend_bool as_unicode, 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()
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()
131 (*row)+= byte_count; in ps_fetch_from_1_to_8_bytes()
140 unsigned int pack_len, zend_uchar **row, in ps_fetch_null() argument
151 unsigned int pack_len, zend_uchar **row, in ps_fetch_int8() argument
154 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, as_unicode, 1 TSRMLS_CC); in ps_fetch_int8()
162 unsigned int pack_len, zend_uchar **row, in ps_fetch_int16() argument
165 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, as_unicode, 2 TSRMLS_CC); in ps_fetch_int16()
173 unsigned int pack_len, zend_uchar **row, in ps_fetch_int32() argument
176 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, as_unicode, 4 TSRMLS_CC); in ps_fetch_int32()
184 unsigned int pack_len, zend_uchar **row, in ps_fetch_int64() argument
187 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, as_unicode, 8 TSRMLS_CC); in ps_fetch_int64()
195 unsigned int pack_len, zend_uchar **row, in ps_fetch_float() argument
201 float4get(fval, *row); in ps_fetch_float()
202 (*row)+= 4; in ps_fetch_float()
253 unsigned int pack_len, zend_uchar **row, in ps_fetch_double() argument
258 float8get(value, *row); in ps_fetch_double()
260 (*row)+= 8; in ps_fetch_double()
270 unsigned int pack_len, zend_uchar **row, in ps_fetch_time() argument
278 if ((length = php_mysqlnd_net_field_length(row))) { in ps_fetch_time()
279 zend_uchar *to= *row; in ps_fetch_time()
296 (*row) += length; in ps_fetch_time()
323 unsigned int pack_len, zend_uchar **row, in ps_fetch_date() argument
331 if ((length = php_mysqlnd_net_field_length(row))) { in ps_fetch_date()
332 zend_uchar *to= *row; in ps_fetch_date()
343 (*row)+= length; in ps_fetch_date()
370 unsigned int pack_len, zend_uchar **row, in ps_fetch_datetime() argument
378 if ((length = php_mysqlnd_net_field_length(row))) { in ps_fetch_datetime()
379 zend_uchar *to= *row; in ps_fetch_datetime()
397 (*row)+= length; in ps_fetch_datetime()
424 unsigned int pack_len, zend_uchar **row, in ps_fetch_string() argument
431 unsigned long length = php_mysqlnd_net_field_length(row); in ps_fetch_string()
437 ZVAL_STRINGL(zv, (char *)*row, length, 1); in ps_fetch_string()
440 ZVAL_UTF8_STRINGL(zv, (char*)*row, length, ZSTR_DUPLICATE); in ps_fetch_string()
444 ZVAL_STRINGL(zv, (char *)*row, length, 1); in ps_fetch_string()
447 (*row) += length; in ps_fetch_string()
456 unsigned int pack_len, zend_uchar **row, in ps_fetch_bit() argument
459 unsigned long length= php_mysqlnd_net_field_length(row); in ps_fetch_bit()
460 ps_fetch_from_1_to_8_bytes(zv, field, pack_len, row, as_unicode, length TSRMLS_CC); in ps_fetch_bit()