Home
last modified time | relevance | path

Searched refs:fcc (Results 26 – 39 of 39) sorted by relevance

12

/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_match.c1066 ch = (mb->fcc)[ch]; in match()
1089 ch = (mb->fcc)[ch]; in match()
1102 if (ch == fc || (Fop == OP_NOTI && TABLE_GET(ch, mb->fcc, ch) == fc)) in match()
1325 Loc = mb->fcc[Lc]; in match()
1331 Loc = TABLE_GET(Lc, mb->fcc, Lc); in match()
1566 Loc = TABLE_GET(Lc, mb->fcc, Lc); /* Other case from table */ in match()
6654 mb->fcc = re->tables + fcc_offset; in pcre2_match()
6666 first_cu2 = TABLE_GET(first_cu, mb->fcc, first_cu); in pcre2_match()
6688 req_cu2 = TABLE_GET(req_cu, mb->fcc, req_cu); in pcre2_match()
H A Dpcre2_compile.c4946 SETBIT(classbits, cb->fcc[c]); in add_to_class_internal()
5612 d = TABLE_GET(c, cb->fcc, c); in compile_branch()
9752 cb.fcc = tables + fcc_offset; /* character */ in pcre2_compile()
10357 if (cb.fcc[firstcu] != firstcu) re->flags |= PCRE2_FIRSTCASELESS; in pcre2_compile()
10424 if (cb.fcc[reqcu] != reqcu) re->flags |= PCRE2_LASTCASELESS; in pcre2_compile()
H A Dpcre2_jit_compile.c418 const sljit_u8 *fcc; member
3460 return common->fcc[c] != c; in char_has_othercase()
3465 return MAX_255(c) ? common->fcc[c] != c : FALSE; in char_has_othercase()
3475 return TABLE_GET(c, common->fcc, c); in char_othercase()
3497 oc = common->fcc[c]; in char_get_othercase_bit()
3504 oc = TABLE_GET(c, common->fcc, c); in char_get_othercase_bit()
3508 oc = TABLE_GET(c, common->fcc, c); in char_get_othercase_bit()
5725 othercase[0] = TABLE_GET(chr, common->fcc, chr); in scan_prefix()
6153 oc = TABLE_GET(first_char, common->fcc, first_char); in fast_forward_first_char()
6364 oc = TABLE_GET(req_char, common->fcc, req_char); in search_requested_char()
[all …]
/PHP-8.0/ext/zip/
H A Dphp_zip.c2926 zend_fcall_info_cache fcc; local
2929 if (zend_parse_parameters(ZEND_NUM_ARGS(), "df", &rate, &fci, &fcc) == FAILURE) {
2972 zend_fcall_info_cache fcc; local
2974 if (zend_parse_parameters(ZEND_NUM_ARGS(), "f", &fci, &fcc) == FAILURE) {
/PHP-8.0/main/
H A Doutput.c499 …if (SUCCESS == zend_fcall_info_init(output_handler, 0, &user->fci, &user->fcc, &handler_name, &err… in php_output_handler_create_user()
969 …if (SUCCESS == zend_fcall_info_call(&handler->func.user->fci, &handler->func.user->fcc, &retval, N… in php_output_handler_op()
/PHP-8.0/ext/phar/
H A Dutil.c1387 zend_fcall_info_cache fcc; in phar_call_openssl_signverify() local
1414 if (FAILURE == zend_fcall_info_init(&openssl, 0, &fci, &fcc, NULL, NULL)) { in phar_call_openssl_signverify()
1434 if (FAILURE == zend_call_function(&fci, &fcc)) { in phar_call_openssl_signverify()
/PHP-8.0/Zend/
H A Dzend_API.h352 ZEND_API void zend_release_fcall_info_cache(zend_fcall_info_cache *fcc);
357 uint32_t check_flags, zend_fcall_info_cache *fcc, char **error);
358 …ject, uint32_t check_flags, zend_string **callable_name, zend_fcall_info_cache *fcc, char **error);
530 …llable, uint32_t check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, zend_string **call…
573 ZEND_API zend_result zend_fcall_info_call(zend_fcall_info *fci, zend_fcall_info_cache *fcc, zval *r…
H A Dzend_vm_def.h3784 zend_fcall_info_cache fcc; variable
3793 if (zend_is_callable_ex(function_name, NULL, 0, NULL, &fcc, &error)) {
3795 func = fcc.function_handler;
3796 object_or_called_scope = fcc.called_scope;
3804 if (fcc.object) {
3805 object_or_called_scope = fcc.object;
3808 } else if (fcc.object) {
3809 GC_ADDREF(fcc.object); /* For $this pointer */
3810 object_or_called_scope = fcc.object;
3819 zend_object_release(fcc.object);
H A Dzend_vm_execute.h6725 zend_fcall_info_cache fcc; in ZEND_INIT_USER_CALL_SPEC_CONST_CONST_HANDLER() local
6736 func = fcc.function_handler; in ZEND_INIT_USER_CALL_SPEC_CONST_CONST_HANDLER()
6745 if (fcc.object) { in ZEND_INIT_USER_CALL_SPEC_CONST_CONST_HANDLER()
6749 } else if (fcc.object) { in ZEND_INIT_USER_CALL_SPEC_CONST_CONST_HANDLER()
9018 zend_fcall_info_cache fcc; in ZEND_INIT_USER_CALL_SPEC_CONST_TMPVAR_HANDLER() local
9029 func = fcc.function_handler; in ZEND_INIT_USER_CALL_SPEC_CONST_TMPVAR_HANDLER()
9038 if (fcc.object) { in ZEND_INIT_USER_CALL_SPEC_CONST_TMPVAR_HANDLER()
9042 } else if (fcc.object) { in ZEND_INIT_USER_CALL_SPEC_CONST_TMPVAR_HANDLER()
11406 zend_fcall_info_cache fcc; in ZEND_INIT_USER_CALL_SPEC_CONST_CV_HANDLER() local
11426 if (fcc.object) { in ZEND_INIT_USER_CALL_SPEC_CONST_CV_HANDLER()
[all …]
/PHP-8.0/ext/ffi/
H A Dffi.c849 zend_fcall_info_cache fcc; member
864 if (callback_data->fcc.function_handler->common.fn_flags & ZEND_ACC_CLOSURE) { in zend_ffi_callback_hash_dtor()
865 OBJ_RELEASE(ZEND_CLOSURE_OBJECT(callback_data->fcc.function_handler)); in zend_ffi_callback_hash_dtor()
907 if (zend_call_function(&fci, &callback_data->fcc) != SUCCESS) { in zend_ffi_callback_trampoline()
935 zend_fcall_info_cache fcc; in zend_ffi_create_callback() local
947 if (!zend_is_callable_ex(value, NULL, 0, NULL, &fcc, &error)) { in zend_ffi_create_callback()
953 if (arg_count < fcc.function_handler->common.required_num_args) { in zend_ffi_create_callback()
965 memcpy(&callback_data->fcc, &fcc, sizeof(zend_fcall_info_cache)); in zend_ffi_create_callback()
1032 if (fcc.function_handler->common.fn_flags & ZEND_ACC_CLOSURE) { in zend_ffi_create_callback()
1033 GC_ADDREF(ZEND_CLOSURE_OBJECT(fcc.function_handler)); in zend_ffi_create_callback()
/PHP-8.0/ext/oci8/
H A Doci8_interface.c51 zend_fcall_info_cache fcc; in PHP_FUNCTION() local
54 if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|f!", &z_connection, &fci, &fcc) == FAILURE) { in PHP_FUNCTION()
/PHP-8.0/ext/pgsql/
H A Dpgsql.c1916 zend_fcall_info_cache fcc; in php_pgsql_fetch_hash() local
1943 fcc.function_handler = ce->constructor; in php_pgsql_fetch_hash()
1944 fcc.called_scope = Z_OBJCE_P(return_value); in php_pgsql_fetch_hash()
1945 fcc.object = Z_OBJ_P(return_value); in php_pgsql_fetch_hash()
1947 if (zend_call_function(&fci, &fcc) == FAILURE) { in php_pgsql_fetch_hash()
/PHP-8.0/ext/standard/
H A Dbasic_functions.c1793 zend_fcall_info_cache fcc; local
1797 if (zend_parse_parameters(ZEND_NUM_ARGS(), "f*", &fci, &fcc, &args, &arg_count) == FAILURE) {
/PHP-8.0/ext/ldap/
H A Dldap.c3721 zend_fcall_info_cache fcc; in PHP_FUNCTION() local
3724 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rf!", &link, &fci, &fcc) == FAILURE) { in PHP_FUNCTION()

Completed in 349 milliseconds

12