Home
last modified time | relevance | path

Searched refs:result (Results 1001 – 1025 of 1047) sorted by relevance

1...<<4142

/PHP-8.2/ext/spl/
H A Dspl_fixedarray.c511 bool result = zend_is_true(&rv); in spl_fixedarray_object_has_dimension() local
513 return result; in spl_fixedarray_object_has_dimension()
/PHP-8.2/ext/standard/tests/strings/
H A Dhtmlentities_html5.phpt31 $result = htmlentities($str, ENT_QUOTES | ENT_HTML5, 'UTF-8');
32 if ($str != $result) {
33 printf("%s\tU+%05X\n", $result, $i);
109 $result = htmlentities($str, ENT_QUOTES | ENT_HTML5, 'UTF-8');
110 printf("%s\tU+%05X U+%05X\n", $result, $i[0], $i[1]);
/PHP-8.2/ext/openssl/
H A Dopenssl.c5229 zend_string *result = zend_string_alloc(key_size, 0); in php_openssl_pkey_derive() local
5232 zend_string_release_ex(result, 0); in php_openssl_pkey_derive()
5237 ZSTR_LEN(result) = key_size; in php_openssl_pkey_derive()
5238 ZSTR_VAL(result)[key_size] = 0; in php_openssl_pkey_derive() local
5240 return result; in php_openssl_pkey_derive()
5253 zend_string *result = php_openssl_pkey_derive(pkey, peer_key, 0); in php_openssl_dh_compute_key() local
5255 return result; in php_openssl_dh_compute_key()
5298 if (result) { in PHP_FUNCTION()
5299 RETURN_NEW_STR(result); in PHP_FUNCTION()
5337 if (result) { in PHP_FUNCTION()
[all …]
H A Dxp_ssl.c363 int result = -1; in php_openssl_x509_fingerprint_cmp() local
367 result = strcasecmp(expected, ZSTR_VAL(fingerprint)); in php_openssl_x509_fingerprint_cmp()
371 return result; in php_openssl_x509_fingerprint_cmp()
/PHP-8.2/
H A D.gdbinit595 printf "result => "
596 printzn &execute_data->opline.result
/PHP-8.2/ext/hash/tests/
H A Dfnv1a32.phpt312 $result = hash('fnv1a32', $test[0]);
313 if ($result != $test[1]) {
314 …echo "Iteration " . $i . " failed - expected '" . $test[1] . "', got '" . $result . "' for '" . $t…
H A Dfnv1a64.phpt312 $result = hash('fnv1a64', $test[0]);
313 if ($result != $test[1]) {
314 …echo "Iteration " . $i . " failed - expected '" . $test[1] . "', got '" . $result . "' for '" . $t…
/PHP-8.2/sapi/phpdbg/
H A Dphpdbg.c268 bool result = 1; in PHP_FUNCTION() local
275 result = 0; in PHP_FUNCTION()
281 if (result) { in PHP_FUNCTION()
/PHP-8.2/Zend/
H A Dzend_exceptions.c898 zend_result result = FAILURE; in zend_exception_error() local
966 return result; in zend_exception_error()
H A Dzend_execute.h407 ZEND_API void zend_fetch_dimension_const(zval *result, zval *container, zval *dim, int type);
/PHP-8.2/ext/sockets/
H A Dsockets.c2339 struct addrinfo hints, *result, *rp; local
2368 if (getaddrinfo(ZSTR_VAL(hostname), service, &hints, &result) != 0) {
2374 for (rp = result; rp != NULL; rp = rp->ai_next) {
2394 freeaddrinfo(result);
/PHP-8.2/ext/mbstring/
H A Dmbstring_arginfo.h32 ZEND_ARG_INFO(1, result)
/PHP-8.2/ext/hash/xxhash/
H A Dxxhash.h3162 xxh_u64x2 result; in XXH_vec_mulo() local
3163 __asm__("vmulouw %0, %1, %2" : "=v" (result) : "v" (a), "v" (b)); in XXH_vec_mulo()
3164 return result; in XXH_vec_mulo()
3168 xxh_u64x2 result; in XXH_vec_mule() local
3169 __asm__("vmuleuw %0, %1, %2" : "=v" (result) : "v" (a), "v" (b)); in XXH_vec_mule()
3170 return result; in XXH_vec_mule()
/PHP-8.2/ext/mbstring/tests/
H A Diso2022jp_ms_encoding.phpt164 /* The first byte of this 2-byte character will be rejected and result in % being sent
H A Diso2022jp_kddi_encoding.phpt188 /* The first byte of this 2-byte character will be rejected and result in % being sent
/PHP-8.2/docs/
H A Dparameter-parsing-api.md31 Both functions return `SUCCESS` or `FAILURE` depending on the result.
/PHP-8.2/Zend/Optimizer/
H A Ddce.c380 def_opline->result.var = 0; in try_remove_var_def()
/PHP-8.2/build/
H A Dpkg.m4104 dnl pkg_failed based on the result.
/PHP-8.2/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt51 // NOTE: for BC reasons with ext/mysql, ext/mysqli accepts invalid result modes.
H A Dmysqli_fetch_array.phpt49 // NOTE: for BC reasons with ext/mysql, ext/mysqli accepts invalid result modes.
H A Dmysqli_get_client_stats.phpt299 /* last row has been implicitly cleaned from the wire by freeing the result set */
442 /* buffered result set - no skipping possible! */
562 printf("[%03d] Expecting at least one result, [%d] %s\n", ++$test_counter,
/PHP-8.2/sapi/fpm/tests/
H A Dtester.inc360 $result = exec("$command 2>&1", $output, $code);
361 if ($result === false || $code) {
1828 $result = $this->logTool->expectEntry(
1839 if ( ! $result) {
/PHP-8.2/ext/soap/
H A Dphp_schema.c2285 zend_result result = zend_hash_move_forward_ex(type->attributes, &pos); in schema_type_fixup() local
2286 ZEND_ASSERT(result == SUCCESS); in schema_type_fixup()
2289 zend_result result = zend_hash_index_del(type->attributes, index); in schema_type_fixup() local
2290 ZEND_ASSERT(result == SUCCESS); in schema_type_fixup()
/PHP-8.2/ext/dom/lexbor/
H A DLICENSE160 result of this License or out of the use or inability to use the
/PHP-8.2/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c1252 int result = 0; in detect_early_fail() local
1571 result = count; in detect_early_fail()
1578 return result; in detect_early_fail()
3169 sljit_uw *result; in allocate_read_only_data() local
3183 return result + 1; in allocate_read_only_data()
14474 if (result != 0) in pcre2_jit_compile()
14475 return result; in pcre2_jit_compile()
14482 if (result != 0) in pcre2_jit_compile()
14483 return result; in pcre2_jit_compile()
14490 if (result != 0) in pcre2_jit_compile()
[all …]

Completed in 145 milliseconds

1...<<4142