Searched refs:UNSIGNED_FLAG (Results 1 – 6 of 6) sorted by relevance
/PHP-5.3/ext/mysqlnd/ |
H A D | mysqlnd_enum_n_def.h | 264 #define UNSIGNED_FLAG 32 macro
|
H A D | mysqlnd_wireprotocol.c | 1234 …fields_metadata[i].flags & UNSIGNED_FLAG, fields_metadata[i].flags, fields_metadata[i].type == MYS… in php_mysqlnd_rowp_read_binary_protocol() 1409 zend_bool uns = fields_metadata[i].flags & UNSIGNED_FLAG? TRUE:FALSE; in php_mysqlnd_rowp_read_text_protocol()
|
H A D | mysqlnd_ps_codec.c | 65 if (field->flags & UNSIGNED_FLAG) { in ps_fetch_from_1_to_8_bytes()
|
/PHP-5.3/ext/mysqli/ |
H A D | mysqli_api.c | 348 bind[ofs].is_unsigned = (stmt->stmt->fields[ofs].flags & UNSIGNED_FLAG) ? 1 : 0; in mysqli_stmt_bind_result_do_bind() 362 bind[ofs].is_unsigned = (stmt->stmt->fields[ofs].flags & UNSIGNED_FLAG) ? 1 : 0; in mysqli_stmt_bind_result_do_bind() 892 && (stmt->stmt->fields[i].flags & UNSIGNED_FLAG)) 913 if (stmt->stmt->fields[i].flags & UNSIGNED_FLAG) { 928 my_bool uns= (stmt->stmt->fields[i].flags & UNSIGNED_FLAG)? 1:0; 959 …snprintf(tmp, sizeof(tmp), (stmt->stmt->fields[i].flags & UNSIGNED_FLAG)? MYSQLI_LLU_SPEC : MYSQLI…
|
H A D | mysqli.c | 716 REGISTER_LONG_CONSTANT("MYSQLI_UNSIGNED_FLAG", UNSIGNED_FLAG, CONST_CS | CONST_PERSISTENT); in PHP_MINIT_FUNCTION() 1176 …snprintf(tmp, sizeof(tmp), (mysql_fetch_field_direct(result, i)->flags & UNSIGNED_FLAG)? MYSQLI_LL… in php_mysqli_fetch_into_hash()
|
/PHP-5.3/ext/mysql/ |
H A D | php_mysql.c | 2392 add_property_long(return_value, "unsigned",(mysql_field->flags&UNSIGNED_FLAG?1:0)); 2501 #ifdef UNSIGNED_FLAG 2502 if (mysql_field->flags&UNSIGNED_FLAG) {
|
Completed in 35 milliseconds