Home
last modified time | relevance | path

Searched refs:r (Results 1 – 25 of 1616) sorted by last modified time

12345678910>>...65

/php-src/.github/workflows/
H A Dnightly.yml438 …php -r '$c = file_get_contents("tests/Filesystem/FilesystemTest.php"); $c = str_replace("public fu…
481 …php -r '$c = file_get_contents("src/Symfony/Component/HtmlSanitizer/Tests/HtmlSanitizerCustomTest.…
483 …php -r '$c = file_get_contents("src/Symfony/Component/VarDumper/Tests/Caster/FFICasterTest.php"); …
/php-src/ext/curl/tests/
H A Dcurl_read_callback.phpt26 $hReadHandle = fopen($sReadFile, 'r');
H A Dcurl_read_trampoline.phpt23 $hReadHandle = fopen($sReadFile, 'r');
/php-src/
H A DNEWS150 . Add "/r" modifier. (Ayesh)
H A DUPGRADING222 . Added support for the "r" (PCRE2_EXTRA_CASELESS_RESTRICT) modifier, as well
223 as the (?r) mode modifier. When enabled along with the case-insensitive
/php-src/ext/random/
H A Dengine_xoshiro256starstar.c32 uint64_t r; in splitmix64() local
34 r = (*seed += 0x9e3779b97f4a7c15ULL); in splitmix64()
35 r = (r ^ (r >> 30)) * 0xbf58476d1ce4e5b9ULL; in splitmix64()
36 r = (r ^ (r >> 27)) * 0x94d049bb133111ebULL; in splitmix64()
37 return (r ^ (r >> 31)); in splitmix64()
47 const uint64_t r = rotl(s->state[1] * 5, 7) * 9; in generate_state() local
59 return r; in generate_state()
H A Dengine_secure.c30 zend_ulong r = 0; in generate() local
32 php_random_bytes_throw(&r, sizeof(r)); in generate()
36 .result = r, in generate()
/php-src/ext/zend_test/tests/
H A Dclass_constant_deprecated.phpt8 $r = new ReflectionClassConstant('_ZendTestClass', 'ZEND_TEST_DEPRECATED');
9 var_dump($r->isDeprecated());
11 $r = new ReflectionClassConstant('_ZendTestClass', 'TYPED_CLASS_CONST2');
12 var_dump($r->isDeprecated());
/php-src/Zend/tests/
H A Dclosure_068.phpt9 $r = new \ReflectionFunction(foo(...));
10 var_dump($r->getShortName());
H A Dclosure_067.phpt16 $r = new \ReflectionFunction($c);
17 var_dump($r->getShortName());
/php-src/Zend/
H A Dzend_API.h570 add_assoc_resource_ex(arg, key, strlen(key), r); in add_assoc_resource()
617 ZEND_API zend_result add_next_index_resource(zval *arg, zend_resource *r);
656 add_property_resource_ex(arg, key, strlen(key), r); in add_property_resource()
1021 #define RETVAL_RES(r) ZVAL_RES(return_value, r) argument
1022 #define RETVAL_ARR(r) ZVAL_ARR(return_value, r) argument
1024 #define RETVAL_OBJ(r) ZVAL_OBJ(return_value, r) argument
1025 #define RETVAL_OBJ_COPY(r) ZVAL_OBJ_COPY(return_value, r) argument
1047 #define RETURN_RES(r) do { RETVAL_RES(r); return; } while (0) argument
1048 #define RETURN_ARR(r) do { RETVAL_ARR(r); return; } while (0) argument
1050 #define RETURN_OBJ(r) do { RETVAL_OBJ(r); return; } while (0) argument
[all …]
H A Dzend_API.c1882 ZEND_API void add_assoc_resource_ex(zval *arg, const char *key, size_t key_len, zend_resource *r) /… in add_assoc_resource_ex() argument
1886 ZVAL_RES(&tmp, r); in add_assoc_resource_ex()
1987 ZEND_API void add_index_resource(zval *arg, zend_ulong index, zend_resource *r) /* {{{ */ in add_index_resource() argument
1991 ZVAL_RES(&tmp, r); in add_index_resource()
2086 ZEND_API zend_result add_next_index_resource(zval *arg, zend_resource *r) /* {{{ */ in add_next_index_resource() argument
2090 ZVAL_RES(&tmp, r); in add_next_index_resource()
2226 ZEND_API void add_property_resource_ex(zval *arg, const char *key, size_t key_len, zend_resource *r in add_property_resource_ex() argument
2230 ZVAL_RES(&tmp, r); in add_property_resource_ex()
2387 zend_module_entry *m, *r; in zend_sort_modules() local
2398 r = (zend_module_entry*)Z_PTR(b2->val); in zend_sort_modules()
[all …]
H A Dzend_strtod.c3612 int j, k, *r; local
3619 r = (int*)Balloc(k);
3620 *r = k;
3625 (char *)(r+1);
H A Dzend_execute.c4186 zend_vm_stack r = EG(vm_stack)->prev; in zend_vm_stack_copy_call_frame() local
4188 EG(vm_stack)->prev = r->prev; in zend_vm_stack_copy_call_frame()
4189 efree(r); in zend_vm_stack_copy_call_frame()
/php-src/ext/intl/tests/
H A Dgh13766.phpt35 Deprecated: Implicit conversion from float %r(1\.4757395258967641E\+20|34359738352)%r to int loses …
/php-src/ext/openssl/
H A Dopenssl.c300 r->n = n; in ZEND_GET_MODULE()
301 r->e = e; in ZEND_GET_MODULE()
302 r->d = d; in ZEND_GET_MODULE()
309 r->p = p; in RSA_set0_factors()
310 r->q = q; in RSA_set0_factors()
317 r->dmp1 = dmp1; in RSA_set0_crt_params()
326 *n = r->n; in RSA_get0_key()
327 *e = r->e; in RSA_get0_key()
328 *d = r->d; in RSA_get0_key()
333 *p = r->p; in RSA_get0_factors()
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_x86.dasc2461 …/* l = RLOAD(r) ... v = BINOP(l, _) ... RSTORE(l, r, v) => SKIP ... SKIP_REG_BINOP ... REG_BINOP */
2470 …/* l = RLOAD(r) ... v = BINOP(x, l) ... RSTORE(l, r, v) => SKIP ... SKIP_REG_BINOP ... REG_BINOP */
H A Dir_ra.c1756 while (r) { in ir_swap_operands()
1764 r = r->next; in ir_swap_operands()
1849 r = r->next; in ir_try_swap_operands()
1946 r = r->next; in ir_coalesce()
2301 while (r) { in ir_ival_has_hole_between()
2307 r = r->next; in ir_ival_has_hole_between()
3600 r = r->next; in ir_linear_scan()
3601 } while (r && r->end <= position); in ir_linear_scan()
3638 r = r->next; in ir_linear_scan()
3639 } while (r && r->end <= position); in ir_linear_scan()
[all …]
H A Dir.h768 #define IR_REG_SPILLED(r) \ argument
769 ((r) & (IR_REG_SPILL_LOAD|IR_REG_SPILL_STORE|IR_REG_SPILL_SPECIAL))
770 #define IR_REG_NUM(r) \ argument
771 …((int8_t)((r) == IR_REG_NONE ? IR_REG_NONE : ((r) & ~(IR_REG_SPILL_LOAD|IR_REG_SPILL_STORE|IR_REG_…
/php-src/ext/dom/lexbor/lexbor/core/
H A Ddiyfp.h105 lexbor_diyfp_t r; in lexbor_diyfp_from_d2() local
120 r.significand = significand + LEXBOR_DBL_HIDDEN_BIT; in lexbor_diyfp_from_d2()
121 r.exp = biased_exp - LEXBOR_DBL_EXPONENT_BIAS; in lexbor_diyfp_from_d2()
124 r.significand = significand; in lexbor_diyfp_from_d2()
125 r.exp = LEXBOR_DBL_EXPONENT_MIN + 1; in lexbor_diyfp_from_d2()
128 return r; in lexbor_diyfp_from_d2()
/php-src/build/
H A Dlibtool.m4268 $rm -r conftest*
487 if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
488 echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
490 # This shell has a builtin print -r that does the trick.
491 echo='print -r'
695 if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
791 $rm -r conftest*
1138 $rm -r conftest 2>/dev/null
2358 [lt_cv_ld_reload_flag='-r'])
2368 reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
[all …]
/php-src/sapi/cli/tests/
H A D017.phpt19 $descriptorspec = [['pipe', 'r'], STDOUT, STDERR];
/php-src/docs/
H A Drelease-process.md681 ./bin/createReleaseEntry -v X.Y.Z -r # --security for security releases
/php-src/ext/odbc/
H A Dconfig.m412 ac_solid_uname_r=`uname -r 2>/dev/null`
/php-src/sapi/fpm/
H A Dconfig.m4177 if test -r /proc/$$/mem ; then
180 if test -r /proc/$$/as ; then

Completed in 150 milliseconds

12345678910>>...65