Home
last modified time | relevance | path

Searched refs:s0 (Results 1 – 10 of 10) sorted by relevance

/PHP-7.2/Zend/
H A Dzend_long.h68 # define ZEND_STRTOL(s0, s1, base) _strtoi64((s0), (s1), (base)) argument
69 # define ZEND_STRTOUL(s0, s1, base) _strtoui64((s0), (s1), (base)) argument
80 # define ZEND_STRTOL(s0, s1, base) strtoll((s0), (s1), (base)) argument
81 # define ZEND_STRTOUL(s0, s1, base) strtoull((s0), (s1), (base)) argument
87 # define ZEND_STRTOL(s0, s1, base) strtol((s0), (s1), (base)) argument
88 # define ZEND_STRTOUL(s0, s1, base) strtoul((s0), (s1), (base)) argument
H A Dzend_strtod.c1855 s0 += havedig;
1856 s = s0;
1882 s0 = s;
1978 n = s1 - s0 - 1;
1988 while(s1 > s0) {
2325 (rv, s0, bc) in bigcomp() argument
2614 s0 = s;
2654 s0 = s;
3764 char *s, *s0; local
4083 s = s0;
[all …]
/PHP-7.2/ext/fileinfo/
H A Dconfig.m424 char *s0, *s1, *ret;
26 s0 = (char *) malloc(42);
29 memset(s0, 'X', 42);
30 s0[24] = 'Y';
31 s0[26] = 'Z';
32 s0[41] = '\0';
38 ret = strcasestr(s0, s1);
/PHP-7.2/ext/sockets/tests/
H A Dsocket_export_stream-1.phpt14 $s0 = reset($s);
17 $stream = socket_export_stream($s0);
H A Dsocket_import_stream-1.phpt14 $s0 = reset($s);
17 $sock = socket_import_stream($s0);
/PHP-7.2/ext/oci8/tests/
H A Dcoll_016_func.phpt43 Warning: oci_collection_element_assign(): OCI-22165: given index [%d] must be in the range of%s0%st…
46 Warning: oci_collection_element_assign(): OCI-22165: given index [5000] must be in the range of%s0%…
/PHP-7.2/ext/intl/tests/
H A Dtimezone_fromDateTimeZone_basic.phpt39 string(%d) "GMT+03%s0"
/PHP-7.2/ext/standard/tests/strings/
H A Dstrval_variation2.phpt12 $s0 = "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f";
29 echo bin2hex(strval($s0));
H A Dchunk_split_variation3.phpt113 string(40) "This0.5 is 0.5simp0.5le s0.5trin0.5g.0.5"
/PHP-7.2/ext/fileinfo/libmagic/
H A Dapprentice.c3295 unsigned int s3, s2, s1, s0; local
3302 s0 = s[0];
3304 len = (s1 << 8) | s0;
3307 s0 = s[0];
3309 len = (s0 << 8) | s1;
3312 s0 = s[0];
3316 len = (s3 << 24) | (s2 << 16) | (s1 << 8) | s0;
3319 s0 = s[0];
3323 len = (s0 << 24) | (s1 << 16) | (s2 << 8) | s3;

Completed in 30 milliseconds