Home
last modified time | relevance | path

Searched refs:diff (Results 26 – 50 of 163) sorted by relevance

1234567

/PHP-7.4/scripts/dev/
H A Dbless_tests.php101 $diff = $differ->diff($oldExpectLines, $outLines);
104 foreach ($diff as $elem) {
170 public function diff(array $old, array $new) { function in Differ
/PHP-7.4/ext/standard/
H A Dcrypt_blowfish.c556 BF_word safety, sign, diff, tmp[2]; in BF_set_key() local
596 sign = diff = 0; in BF_set_key()
618 diff |= tmp[0] ^ tmp[1]; /* Non-zero on any differences */ in BF_set_key()
633 diff |= diff >> 16; /* still zero iff exact match */ in BF_set_key()
634 diff &= 0xffff; /* ditto */ in BF_set_key()
635 diff += 0xffff; /* bit 16 set iff "diff" was non-zero (on non-match) */ in BF_set_key()
637 sign &= ~diff & safety; /* action needed? */ in BF_set_key()
H A Dhead.c136 double diff; in php_setcookie() local
152 diff = difftime(expires, php_time()); in php_setcookie()
153 if (diff < 0) { in php_setcookie()
154 diff = 0; in php_setcookie()
158 smart_str_append_long(&buf, (zend_long) diff); in php_setcookie()
/PHP-7.4/ext/date/tests/
H A DDateTime_diff-absolute.phpt2 DateTime::diff() -- absolute
H A DDateTime_diff-massive.phpt2 DateTime::diff() -- massive
H A Dbug69587.phpt7 $interval = $datetime1->diff($datetime2);
H A DDateInterval_format_a.phpt18 $interval = $date1->diff($date2);
H A DDateTime_days-dates.phpt2 DateTime::diff() days -- dates
H A DDateInterval_format.phpt18 $interval = $date1->diff($date2);
38 $interval = $date2->diff($date1);
H A Ddate_default_timezone_set-1.phpt5 if (substr(PHP_OS, 0, 3) == 'WIN') die('skip diff TZ detection on windows.');
H A DDateTime_days-spring-type3-type3.phpt2 DateTime::diff() days -- spring type3 type3
H A DDateTime_days-spring-type2-type2.phpt2 DateTime::diff() days -- spring type2 type2
H A DDateTime_days-spring-type2-type3.phpt2 DateTime::diff() days -- spring type2 type3
H A DDateTime_days-spring-type3-type2.phpt2 DateTime::diff() days -- spring type3 type2
H A Dbug74639.phpt8 $interval = $start->diff($end);
/PHP-7.4/ext/fileinfo/
H A Dgenerate_patch.sh8 diff -u libmagic.orig libmagic | grep -v '^Only in' > libmagic.patch
/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitNativeARM_T2_32.c242 sljit_sw diff; in detect_jump_type() local
260 if (diff <= 127 && diff >= -128) { in detect_jump_type()
264 if (diff <= 524287 && diff >= -524288) { in detect_jump_type()
269 diff--; in detect_jump_type()
270 if (diff <= 8388607 && diff >= -8388608) { in detect_jump_type()
276 if (diff <= 8388607 && diff >= -8388608) { in detect_jump_type()
282 if (diff <= 1023 && diff >= -1024) { in detect_jump_type()
286 if (diff <= 8388607 && diff >= -8388608) { in detect_jump_type()
327 jump_inst[1] = 0x8000 | COPY_BITS(diff, 17, 13, 1) | COPY_BITS(diff, 18, 11, 1) | (diff & 0x7ff); in set_jump_instruction()
332 diff--; in set_jump_instruction()
[all …]
/PHP-7.4/ext/standard/tests/array/
H A Darray_intersect_assoc_variation6.phpt2 Test array_intersect_assoc() function : usage variations - assoc array with diff keys for 'arr2' ar…
17 echo "*** Testing array_intersect_assoc() : assoc array with diff keys to \$arr2 argument ***\n";
83 *** Testing array_intersect_assoc() : assoc array with diff keys to $arr2 argument ***
H A Darray_intersect_variation6.phpt2 Test array_intersect() function : usage variations - assoc array with diff keys for 'arr2' argument
16 echo "*** Testing array_intersect() : assoc array with diff keys to \$arr2 argument ***\n";
80 *** Testing array_intersect() : assoc array with diff keys to $arr2 argument ***
H A Darray_map_variation7.phpt19 echo "*** Testing array_map() : arrays with diff. size ***\n";
36 *** Testing array_map() : arrays with diff. size ***
H A Darray_map_variation13.phpt15 echo "*** Testing array_map() : callback with diff return value ***\n";
58 *** Testing array_map() : callback with diff return value ***
H A Darray_intersect_assoc_variation5.phpt2 Test array_intersect_assoc() function : usage variations - assoc array with diff keys for 'arr1' ar…
17 echo "*** Testing array_intersect_assoc() : assoc array with diff keys to \$arr1 argument ***\n";
83 *** Testing array_intersect_assoc() : assoc array with diff keys to $arr1 argument ***
H A Darray_intersect_variation5.phpt2 Test array_intersect() function : usage variations - assoc array with diff keys for 'arr1' argument
16 echo "*** Testing array_intersect() : assoc array with diff keys to \$arr1 argument ***\n";
80 *** Testing array_intersect() : assoc array with diff keys to $arr1 argument ***
/PHP-7.4/ext/skeleton/
H A D.gitignore.in30 tests/*/*.diff
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_jit_neon_inc.h113 const sljit_u32 diff = IN_UCHARS(offs1 - offs2); in FF_FUN() local
182 sljit_u8 *p1 = str_ptr - diff; in FF_FUN()
211 data2 = VLD1Q(str_ptr - diff); in FF_FUN()
284 data2 = VLD1Q(str_ptr - diff); in FF_FUN()

Completed in 41 milliseconds

1234567