Home
last modified time | relevance | path

Searched refs:IS_NULL (Results 1 – 25 of 93) sorted by relevance

1234

/PHP-8.3/ext/pdo_sqlite/
H A Dsqlite_statement.c112 if (Z_TYPE_P(parameter) == IS_NULL) { in pdo_sqlite_stmt_param_hook()
148 } else if (Z_TYPE_P(parameter) == IS_NULL) { in pdo_sqlite_stmt_param_hook()
175 if (Z_TYPE_P(parameter) == IS_NULL) { in pdo_sqlite_stmt_param_hook()
/PHP-8.3/Zend/
H A Dzend_type_info.h25 #define MAY_BE_NULL (1 << IS_NULL)
H A Dzend_operators.c260 case IS_NULL: in convert_scalar_to_number()
295 case IS_NULL: in _zendi_convert_scalar_to_number_silent()
328 case IS_NULL: in _zendi_try_convert_scalar_to_number()
382 case IS_NULL: in zendi_try_get_long()
546 case IS_NULL: in convert_to_long()
603 case IS_NULL: in convert_to_double()
672 case IS_NULL: in convert_to_boolean()
733 case IS_NULL: in _convert_to_string()
839 case IS_NULL: in convert_to_array()
877 case IS_NULL: in convert_to_object()
[all …]
H A Dzend_variables.c41 [IS_NULL] = (zend_rc_dtor_func_t)zend_empty_destroy,
H A Dzend_API.h1056 #define ZVAL_IS_NULL(z) (Z_TYPE_P(z) == IS_NULL)
2176 } else if (check_null && Z_TYPE_P(arg) == IS_NULL) { in zend_parse_arg_bool()
2192 } else if (check_null && Z_TYPE_P(arg) == IS_NULL) { in zend_parse_arg_long()
2208 } else if (check_null && Z_TYPE_P(arg) == IS_NULL) { in zend_parse_arg_double()
2221 } else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) { in zend_parse_arg_number()
2233 } else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) { in zend_parse_arg_number_or_str()
2245 } else if (check_null && Z_TYPE_P(arg) == IS_NULL) { in zend_parse_arg_str()
2303 if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) { in zend_parse_arg_iterable()
2316 } else if (check_null && EXPECTED(Z_TYPE_P(arg) == IS_NULL)) { in zend_parse_arg_array()
2433 if (check_null && UNEXPECTED(Z_TYPE_P(arg) == IS_NULL)) { in zend_parse_arg_func()
[all …]
H A Dzend_objects_API.c169 if (UNEXPECTED(GC_TYPE(object) == IS_NULL)) { in zend_objects_store_del()
H A Dzend_execute.c1664 case IS_NULL: in zend_check_string_offset()
2345 return IS_NULL; in slow_index_convert()
2348 return IS_NULL; in slow_index_convert()
2352 case IS_NULL: in slow_index_convert()
2382 return IS_NULL; in slow_index_convert()
2385 return IS_NULL; in slow_index_convert()
2397 return IS_NULL; in slow_index_convert()
2415 return IS_NULL; in slow_index_convert_w()
2422 case IS_NULL: in slow_index_convert_w()
2471 return IS_NULL; in slow_index_convert_w()
[all …]
H A Dzend_smart_str.c198 case IS_NULL: in smart_str_append_scalar()
H A Dzend_types.h600 #define IS_NULL 1 macro
782 #define GC_NULL (IS_NULL | (GC_NOT_COLLECTABLE << GC_FLAGS_SHIFT))
955 #define Z_ISNULL(zval) (Z_TYPE(zval) == IS_NULL)
1046 Z_TYPE_INFO_P(z) = IS_NULL; \
1297 if (type != IS_OBJECT && type != IS_NULL) { \
H A Dzend_objects.c60 && EXPECTED(GC_TYPE(object->properties) != IS_NULL)) { in zend_object_std_dtor()
/PHP-8.3/Zend/Optimizer/
H A Dsccp.c361 case IS_NULL: in fetch_array_elem()
449 case IS_NULL: in ct_eval_del_array_elem()
490 case IS_NULL: in ct_eval_add_array_elem()
552 case IS_NULL: in ct_eval_assign_dim()
655 case IS_NULL: in ct_eval_assign_obj()
684 if (Z_TYPE_P(op1) == IS_NULL) { in ct_eval_incdec()
926 || Z_TYPE_P(op1) == IS_NULL in sccp_visit_instr()
1018 || Z_TYPE_P(op1) == IS_NULL in sccp_visit_instr()
1190 if (Z_TYPE_P(result) == IS_NULL) { in sccp_visit_instr()
1838 s = (Z_TYPE_P(op1) == IS_NULL); in sccp_mark_feasible_successors()
[all …]
/PHP-8.3/ext/standard/
H A Dtype.c50 case IS_NULL: in PHP_FUNCTION()
266 php_is_type(INTERNAL_FUNCTION_PARAM_PASSTHRU, IS_NULL); in PHP_FUNCTION()
H A Dhttp.c199 } else if (Z_TYPE_P(zdata) == IS_NULL || Z_TYPE_P(zdata) == IS_RESOURCE) { in php_url_encode_hash_ex()
H A Dassert.c324 if (Z_TYPE_P(value) == IS_NULL) { in PHP_FUNCTION()
H A Dvar.c111 case IS_NULL: in php_var_dump()
299 case IS_NULL: in php_debug_zval_dump()
502 case IS_NULL: in php_var_export_ex()
1026 case IS_NULL: in php_var_serialize_intern()
/PHP-8.3/ext/intl/dateformat/
H A Ddateformat_format_object.cpp89 if (format == NULL || Z_TYPE_P(format) == IS_NULL) { in PHP_FUNCTION()
H A Ddateformat_create.cpp127 explicit_tz = timezone_zv != NULL && Z_TYPE_P(timezone_zv) != IS_NULL; in datefmt_ctor()
/PHP-8.3/ext/pgsql/
H A Dpgsql.c4635 case IS_NULL: in php_pgsql_convert()
4679 case IS_NULL: in php_pgsql_convert()
4728 case IS_NULL: in php_pgsql_convert()
4789 case IS_NULL: in php_pgsql_convert()
4831 case IS_NULL: in php_pgsql_convert()
4869 case IS_NULL: in php_pgsql_convert()
4907 case IS_NULL: in php_pgsql_convert()
4939 case IS_NULL: in php_pgsql_convert()
4971 case IS_NULL: in php_pgsql_convert()
5336 case IS_NULL: in php_pgsql_insert()
[all …]
/PHP-8.3/ext/pdo_firebird/
H A Dfirebird_statement.c644 if (Z_TYPE_P(parameter) == IS_NULL) { in firebird_stmt_param_hook()
704 case IS_NULL: in firebird_stmt_param_hook()
756 case IS_NULL: in firebird_stmt_param_hook()
/PHP-8.3/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c363 mysqlnd_ps_fetch_functions[MYSQL_TYPE_NULL].php_type = IS_NULL; in _mysqlnd_init_ps_fetch_subsystem()
645 if ((stmt->param_bind[i].type != MYSQL_TYPE_LONG_BLOB && Z_TYPE_P(the_var) == IS_NULL)) { in mysqlnd_stmt_execute_calculate_param_values_size()
737 if (!Z_ISUNDEF_P(parameter) && Z_TYPE_P(data) == IS_NULL) { in mysqlnd_stmt_execute_store_param_values()
/PHP-8.3/ext/intl/calendar/
H A Dgregoriancalendar_methods.cpp102 variant > 0 && Z_TYPE(args[variant - 1]) == IS_NULL; in _php_intlgregcal_constructor_body()
/PHP-8.3/ext/soap/
H A Dphp_encoding.c133 if (!zval || Z_TYPE_P(zval) == IS_NULL) { \
1634 Z_TYPE_P(data) == IS_NULL && in model_to_xml_object()
1650 if (Z_TYPE_P(val) == IS_NULL && model->u.element->nillable) { in model_to_xml_object()
1670 if (Z_TYPE_P(data) == IS_NULL && model->u.element->nillable) { in model_to_xml_object()
1820 if (!data || Z_TYPE_P(data) == IS_NULL) { in to_xml_object()
1907 if (Z_TYPE_P(val) == IS_NULL && array_el->nillable) { in to_xml_object()
2015 enc = get_conversion(IS_NULL); in guess_array_map()
2218 if (!data || Z_TYPE_P(data) == IS_NULL) { in to_xml_array()
2783 enc = get_conversion(IS_NULL); in guess_xml_convert()
2803 enc = get_conversion(IS_NULL); in guess_zval_convert()
[all …]
/PHP-8.3/ext/intl/timezone/
H A Dtimezone_class.cpp138 if (zv_timezone == NULL || Z_TYPE_P(zv_timezone) == IS_NULL) { in timezone_process_timezone_argument()
/PHP-8.3/ext/pdo/
H A Dpdo_stmt.c516 if (type_override && Z_TYPE_P(dest) != IS_NULL) { in fetch_value()
561 if (Z_TYPE_P(dest) == IS_NULL && stmt->dbh->oracle_nulls == PDO_NULL_TO_STRING) { in fetch_value()
821 if (Z_TYPE(val) != IS_NULL) { in do_fetch()
1808 if (Z_TYPE(args[1]) != IS_NULL && Z_TYPE(args[1]) != IS_ARRAY) { in pdo_stmt_setup_fetch_mode()
2371 int res = check_empty ? i_zend_is_true(retval) : Z_TYPE(tmp_val) != IS_NULL; in row_prop_exists()
2394 int res = check_empty ? i_zend_is_true(retval) : Z_TYPE(tmp_val) != IS_NULL; in row_dim_exists()
/PHP-8.3/ext/opcache/jit/
H A Dzend_jit_helpers.c413 case IS_NULL: in zend_jit_fetch_dim_r_helper()
555 case IS_NULL: in zend_jit_fetch_dim_is_helper()
683 case IS_NULL: in zend_jit_fetch_dim_isset_helper()
742 return Z_TYPE_P(retval) > IS_NULL; in zend_jit_fetch_dim_isset_helper()
749 return (Z_TYPE_P(retval) > IS_NULL); in zend_jit_fetch_dim_isset_helper()
791 case IS_NULL: in zend_jit_fetch_dim_rw_helper()
924 case IS_NULL: in zend_jit_fetch_dim_w_helper()
1047 case IS_NULL: in zend_check_string_offset()
1126 case IS_NULL: in zend_jit_fetch_dim_str_is_helper()

Completed in 425 milliseconds

1234