Home
last modified time | relevance | path

Searched defs:result (Results 1 – 25 of 174) sorted by relevance

1234567

/PHP-7.0/ext/standard/
H A Dbase64.c60 zend_string *result; in php_base64_encode() local
140 zend_string *result; in php_base64_decode_ex() local
182 ZSTR_VAL(result)[j] = ch << 2; in php_base64_decode_ex() local
185 ZSTR_VAL(result)[j++] |= ch >> 4; in php_base64_decode_ex() local
186 ZSTR_VAL(result)[j] = (ch & 0x0f) << 4; in php_base64_decode_ex() local
189 ZSTR_VAL(result)[j++] |= ch >>2; in php_base64_decode_ex() local
190 ZSTR_VAL(result)[j] = (ch & 0x03) << 6; in php_base64_decode_ex() local
193 ZSTR_VAL(result)[j++] |= ch; in php_base64_decode_ex() local
200 ZSTR_VAL(result)[ZSTR_LEN(result)] = '\0'; in php_base64_decode_ex() local
212 zend_string *result; in PHP_FUNCTION() local
[all …]
H A Dimage.c105 struct gfxinfo *result = NULL; in php_handle_gif() local
128 struct gfxinfo *result = NULL; in php_handle_psd() local
149 struct gfxinfo *result = NULL; in php_handle_bmp() local
184 unsigned long int result = 0; in php_swf_get_bits() local
200 struct gfxinfo *result = NULL; in php_handle_swc() local
278 struct gfxinfo *result = NULL; in php_handle_swf() local
304 struct gfxinfo *result = NULL; in php_handle_png() local
470 struct gfxinfo *result = NULL; in php_handle_jpeg() local
599 struct gfxinfo *result = NULL; in php_handle_jpc() local
878 struct gfxinfo * result; in php_handle_iff() local
[all …]
H A Dftp_fopen_wrapper.c113 int result; in php_stream_ftp_stream_close() local
140 int result, use_ssl, use_ssl_on_data = 0, tmp_len; in php_ftp_fopen_connect() local
328 int result, i; in php_fopen_do_pasv() local
425 int result = 0, use_ssl, use_ssl_on_data=0; in php_stream_url_wrap_ftp() local
694 int result = 0, use_ssl, use_ssl_on_data = 0; in php_stream_ftp_opendir() local
785 int result; in php_stream_ftp_url_stat() local
908 int result; in php_stream_ftp_unlink() local
958 int result; in php_stream_ftp_rename() local
1037 int result, recursive = options & PHP_STREAM_MKDIR_RECURSIVE; in php_stream_ftp_mkdir() local
1131 int result; in php_stream_ftp_rmdir() local
H A Dformatted_print.c394 zend_string *result; in php_formatted_print() local
654 ZSTR_VAL(result)[outpos]=0; in php_formatted_print() local
664 zend_string *result; in PHP_FUNCTION() local
677 zend_string *result; in PHP_FUNCTION() local
690 zend_string *result; in PHP_FUNCTION() local
706 zend_string *result; in PHP_FUNCTION() local
724 zend_string *result; in PHP_FUNCTION() local
753 zend_string *result; in PHP_FUNCTION() local
H A Dphp_random.h37 #define php_random_int_throw(min, max, result) \ argument
39 #define php_random_int_silent(min, max, result) \ argument
H A Drandom.c215 PHPAPI int php_random_int(zend_long min, zend_long max, zend_long *result, zend_bool should_throw) in php_random_int()
264 zend_long result; in PHP_FUNCTION() local
H A Dstring.c138 zend_string *result; in php_bin2hex() local
147 ZSTR_VAL(result)[j] = '\0'; in php_bin2hex() local
252 zend_string *result; in PHP_FUNCTION() local
273 zend_string *result, *data; in PHP_FUNCTION() local
749 int result = SUCCESS; in php_charmask() local
2281 zend_string *result; local
2393 zend_string *result; local
2925 smart_str result = {0}; local
3051 zend_string *result; local
4023 zval result; local
[all …]
/PHP-7.0/ext/odbc/
H A Dphp_odbc.c922 odbc_result *result; in php_odbc_fetch_attribs() local
1088 odbc_result *result; in odbc_column_lengths() local
1714 odbc_result *result; in php_odbc_fetch_hash() local
1866 odbc_result *result; in PHP_FUNCTION() local
1987 odbc_result *result; in PHP_FUNCTION() local
2022 odbc_result *result; in PHP_FUNCTION() local
2079 odbc_result *result; in PHP_FUNCTION() local
2267 odbc_result *result; in PHP_FUNCTION() local
2392 odbc_result *result; in PHP_FUNCTION() local
2774 odbc_result *result; in PHP_FUNCTION() local
[all …]
/PHP-7.0/Zend/
H A Dzend_compile.c114 zend_string *result; in zend_build_runtime_definition_key() local
755 void *result; in zend_hash_find_ptr_lc() local
1705 zend_string *result; in zend_ast_append_str() local
3468 znode name_node, result; in zend_compile_global_var() local
3491 znode var_node, result; in zend_compile_static_var_common() local
3909 znode result; in zend_compile_for() local
5247 zend_string *result; in zend_generate_anon_class_name() local
6917 zval result; in zend_compile_const_expr_class_const() local
6964 zval result, resolved_name; in zend_compile_const_expr_const() local
7182 znode result; in zend_compile_stmt() local
[all …]
H A Dzend_ini_parser.y53 static void zend_ini_do_op(char type, zval *result, zval *op1, zval *op2) in zend_ini_do_op()
97 static void zend_ini_init_string(zval *result) in zend_ini_init_string()
109 static void zend_ini_add_string(zval *result, zval *op1, zval *op2) in zend_ini_add_string()
137 static void zend_ini_get_constant(zval *result, zval *name) in zend_ini_get_constant()
166 static void zend_ini_get_var(zval *result, zval *name) in zend_ini_get_var()
H A Dzend_operators.c190 #define zendi_convert_scalar_to_number(op, holder, result) \ argument
879 ZEND_API int ZEND_FASTCALL add_function(zval *result, zval *op1, zval *op2) /* {{{ */ in add_function()
1309 ZEND_API int ZEND_FASTCALL boolean_not_function(zval *result, zval *op1) /* {{{ */ in boolean_not_function()
1334 ZEND_API int ZEND_FASTCALL bitwise_not_function(zval *result, zval *op1) /* {{{ */ in bitwise_not_function()
1357 Z_STRVAL_P(result)[i] = ~Z_STRVAL_P(op1)[i]; in bitwise_not_function() local
1359 Z_STRVAL_P(result)[i] = 0; in bitwise_not_function() local
1871 static void ZEND_FASTCALL convert_compare_result_to_long(zval *result) /* {{{ */ in convert_compare_result_to_long()
2073 zval result; in hash_zval_identical_function() local
2490 int result; in zend_object_is_true() local
2516 register unsigned char *result = (unsigned char*)dest; in zend_str_tolower_copy() local
[all …]
H A Dzend_operators.h285 int result = 0; in i_zend_is_true() local
511 static zend_always_inline void fast_long_add_function(zval *result, zval *op1, zval *op2) in fast_long_add_function()
578 static zend_always_inline int fast_add_function(zval *result, zval *op1, zval *op2) in fast_add_function()
600 static zend_always_inline void fast_long_sub_function(zval *result, zval *op1, zval *op2) in fast_long_sub_function()
669 static zend_always_inline int fast_div_function(zval *result, zval *op1, zval *op2) in fast_div_function()
676 zval result; in fast_equal_check_function() local
710 zval result; in fast_equal_check_long() local
720 zval result; in fast_equal_check_string() local
810 char *result = zend_print_ulong_to_buf(buf, ~((zend_ulong) num) + 1); in zend_print_long_to_buf() local
H A Dzend_vm_def.h323 int result; variable
341 int result; variable
363 int result; variable
431 int result; variable
499 int result; variable
549 int result; variable
4878 int result; variable
6433 int result; variable
6534 int result; variable
6671 int result; variable
[all …]
H A Dzend_vm_execute.h4324 int result; local
4635 int result; local
4653 int result; local
6277 int result; local
6377 int result; local
6514 int result; local
6737 int result; local
6755 int result; local
6914 int result; local
6932 int result; local
[all …]
/PHP-7.0/ext/bcmath/
H A Dbcmath.c231 bc_num first, second, result; in PHP_FUNCTION() local
270 bc_num first, second, result; in PHP_FUNCTION() local
308 bc_num first, second, result; in PHP_FUNCTION() local
346 bc_num first, second, result; in PHP_FUNCTION() local
389 bc_num first, second, result; in PHP_FUNCTION() local
423 bc_num first, second, mod, result; in PHP_FUNCTION() local
466 bc_num first, second, result; in PHP_FUNCTION() local
504 bc_num result; in PHP_FUNCTION() local
/PHP-7.0/ext/intl/locale/
H A Dlocale_methods.c126 char* result = NULL; in getPreferredTag() local
150 int result =-1; in getStrrtokenPos() local
180 int result =-1; in getSingletonPos() local
393 int result = 0; in get_icu_value_src_php() local
922 int result = 0; in PHP_FUNCTION() local
1003 zend_string* result =NULL; in get_private_subtags() local
1053 int result = 0; in add_array_entry() local
1162 int result = 0; in PHP_FUNCTION() local
1219 int result = 0; in strToMatch() local
1259 int result = 0; in PHP_FUNCTION() local
[all …]
/PHP-7.0/ext/mysqlnd/
H A Dmysqlnd_ext_plugin.c60 PHPAPI void ** _mysqlnd_plugin_get_plugin_result_data(const MYSQLND_RES * result, unsigned int plug… in _mysqlnd_plugin_get_plugin_result_data()
73 …void ** _mysqlnd_plugin_get_plugin_result_unbuffered_data(const MYSQLND_RES_UNBUFFERED * result, u… in _mysqlnd_plugin_get_plugin_result_unbuffered_data()
86 …** _mysqlnd_plugin_get_plugin_result_buffered_data_zval(const MYSQLND_RES_BUFFERED_ZVAL * result, … in _mysqlnd_plugin_get_plugin_result_buffered_data_zval()
98 …void ** _mysqlnd_plugin_get_plugin_result_buffered_data_c(const MYSQLND_RES_BUFFERED_C * result, u… in _mysqlnd_plugin_get_plugin_result_buffered_data_c()
H A Dmysqlnd_ps.c52 MYSQLND_RES * result; in MYSQLND_METHOD() local
148 MYSQLND_RES *result; in MYSQLND_METHOD() local
439 …MYSQLND_RES * result = stmt->conn->m->result_init(stmt_to_prepare->field_count, stmt_to_prepare->p… in MYSQLND_METHOD() local
670 zval *result = &stmt->result_bind[i].zv; in MYSQLND_METHOD() local
802 zval *result = &stmt->result_bind[i].zv; in mysqlnd_stmt_fetch_row_buffered() local
909 zval *result = &stmt->result_bind[i].zv; in mysqlnd_stmt_fetch_row_unbuffered() local
983 MYSQLND_RES * result; in MYSQLND_METHOD() local
1025 mysqlnd_fetch_stmt_row_cursor(MYSQLND_RES * result, void * param, unsigned int flags, zend_bool * f… in mysqlnd_fetch_stmt_row_cursor()
1095 zval *result = &stmt->result_bind[i].zv; in mysqlnd_fetch_stmt_row_cursor() local
1213 zval *result = &stmt->result_bind[i].zv; in MYSQLND_METHOD() local
[all …]
H A Dmysqlnd.h103 #define mysqlnd_fetch_row_c(result) (result)->m.fetch_row_c((result)) argument
113 #define mysqlnd_unbuffered_skip_result(result) (result)->m.skip_result((result)) argument
123 #define mysqlnd_data_seek(result, row) (result)->m.seek_data((result), (row)) argument
146 #define mysqlnd_num_rows(result) (result)->m.num_rows((result)) argument
147 #define mysqlnd_num_fields(result) (result)->m.num_fields((result)) argument
149 #define mysqlnd_fetch_lengths(result) (result)->m.fetch_lengths((result)) argument
151 #define mysqlnd_field_seek(result, ofs) (result)->m.seek_field((result), (ofs)) argument
152 #define mysqlnd_field_tell(result) (result)->m.field_tell((result)) argument
153 #define mysqlnd_fetch_field(result) (result)->m.fetch_field((result)) argument
154 #define mysqlnd_fetch_field_direct(result,fnr) (result)->m.fetch_field_direct((result), (fnr)) argument
[all …]
/PHP-7.0/ext/mysqli/
H A Dmysqli_result_iterator.c40 mysqli_object *result; member
101 MYSQL_RES *result; in php_mysqli_result_iterator_move_forward() local
118 MYSQL_RES *result; local
/PHP-7.0/ext/gd/libgd/
H A Dgd_io.c76 int gdGetByte (int *result, gdIOCtx * ctx) in gdGetByte()
85 int gdGetWord (int *result, gdIOCtx * ctx) in gdGetWord()
98 int gdGetInt (int *result, gdIOCtx * ctx) in gdGetInt()
/PHP-7.0/ext/intl/calendar/
H A Dcalendar_methods.cpp243 int32_t result = (co->ucal->*func)( in _php_intlcal_field_uec_ret_in32t_method() local
269 UDate result = co->ucal->getTime(CALENDAR_ERROR_CODE(co)); in PHP_FUNCTION() local
574 int32_t result = co->ucal->fieldDifference((UDate)when, in PHP_FUNCTION() local
615 int32_t result = co->ucal->getDayOfWeekType( in PHP_FUNCTION() local
637 int32_t result = co->ucal->getFirstDayOfWeek(CALENDAR_ERROR_CODE(co)); in PHP_FUNCTION() local
670 int32_t result = (co->ucal->*func)((UCalendarDateFields)field); in _php_intlcal_field_ret_in32t_method() local
735 uint8_t result = co->ucal->getMinimalDaysInFirstWeek(); in PHP_FUNCTION() local
1022 UBool result = co->ucal->equals(*other_co->ucal, CALENDAR_ERROR_CODE(co)); in PHP_FUNCTION() local
/PHP-7.0/ext/intl/dateformat/
H A Ddateformat_format.c66 int32_t result = 0; in internal_get_arr_ele() local
110 UDate result; in internal_get_timestamp() local
/PHP-7.0/ext/dba/
H A Ddba_inifile.c143 char *result = inifile_key_string(&dba->curr.key); in DBA_FIRSTKEY_FUNC() local
160 char *result = inifile_key_string(&dba->curr.key); in DBA_NEXTKEY_FUNC() local
/PHP-7.0/ext/intl/collator/
H A Dcollator_sort.c53 static int collator_regular_compare_function(zval *result, zval *op1, zval *op2) in collator_regular_compare_function()
149 static int collator_numeric_compare_function(zval *result, zval *op1, zval *op2) in collator_numeric_compare_function()
181 static int collator_icu_compare_function(zval *result, zval *op1, zval *op2) in collator_icu_compare_function()
215 zval result; in collator_compare_func() local

Completed in 217 milliseconds

1234567