Home
last modified time | relevance | path

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

12345678

/PHP-7.2/tests/classes/
H A Dbug65768.phpt12 $diff1 = $dt1->diff($dti1);
16 $diff2 = $dti1->diff($dti2);
/PHP-7.2/ext/standard/
H A Dhead.c141 double diff; in php_setcookie() local
157 diff = difftime(expires, php_time()); in php_setcookie()
158 if (diff < 0) { in php_setcookie()
159 diff = 0; in php_setcookie()
161 snprintf(tsdelta, sizeof(tsdelta), ZEND_LONG_FMT, (zend_long) diff); in php_setcookie()
H A Dcrypt_blowfish.c557 BF_word safety, sign, diff, tmp[2]; in BF_set_key() local
597 sign = diff = 0; in BF_set_key()
619 diff |= tmp[0] ^ tmp[1]; /* Non-zero on any differences */ in BF_set_key()
634 diff |= diff >> 16; /* still zero iff exact match */ in BF_set_key()
635 diff &= 0xffff; /* ditto */ in BF_set_key()
636 diff += 0xffff; /* bit 16 set iff "diff" was non-zero (on non-match) */ in BF_set_key()
638 sign &= ~diff & safety; /* action needed? */ in BF_set_key()
/PHP-7.2/ext/fileinfo/
H A Dmagicdata.patch1 diff --git a/magic/Magdir/rpm b/magic/Magdir/rpm
13 diff --git a/magic/Magdir/securitycerts b/magic/Magdir/securitycerts
39 diff --git a/magic/Magdir/commands b/magic/Magdir/commands
52 diff --git a/magic/Magdir/images b/magic/Magdir/images
105 diff --git a/magic/Magdir/python b/magic/Magdir/python
137 diff --git a/magic/Magdir/dump b/magic/Magdir/dump
166 diff --git a/magic/Magdir/images b/magic/Magdir/images
192 diff --git a/magic/Magdir/images b/magic/Magdir/images
/PHP-7.2/ext/date/tests/
H A DDateTime_days-absolute.phpt2 DateTime::diff() days -- absolute
H A DDateTime_days-massive.phpt2 DateTime::diff() days -- massive
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 DDateInterval_format.phpt18 $interval = $date1->diff($date2);
38 $interval = $date2->diff($date1);
H A DDateTime_days-dates.phpt2 DateTime::diff() days -- dates
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-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
/PHP-7.2/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_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 ***
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 Dshuffle_variation3.phpt2 Test shuffle() function : usage variation - arrays with diff types of values
15 echo "*** Testing shuffle() : arrays with diff types of values ***\n";
65 *** Testing shuffle() : arrays with diff types of values ***
/PHP-7.2/ext/pcre/pcrelib/sljit/
H A DsljitNativePPC_common.c255 sljit_sw diff; in detect_jump_type() local
283 if (diff <= 0x7fff && diff >= -0x8000) { in detect_jump_type()
296 if (diff <= 0x01ffffff && diff >= -0x02000000) { in detect_jump_type()
936 sljit_sw diff; in can_cache() local
959 diff = argw - next_argw; in can_cache()
961 return diff <= SIMM_MAX && diff >= SIMM_MIN; in can_cache()
963 if (arg == next_arg && diff <= SIMM_MAX && diff >= SIMM_MIN) in can_cache()
987 sljit_sw diff; in getput_arg() local
1073 if ((next_arg & SLJIT_MEM) && diff <= SIMM_MAX && diff >= SIMM_MIN) { in getput_arg()
1086 if (compiler->cache_arg == arg && diff <= SIMM_MAX && diff >= SIMM_MIN) { in getput_arg()
[all …]
H A DsljitNativeARM_64.c157 sljit_sw diff; in detect_jump_type() local
176 if (diff <= 0xfffff && diff >= -0x100000) { in detect_jump_type()
185 if (diff <= 0x7ffffff && diff >= -0x8000000) { in detect_jump_type()
922 sljit_sw diff; in can_cache() local
928 if (diff <= 0xfff && diff >= -0xfff) in can_cache()
937 if (arg == next_arg && diff <= 0xfff && diff >= -0xfff) in can_cache()
949 sljit_sw diff; in getput_arg() local
1019 if (diff <= 255 && diff >= -256) in getput_arg()
1029 next_arg = (arg & REG_MASK) && (arg == next_arg) && diff <= 0xfff && diff >= -0xfff && diff != 0; in getput_arg()
1592 sljit_sw diff; in emit_fop_mem() local
[all …]

Completed in 105 milliseconds

12345678