Home
last modified time | relevance | path

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

12345678

/PHP-7.2/ext/standard/
H A Dbase64.c60 zend_string *result; in php_base64_encode() local
134 zend_string *result; in php_base64_decode_ex() local
165 ZSTR_VAL(result)[j] = ch << 2; in php_base64_decode_ex() local
168 ZSTR_VAL(result)[j++] |= ch >> 4; in php_base64_decode_ex() local
169 ZSTR_VAL(result)[j] = (ch & 0x0f) << 4; in php_base64_decode_ex() local
172 ZSTR_VAL(result)[j++] |= ch >>2; in php_base64_decode_ex() local
173 ZSTR_VAL(result)[j] = (ch & 0x03) << 6; in php_base64_decode_ex() local
176 ZSTR_VAL(result)[j++] |= ch; in php_base64_decode_ex() local
192 ZSTR_VAL(result)[ZSTR_LEN(result)] = '\0'; in php_base64_decode_ex() local
208 zend_string *result; in PHP_FUNCTION() local
[all …]
H A Dimage.c108 struct gfxinfo *result = NULL; in php_handle_gif() local
131 struct gfxinfo *result = NULL; in php_handle_psd() local
152 struct gfxinfo *result = NULL; in php_handle_bmp() local
187 unsigned long int result = 0; in php_swf_get_bits() local
203 struct gfxinfo *result = NULL; in php_handle_swc() local
285 struct gfxinfo *result = NULL; in php_handle_swf() local
311 struct gfxinfo *result = NULL; in php_handle_png() local
477 struct gfxinfo *result = NULL; in php_handle_jpeg() local
606 struct gfxinfo *result = NULL; in php_handle_jpc() local
885 struct gfxinfo * result; in php_handle_iff() local
[all …]
H A Dftp_fopen_wrapper.c111 int result; in php_stream_ftp_stream_close() local
138 int result, use_ssl, use_ssl_on_data = 0, tmp_len; in php_ftp_fopen_connect() local
326 int result, i; in php_fopen_do_pasv() local
423 int result = 0, use_ssl, use_ssl_on_data=0; in php_stream_url_wrap_ftp() local
700 int result = 0, use_ssl, use_ssl_on_data = 0; in php_stream_ftp_opendir() local
791 int result; in php_stream_ftp_url_stat() local
914 int result; in php_stream_ftp_unlink() local
964 int result; in php_stream_ftp_rename() local
1043 int result, recursive = options & PHP_STREAM_MKDIR_RECURSIVE; in php_stream_ftp_mkdir() local
1136 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
754 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
/PHP-7.2/Zend/
H A Dzend_vm_def.h354 int result; variable
372 int result; variable
394 int result; variable
462 int result; variable
530 int result; variable
580 int result; variable
6207 int result; variable
6232 int result; variable
6269 int result; variable
6359 int result; variable
[all …]
H A Dzend_compile.c123 zend_string *result; in zend_build_runtime_definition_key() local
879 void *result; in zend_hash_find_ptr_lc() local
1842 zend_string *result; in zend_ast_append_str() local
1849 ZSTR_VAL(result)[len] = '\0'; in zend_ast_append_str() local
4217 znode name_node, result; in zend_compile_global_var() local
4721 znode result; in zend_compile_for() local
6265 zend_string *result; in zend_generate_anon_class_name() local
7978 zval result; in zend_compile_const_expr_class_const() local
8025 zval result, resolved_name; in zend_compile_const_expr_const() local
8241 znode result; in zend_compile_stmt() local
[all …]
H A Dzend_operators.c188 #define zendi_convert_scalar_to_number(op, holder, result, silent) \ argument
260 #define convert_op1_op2_long(op1, op1_lval, op2, op2_lval, result, op, op_func) \ argument
1330 ZEND_API int ZEND_FASTCALL boolean_not_function(zval *result, zval *op1) /* {{{ */ in boolean_not_function()
1355 ZEND_API int ZEND_FASTCALL bitwise_not_function(zval *result, zval *op1) /* {{{ */ in bitwise_not_function()
1374 Z_STRVAL_P(result)[i] = ~Z_STRVAL_P(op1)[i]; in bitwise_not_function() local
1376 Z_STRVAL_P(result)[i] = 0; in bitwise_not_function() local
1903 static void ZEND_FASTCALL convert_compare_result_to_long(zval *result) /* {{{ */ in convert_compare_result_to_long()
2105 zval result; in hash_zval_identical_function() local
2517 int result; in zend_object_is_true() local
2543 register unsigned char *result = (unsigned char*)dest; in zend_str_tolower_copy() local
[all …]
H A Dzend_ini_parser.y69 static void zend_ini_do_op(char type, zval *result, zval *op1, zval *op2) in zend_ini_do_op()
107 static void zend_ini_init_string(zval *result) in zend_ini_init_string()
119 static void zend_ini_add_string(zval *result, zval *op1, zval *op2) in zend_ini_add_string()
147 static void zend_ini_get_constant(zval *result, zval *name) in zend_ini_get_constant()
175 static void zend_ini_get_var(zval *result, zval *name) in zend_ini_get_var()
H A Dzend_operators.h292 int result = 0; in i_zend_is_true() local
550 static zend_always_inline void fast_long_add_function(zval *result, zval *op1, zval *op2) in fast_long_add_function()
631 static zend_always_inline int fast_add_function(zval *result, zval *op1, zval *op2) in fast_add_function()
653 static zend_always_inline void fast_long_sub_function(zval *result, zval *op1, zval *op2) in fast_long_sub_function()
736 static zend_always_inline int fast_div_function(zval *result, zval *op1, zval *op2) in fast_div_function()
743 zval result; in fast_equal_check_function() local
777 zval result; in fast_equal_check_long() local
787 zval result; in fast_equal_check_string() local
877 char *result = zend_print_ulong_to_buf(buf, ~((zend_ulong) num) + 1); in zend_print_long_to_buf() local
H A Dzend_vm_execute.h4081 int result; local
4444 int result; local
4462 int result; local
5969 int result; local
6058 int result; local
6190 int result; local
6463 int result; local
6550 int result; local
6568 int result; local
6722 int result; local
[all …]
/PHP-7.2/ext/bcmath/
H A Dbcmath.c232 bc_num first, second, result; in PHP_FUNCTION() local
272 bc_num first, second, result; in PHP_FUNCTION() local
312 bc_num first, second, result; in PHP_FUNCTION() local
352 bc_num first, second, result; in PHP_FUNCTION() local
398 bc_num first, second, result; in PHP_FUNCTION() local
443 bc_num first, second, mod, result; in PHP_FUNCTION() local
489 bc_num first, second, result; in PHP_FUNCTION() local
529 bc_num result; in PHP_FUNCTION() local
/PHP-7.2/ext/odbc/
H A Dphp_odbc.c922 odbc_result *result; in php_odbc_fetch_attribs() local
1095 odbc_result *result; in odbc_column_lengths() local
1721 odbc_result *result; in php_odbc_fetch_hash() local
1873 odbc_result *result; in PHP_FUNCTION() local
1994 odbc_result *result; in PHP_FUNCTION() local
2029 odbc_result *result; in PHP_FUNCTION() local
2086 odbc_result *result; in PHP_FUNCTION() local
2274 odbc_result *result; in PHP_FUNCTION() local
2399 odbc_result *result; in PHP_FUNCTION() local
2784 odbc_result *result; in PHP_FUNCTION() local
[all …]
/PHP-7.2/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 gdGetWordLSB(signed short int *result, gdIOCtx *ctx) in gdGetWordLSB()
118 int gdGetInt (int *result, gdIOCtx * ctx) in gdGetInt()
142 int gdGetIntLSB(signed int *result, gdIOCtx *ctx) in gdGetIntLSB()
/PHP-7.2/ext/opcache/Optimizer/
H A Dsccp.c360 static inline int zval_to_string_offset(zend_long *result, zval *op) { in zval_to_string_offset()
376 static inline int fetch_array_elem(zval **result, zval *op1, zval *op2) { in fetch_array_elem()
401 static inline int ct_eval_fetch_dim(zval *result, zval *op1, zval *op2, int support_strings) { in ct_eval_fetch_dim()
443 static inline int ct_eval_add_array_elem(zval *result, zval *value, zval *key) { in ct_eval_add_array_elem()
480 static inline int ct_eval_assign_dim(zval *result, zval *value, zval *key) { in ct_eval_assign_dim()
518 static inline int ct_eval_incdec(zval *result, zend_uchar opcode, zval *op1) { in ct_eval_incdec()
528 static inline int ct_eval_isset_isempty(zval *result, uint32_t extended_value, zval *op1) { in ct_eval_isset_isempty()
538 static inline void ct_eval_type_check(zval *result, uint32_t type, zval *op1) { in ct_eval_type_check()
586 zval *result, zend_string *name, uint32_t num_args, zval **args) { in ct_eval_func_call()
1167 zval *result = NULL; in sccp_visit_instr() local
[all …]
H A Dpass1_5.c75 zval result; in zend_optimizer_pass1() local
94 zval result; in zend_optimizer_pass1() local
120 zval result; in zend_optimizer_pass1() local
/PHP-7.2/win32/
H A Dconsole.c26 BOOL result = FALSE; in php_win32_console_fileno_is_console() local
40 BOOL result = FALSE; in php_win32_console_fileno_has_vt100() local
62 BOOL result = FALSE; in php_win32_console_fileno_set_vt100() local
/PHP-7.2/ext/intl/locale/
H A Dlocale_methods.c126 char* result = NULL; in getPreferredTag() local
150 zend_off_t result =-1; in getStrrtokenPos() local
180 zend_off_t 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
1049 int result = 0; in add_array_entry() local
1158 int result = 0; in PHP_FUNCTION() local
1215 int result = 0; in strToMatch() local
1255 int result = 0; in PHP_FUNCTION() local
[all …]
/PHP-7.2/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.2/ext/mysqlnd/
H A Dmysqlnd_ext_plugin.c63 mysqlnd_plugin__get_plugin_result_data(const MYSQLND_RES * result, const unsigned int plugin_id) in mysqlnd_plugin__get_plugin_result_data()
77 mysqlnd_plugin__get_plugin_result_unbuffered_data(const MYSQLND_RES_UNBUFFERED * result, const unsi… in mysqlnd_plugin__get_plugin_result_unbuffered_data()
91 mysqlnd_plugin__get_plugin_result_buffered_data_zval(const MYSQLND_RES_BUFFERED_ZVAL * result, cons… in mysqlnd_plugin__get_plugin_result_buffered_data_zval()
104 mysqlnd_plugin__get_plugin_result_buffered_data_c(const MYSQLND_RES_BUFFERED_C * result, const unsi… in mysqlnd_plugin__get_plugin_result_buffered_data_c()
H A Dmysqlnd_ps.c50 MYSQLND_RES * result; in MYSQLND_METHOD() local
141 MYSQLND_RES * result; in MYSQLND_METHOD() local
447 …MYSQLND_RES * result = conn->m->result_init(stmt_to_prepare->field_count, stmt_to_prepare->persist… in MYSQLND_METHOD() local
680 zval *result = &stmt->result_bind[i].zv; in MYSQLND_METHOD() local
760 mysqlnd_stmt_fetch_row_buffered(MYSQLND_RES * result, void * param, const unsigned int flags, zend_… in mysqlnd_stmt_fetch_row_buffered()
812 zval *result = &stmt->result_bind[i].zv; in mysqlnd_stmt_fetch_row_buffered() local
919 zval *result = &stmt->result_bind[i].zv; in mysqlnd_stmt_fetch_row_unbuffered() local
995 MYSQLND_RES * result; in MYSQLND_METHOD() local
1031 mysqlnd_fetch_stmt_row_cursor(MYSQLND_RES * result, void * param, const unsigned int flags, zend_bo… in mysqlnd_fetch_stmt_row_cursor()
1110 zval *result = &stmt->result_bind[i].zv; in mysqlnd_fetch_stmt_row_cursor() local
[all …]
H A Dmysqlnd.h109 #define mysqlnd_fetch_row_c(result) (result)->m.fetch_row_c((result)) argument
119 #define mysqlnd_unbuffered_skip_result(result) (result)->m.skip_result((result)) argument
129 #define mysqlnd_data_seek(result, row) (result)->m.seek_data((result), (row)) argument
152 #define mysqlnd_num_rows(result) (result)->m.num_rows((result)) argument
153 #define mysqlnd_num_fields(result) (result)->m.num_fields((result)) argument
155 #define mysqlnd_fetch_lengths(result) (result)->m.fetch_lengths((result)) argument
157 #define mysqlnd_field_seek(result, ofs) (result)->m.seek_field((result), (ofs)) argument
158 #define mysqlnd_field_tell(result) (result)->m.field_tell((result)) argument
159 #define mysqlnd_fetch_field(result) (result)->m.fetch_field((result)) argument
160 #define mysqlnd_fetch_field_direct(result,fnr) (result)->m.fetch_field_direct((result), (fnr)) argument
[all …]
/PHP-7.2/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.2/ext/intl/dateformat/
H A Ddateformat_format.c67 int32_t result = 0; in internal_get_arr_ele() local
111 UDate result; in internal_get_timestamp() local

Completed in 284 milliseconds

12345678