/PHP-8.1/ext/opcache/tests/jit/ |
H A D | gh11917.phpt | 16 $split = 8; 19 $mask = (1 << $split) - 1; 29 $val[$i] >>= $split; 31 $remaining -= $split; 32 $overflow = $split <= $remaining ? 0 : $split - $remaining; 44 $overflow = $split <= $remaining ? 0 : $split - $remaining;
|
/PHP-8.1/ext/dba/libcdb/ |
H A D | cdb_make.c | 60 c->split = 0; in cdb_make_start() 172 c->split = (struct cdb_hp *) safe_emalloc(memsize, sizeof(struct cdb_hp), 0); in cdb_make_finish() 173 if (!c->split) in cdb_make_finish() 176 c->hash = c->split + c->numentries; in cdb_make_finish() 187 c->split[--c->start[255 & x->hp[i].h]] = x->hp[i]; in cdb_make_finish() 200 hp = c->split + c->start[i]; in cdb_make_finish() 219 if (c->split) in cdb_make_finish() 220 efree(c->split); in cdb_make_finish()
|
H A D | cdb_make.h | 44 struct cdb_hp *split; /* includes space for hash */ member
|
/PHP-8.1/scripts/dev/ |
H A D | check_parameters.php | 316 …$split = preg_split('/PHP_(?:NAMED_)?(?:FUNCTION|METHOD)\s*\((\w+(?:,\s*\w+)?)\)/S', $txt, -1, PRE… 318 if (count($split) < 2) continue; // no functions defined on this file 319 array_shift($split); // the first part isn't relevant 336 for ($i = 0; $i < count($split); $i+=2) { 339 list($f) = preg_split('@/\*\s*}}}\s*\*/@S', $split[$i+1][0]); 340 check_function(preg_replace('/\s*,\s*/S', '::', $split[$i][0]), $f, $split[$i][1]);
|
/PHP-8.1/ext/standard/tests/file/ |
H A D | include_streams.phpt | 34 $split = parse_url($path); 35 if ($split["host"] !== "GLOBALS" || 36 empty($split["path"]) || 37 empty($GLOBALS[substr($split["path"],1)])) { 40 $this->varname = substr($split["path"],1);
|
H A D | bug72330.phpt | 2 Bug #72330 (CSV fields incorrectly split if escape char followed by UTF chars)
|
/PHP-8.1/tests/classes/ |
H A D | static_properties_004.phpt | 16 echo "\nReferences cannot be used to split the properties:\n"; 32 References cannot be used to split the properties:
|
/PHP-8.1/ext/tokenizer/tests/ |
H A D | no_inline_html_split.phpt | 2 Inline HTML should not be split at partial PHP tags
|
/PHP-8.1/ext/standard/tests/array/ |
H A D | bug44182.phpt | 2 Bug #44182 (extract EXTR_REFS can fail to split copy-on-write references)
|
/PHP-8.1/ext/phar/tests/zip/ |
H A D | corrupt_010.phpt | 14 phar error: split archives spanning multiple zips cannot be processed in zip-based phar "%sdisknumb…
|
/PHP-8.1/sapi/cli/tests/ |
H A D | emptyheader.phpt | 2 Correctly handle split and empty header
|
/PHP-8.1/ext/mbstring/tests/ |
H A D | mb_str_split_error_conditions.phpt | 10 // Invalid split length
|
H A D | mb_str_split_ru.phpt | 28 $split = mb_str_split($enc, 1, $cs); 43 echo " " . unpack("H*", $split[$i])[1];
|
H A D | mb_str_split_jp.phpt | 29 $split = mb_str_split($enc, 1, $cs); 43 echo " " . unpack("H*", $split[$i])[1];
|
/PHP-8.1/win32/build/ |
H A D | confutils.js | 193 var a = CWD.split("\\"); 194 var b = path.split("\\"); 353 arg = arg.split("=", 2); 624 env = env.split(";"); 685 var dirs = path.split(';'); 715 var a = m.split(/ /); 787 libnames = libnames.split(';'); 889 libnames = libnames.split(';'); 1601 var _tmp = src.split("\\"); 1656 var dirs = k.split("\\"); [all …]
|
/PHP-8.1/sapi/fpm/tests/ |
H A D | log-bwp-msg-flush-split-real.phpt | 2 FPM: Buffered worker output plain log with msg with flush split in buffer
|
H A D | log-bwp-msg-flush-split-fallback.phpt | 2 FPM: Buffered worker output plain log with msg with flush split in buffer
|
H A D | log-bwp-msg-flush-split-sep-pos-end.phpt | 2 FPM: Buffered worker output plain log with msg with flush split position towards separator end
|
H A D | log-bwp-msg-flush-split-sep-pos-start.phpt | 2 FPM: Buffered worker output plain log with msg with flush split position towards separator start
|
/PHP-8.1/ext/standard/tests/streams/ |
H A D | bug64166_2.phpt | 2 Bug #64166: quoted-printable-encode stream filter incorrectly discarding whitespace - split reads
|
/PHP-8.1/ext/standard/tests/strings/ |
H A D | bug62462.phpt | 2 Multibyte characters shouldn't be split by soft line break added by quoted_printable_encode - 4 byt…
|
/PHP-8.1/ext/readline/ |
H A D | README.md | 17 Therefore, that code was split into ext/readline so that this can dynamically
|
/PHP-8.1/build/ |
H A D | order_by_dep.awk | 67 split($1, mod, ";");
|
/PHP-8.1/ext/hash/ |
H A D | hash_tiger.c | 101 # define split(str) \ macro 112 # define split split_ex macro 125 split(str); \
|
/PHP-8.1/ext/pcre/tests/ |
H A D | preg_split_basic.phpt | 12 …/i', $string)); //tries to find NAME regardless of case in $string (can't split it so just returns…
|