Home
last modified time | relevance | path

Searched refs:compare (Results 126 – 150 of 152) sorted by path

1234567

/PHP-7.4/ext/standard/tests/file/
H A Dstat_basic-win32.phpt44 // numeric and named keys, compare them to see they are same
53 // compare the two stat values, initial stat and stat recorded after
H A Dstat_variation1-win32-mb.phpt42 // compare the self stat
46 // compare the two stats
61 // compare self stats
65 // compare the two stats
H A Dstat_variation1-win32.phpt42 // compare the self stat
46 // compare the two stats
61 // compare self stats
65 // compare the two stats
H A Dstat_variation2-win32.phpt41 // compare self stats
44 // compare the stats
H A Dstat_variation3-win32.phpt39 // compare self stats
42 // compare the stats
54 // compare self stats
56 // compare the stats
H A Dstat_variation4-win32.phpt43 // compare self stats
46 // compare the stat
61 // compare self stats
64 // compare the stat
H A Dstat_variation5-win32.phpt40 // compare self stats
43 // compare the stat
H A Dstat_variation6-win32.phpt41 // compare self stats
44 // compare the stat
58 // compare self stats
61 // compare the stat
H A Dstat_variation8-win32.phpt50 // compare self stats
54 // compare the stat
H A Duserstreams.phpt66 /* store the data in a regular file so that we can compare
230 /* we compare the results of fgets using differing line lengths to
237 /* now compare the real stream with the user stream */
/PHP-7.4/ext/standard/tests/strings/
H A Dstrncasecmp_variation2.phpt20 /* loop through to compare each string with the other string */
H A Dstrncasecmp_variation3.phpt17 /* loop through to compare the strings, for various length values */
H A Dstrncasecmp_variation8.phpt19 /* loop through to compare each string with the other string */
H A Dstrncasecmp_variation9.phpt67 /* loop through to compare the strings */
H A Dstrncmp_variation2.phpt20 /* loop through to compare each string with the other string */
H A Dstrncmp_variation3.phpt17 /* loop through to compare the strings, for various length values */
H A Dstrncmp_variation8.phpt19 /* loop through to compare each string with the other string */
H A Dstrncmp_variation9.phpt47 /* loop through to compare each string with the other string */
/PHP-7.4/ext/standard/tests/versioning/
H A Dversion_compare.phpt38 $compare = version_compare($v1, $v2);
39 switch ($compare) {
/PHP-7.4/ext/standard/
H A Dversioning.c129 int compare = 0; in php_version_compare() local
173 if (compare != 0) { in php_version_compare()
183 if (compare == 0) { in php_version_compare()
186 compare = 1; in php_version_compare()
192 compare = -1; in php_version_compare()
200 return compare; in php_version_compare()
211 int compare; in PHP_FUNCTION() local
222 RETURN_LONG(compare); in PHP_FUNCTION()
228 RETURN_BOOL(compare != 1); in PHP_FUNCTION()
231 RETURN_BOOL(compare == 1); in PHP_FUNCTION()
[all …]
/PHP-7.4/main/
H A Dphp_scandir.c54 …dirent **namelist[], int (*selector) (const struct dirent *entry), int (*compare) (const struct di… in php_scandir()
107 if (compare) { in php_scandir()
108 …qsort (*namelist, nfiles, sizeof(struct dirent *), (int (*) (const void *, const void *)) compare); in php_scandir()
H A Dphp_scandir.h39 …dirent **namelist[], int (*selector) (const struct dirent *entry), int (*compare) (const struct di…
H A Dphp_streams.h371 int (*compare) (const zend_string **a, const zend_string **b));
372 …am_scandir(dirname, namelist, context, compare) _php_stream_scandir((dirname), (namelist), 0, (con… argument
/PHP-7.4/main/streams/
H A Dstreams.c2338 int (*compare) (const zend_string **a, const zend_string **b))
2385 if (nfiles > 0 && compare) {
2386 qsort(*namelist, nfiles, sizeof(zend_string *), (int(*)(const void *, const void *))compare);
/PHP-7.4/tests/lang/
H A Dcompare_objects_basic1.phpt2 Test standard 'compare' object handler
6 echo "Simple test for standard compare object handler\n";
26 // Define a bunch of objects all of which will use standard compare object handler
33 echo "\n-- The following compare should return TRUE --\n";
47 Simple test for standard compare object handler
49 -- The following compare should return TRUE --

Completed in 69 milliseconds

1234567