Home
last modified time | relevance | path

Searched refs:w (Results 1 – 25 of 983) sorted by path

12345678910>>...40

/php-src/.github/workflows/
H A Ddocs.yml24 run: rstfmt --check -w 100 docs/source
/php-src/Zend/Optimizer/
H A Dzend_worklist.h72 #define ZEND_WORKLIST_ALLOCA(w, _len, use_heap) do { \ argument
73 …(w)->stack.buf = (int*)do_alloca(ZEND_MM_ALIGNED_SIZE(sizeof(int) * _len) + sizeof(zend_ulong) * z…
74 (w)->stack.len = 0; \
75 (w)->stack.capacity = _len; \
76 (w)->visited = (zend_bitset)((char*)(w)->stack.buf + ZEND_MM_ALIGNED_SIZE(sizeof(int) * _len)); \
77 memset((w)->visited, 0, sizeof(zend_ulong) * zend_bitset_len(_len)); \
80 #define ZEND_WORKLIST_FREE_ALLOCA(w, use_heap) \ argument
81 free_alloca((w)->stack.buf, use_heap)
/php-src/Zend/
H A DZend.m4259 fp = fopen("conftest.zend", "w");
H A Dzend_strtod.c1243 ULong *xa, *xa0, w, y, z; local
1264 w = xa > xa0 ? *--xa : 0;
1265 d1 = y << ((32-Ebits) + k) | w >> (Ebits - k);
1282 w = xa > xa0 ? *--xa : 0;
1284 d1 = z << k + 16 - Ebits | w << k - Ebits | y >> 16 + Ebits - k;
1288 w = xa > xa0 ? *--xa : 0;
1290 d0 = Exp_1 | y << k + 16 | z << k | w >> 16 - k;
1292 d1 = w << k + 16 | y << k;
/php-src/Zend/tests/
H A Dbug21478.phpt18 $fp = fopen(__DIR__."/test.txt","w");
H A Dbug38779_1.phpt35 $fp1 = fopen($filename, "w");
H A Dbug55305.phpt2 Bug #55305 (ref lost: 1st ref instantiated in class def, 2nd ref made w/o instantiating)
H A Dbug68887.phpt5 fclose(fopen("php://temp","w+"));
7 fclose(fopen("php://temp","w+"));
9 fclose(fopen("php://temp","w+"));
H A Dbug72373.phpt2 Bug #72373: TypeError after Generator function w/declared return type finishes
H A Dbug78271.phpt7 $w="x";
9 $w="y";
H A Dinter_007.phpt14 class_alias('c', 'w');
16 interface a extends d, w { }
H A Dlsb_018.phpt40 $w = Baz::getInstance();
44 $w->identify();
52 $w->identify();
H A Druntime_compile_time_binary_operands.phpt149 $file = fopen($filename, "w");
/php-src/Zend/tests/multibyte/
H A Dmultibyte_encoding_006.phpt13 ���e���c���h���o��� ���"���h���e���l���l���o��� ���w���o���r���l���d���"���;���
/php-src/Zend/tests/offsets/
H A Dtest_offset_helpers.inc83 '%w' => '\s*',
/php-src/Zend/tests/readonly_props/
H A Dvariation.phpt17 public function w() {
46 function w($test) {
72 foreach (['r', 'w', 'rw', 'im', 'is', 'us'] as $op) {
96 Init: 1, scope: 1, op: w: Cannot modify readonly property Test::$prop
102 Init: 1, scope: 0, op: w: Cannot modify readonly property Test::$prop
108 Init: 0, scope: 1, op: w: done
114 Init: 0, scope: 0, op: w: Cannot initialize readonly property Test::$prop from global scope
H A Dvariation_nested.phpt23 function w($test) {
48 foreach (['r', 'w', 'rw', 'im', 'is', 'us'] as $op) {
67 Init: 1, op: w: done
73 Init: 0, op: w: Cannot indirectly modify readonly property Test::$prop
/php-src/Zend/tests/weakrefs/
H A Dweakrefs_006.phpt9 global $w, $all;
13 $w[$v] = $i;
18 $w = new WeakMap();
21 $w[$o] = new HasDtor();
22 $w[$o] = 123;
23 var_dump($w);
/php-src/build/
H A Dconfig.guess702 64) HP_ARCH=hppa2.0w ;;
746 if test "$HP_ARCH" = hppa2.0w
762 HP_ARCH=hppa2.0w
H A Dlibtool.m41168 chmod u+w . 2>&5
5794 _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`'
H A Dphp.m41025 FILE *fp = fopen("conftestval", "w");
/php-src/docs-old/
H A Dstreams.md305 meaning in the mode parameter, except that it checks for a `w` in the string
/php-src/docs/
H A DREADME.md29 rstfmt -w 100 source
/php-src/ext/bz2/tests/
H A D001.phpt15 var_dump(bzopen("", "w"));
47 bzopen(): Argument #2 ($mode) must be either "r" or "w"
48 bzopen(): Argument #2 ($mode) must be either "r" or "w"
49 bzopen(): Argument #2 ($mode) must be either "r" or "w"
H A D002.phpt10 $fp = fopen("bz_open_002.txt", "w");
11 var_dump(bzopen($fp, "w"));
18 var_dump(bzopen($fp, "w"));
28 var_dump(bzopen($fp, "w"));
39 var_dump(bzopen($fp, "w"));
45 var_dump(bzopen($fp, "w"));
51 var_dump(bzopen($fp, "w"));
57 var_dump(bzopen($fp, "w"));
66 var_dump(bzopen($fp, "w"));
72 var_dump(bzopen($fp, "w"));
[all …]

Completed in 69 milliseconds

12345678910>>...40