Home
last modified time | relevance | path

Searched refs:s (Results 6151 – 6175 of 6255) sorted by relevance

1...<<241242243244245246247248249250251

/PHP-7.4/build/
H A Dltmain.sh1395 xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
3805 tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"`
4415 compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
4416 finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
4627 …$run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbol…
4635 …$run eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$o…
4700 runtime relocations are performed -- see ld's documentation
5329 Xsed='${SED} -e 1s/^X//'
6450 dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
/PHP-7.4/Zend/
H A Dzend_operators.c2374 char *s; in increment_string() local
2394 s = Z_STRVAL_P(str); in increment_string()
2397 ch = s[pos]; in increment_string()
2400 s[pos] = 'a'; in increment_string()
2403 s[pos]++; in increment_string()
2409 s[pos] = 'A'; in increment_string()
2412 s[pos]++; in increment_string()
2418 s[pos] = '0'; in increment_string()
2421 s[pos]++; in increment_string()
H A Dzend_operators.h189 static zend_always_inline const void *zend_memrchr(const void *s, int c, size_t n) in zend_memrchr() argument
196 for (e = (const unsigned char *)s + n - 1; e >= (const unsigned char *)s; e--) { in zend_memrchr()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_prompt.c516 if (phpdbg_compile_stdin(code.s) == FAILURE) { in PHPDBG_COMMAND()
1078 zend_string *s = phpdbg_compile_stackframe(gen->execute_data); in PHPDBG_COMMAND() local
1079 phpdbg_out("#%d: %.*s", i, (int) ZSTR_LEN(s), ZSTR_VAL(s)); in PHPDBG_COMMAND()
1080 zend_string_release(s); in PHPDBG_COMMAND()
/PHP-7.4/ext/spl/tests/
H A Dbug66834.phpt153 Notice: Undefined index: foo in %s on line %d
/PHP-7.4/ext/standard/tests/image/
H A Diptcembed_002.phpt21 5) various check on file2 to verify that's a valid jpeg file with our tags
/PHP-7.4/ext/opcache/
H A Dzend_accelerator_module.c35 #define STRING_NOT_NULL(s) (NULL == (s)?"":s) argument
/PHP-7.4/
H A DREADME.REDIST.BINS5 5. ext/standard crypt's blowfish implementation
151 5. ext/standard crypt's blowfish implementation
171 There's ABSOLUTELY NO WARRANTY, express or implied.
181 This implementation is mostly compatible with OpenBSD's bcrypt.c (prefix
188 There's a paper on the algorithm that explains its design decisions:
192 Some of the tricks in BF_ROUND might be inspired by Eric Young's
323 Portions of this code are based on Berkeley's uuencode/uudecode
/PHP-7.4/ext/bcmath/libbcmath/
H A DLICENSE57 author's reputation will not be affected by problems that might be
83 does Less to protect the user's freedom than the ordinary General
153 1. You may copy and distribute verbatim copies of the Library's
278 modification of the work for the customer's own use and reverse
303 copy of the library already present on the user's computer system,
479 <one line to give the library's name and a brief idea of what it
512 That's all there is to it!
/PHP-7.4/ext/standard/tests/versioning/
H A Dversion_compare.phpt32 printf("%7s %2s %-7s : %s\n", $v1, $op, $v2, $test);
/PHP-7.4/ext/standard/tests/url/
H A Dbase64_encode_basic_001.phpt20 printf("0x%X: %s\n", $i, $enc);
/PHP-7.4/ext/zlib/tests/
H A Dbug_52944_corrupted_data.inc101 'Dpo27ESN02+fUZMgRTSfem+9htU+s/qoF5nU9W/XAddz/CbSmd5ra0+znqF0UVT9KXxY/w4QPc0+QF9AnS3xT6SPwuGFoNV3a1…
/PHP-7.4/Zend/tests/
H A Dbug42819.phpt302 #0 %s(%d): foo\oops()
/PHP-7.4/docs/
H A Doutput-api.md3 Everything now resides beneath the php_output namespace, and there's an API call
/PHP-7.4/ext/ldap/tests/
H A DREADME.md22 export SLAPPASS=`slappasswd -s password`
/PHP-7.4/ext/fileinfo/
H A Dmagicdata.patch123 +>>10 string x %s
/PHP-7.4/sapi/fpm/tests/
H A Dresponse.inc206 $this->checkHeader('Content-type', '|^' . $contentType . '(;\s?charset=\w+)?|', true)
/PHP-7.4/ext/fileinfo/libmagic/
H A Dcompress.c101 unsigned char *s = CAST(unsigned char *, CAST(void *, &x)); in zlibcmp() local
105 if (s[0] != 1) /* endianness test */ in zlibcmp()
/PHP-7.4/ext/pdo_pgsql/
H A Dpgsql_statement.c406 const char *s = zend_is_true(&param->parameter) ? "t" : "f"; in pgsql_stmt_param_hook() local
409 ZVAL_STRINGL(&param->parameter, s, 1); in pgsql_stmt_param_hook()
/PHP-7.4/ext/oci8/tests/
H A Dbug43492.phpt42 global $s; // (*) Allow parent statement to be available when child is used
43 $s = ociparse($c, 'select cursor(select * from bug43492_tab) c from bug43492_tab');
44 ociexecute($s, OCI_DEFAULT);
45 ocifetchinto($s, $result, OCI_ASSOC);
58 ocifreestatement($s); // (*) Free the parent statement cleanly
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_jit_simd_inc.h775 static SLJIT_INLINE int utf_continue(sljit_u8 *s) in utf_continue() argument
778 return (*s & 0xc0) == 0x80; in utf_continue()
780 return (*s & 0xfc00) == 0xdc00; in utf_continue()
/PHP-7.4/ext/standard/tests/strings/
H A Dhtmlspecialchars.phpt327 Warning: htmlspecialchars() expects at least 1 parameter, 0 given in %s on line %d
H A Dhtmlentities24.phpt326 Warning: htmlentities() expects at least 1 parameter, 0 given in %s on line %d
/PHP-7.4/ext/mbstring/tests/
H A Dmb_internal_encoding_variation2.phpt95 string(%d) "%s"
/PHP-7.4/ext/ctype/tests/
H A Dctype_graph_variation2.phpt8 * Description: Checks for any printable character(s) except space

Completed in 133 milliseconds

1...<<241242243244245246247248249250251