| /PHP_5_3/Zend/ |
| H A D | zend_strtod.c | 917 static Bigint * diff(Bigint *a, Bigint *b) function 1935 delta = diff(S, mhi); 2376 delta = diff(bb, bd);
|
| H A D | zend_language_scanner.c | 270 size_t diff = (char*)file_handle->handle.stream.handle - (char*)file_handle; local 271 fh->handle.stream.handle = (void*)(((char*)fh) + diff);
|
| /PHP_5_3/ext/bcmath/libbcmath/src/ |
| H A D | doaddsub.c | 143 bc_num diff; local 154 diff = bc_new_num (diff_len, MAX(diff_scale, scale_min)); 159 diffptr = (char *) (diff->n_value + diff_len + diff_scale); 167 diffptr = (char *) (diff->n_value + diff_len + diff_scale -1); 229 _bc_rm_leading_zeros (diff); 230 return diff;
|
| H A D | sqrt.c | 49 bc_num guess, guess1, point5, diff; local 76 bc_init_num(&diff TSRMLS_CC); 110 bc_sub (guess, guess1, &diff, cscale+1); 111 if (bc_is_near_zero (diff, cscale)) 126 bc_free_num (&diff);
|
| H A D | sub.c | 51 bc_num diff = NULL; local 57 diff = _bc_do_add (n1, n2, scale_min); 58 diff->n_sign = n1->n_sign; 69 diff = _bc_do_sub (n2, n1, scale_min); 70 diff->n_sign = (n2->n_sign == PLUS ? MINUS : PLUS); 75 diff = bc_new_num (1, res_scale); 76 memset (diff->n_value, 0, res_scale+1); 80 diff = _bc_do_sub (n1, n2, scale_min); 81 diff->n_sign = n1->n_sign; 88 *result = diff; [all...] |
| /PHP_5_3/ext/pcre/ |
| H A D | upgrade-pcre.php | 95 $diff = array_diff($dirorig, $dirnew); variable 97 foreach ($diff as $file) {
|
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 126181 float diff = FABS(right-left); local 126506 float diff = local [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | crypt_blowfish.c | 553 BF_word safety, sign, diff, tmp[2]; local 592 sign = diff = 0; 614 diff |= tmp[0] ^ tmp[1]; /* Non-zero on any differences */ 621 * At this point, "diff" is zero iff the correct and buggy algorithms produced 629 diff |= diff >> 16; /* still zero iff exact match */ 630 diff &= 0xffff; /* ditto */ 631 diff += 0xffff; /* bit 16 set iff "diff" was non-zero (on non-match) */ 633 sign &= ~diff [all...] |
| /PHP_5_3/ext/xmlrpc/libxmlrpc/ |
| H A D | encodings.c | 84 int diff = out_ptr - outbuf; local 91 out_ptr = outbuf + diff;
|
| /PHP_5_3/ |
| H A D | run-tests.php | 367 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['diff']), FILE_BINARY); 473 $cfgfiles = array('skip', 'php', 'clean', 'out', 'diff', 'exp'); 717 --show-[all|php|skip|clean|exp|diff|out] 720 'exp' or the difference between them 'diff'. The result types 721 get written independent of the log format, however 'diff' only 1304 'diff' => '', 1355 $diff_filename = $temp_dir . DIRECTORY_SEPARATOR . $main_file_name . 'diff'; 1386 'diff' => $diff_filename, 1581 'diff' => '', 1599 'diff' 2050 $diff = generate_diff($wanted, $wanted_re, $output); variable 2052 $diff = "# original source file: $shortname\\n" . $diff; variable 2097 $diff = empty($diff) ? '' : "<![CDATA[\\n " . preg_replace('/\\e/', '<esc>', $diff) . "\\n]]>"; variable 2159 $diff = array(); variable 2227 $diff = generate_array_diff($r, $o, !is_null($wanted_re), $w); variable 2564 $diff = "<a href='$url'>diff</a>"; variable 2566 $diff = " "; variable [all...] |
| H A D | server-tests.php | 135 $diff = array_merge($w2, $o2); variable 136 ksort($diff); 137 return implode("\r\n", $diff); 987 $failed_tests_data .= $sep . file_get_contents(realpath($test_info['diff'])); 1256 @unlink(ereg_replace('\.phpt$','.diff',$file)); 1493 'diff' => ereg_replace('\.phpt$','.diff', $file) 1511 // write .diff 1513 $logname = ereg_replace('\.phpt$','.diff',$file);
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd.c | 355 float diff; local 369 diff = 0.0f; /* Undefined hues always match... */ 371 diff = fabsf(HWB1.H - HWB2.H); 372 if (diff > 3.0f) { 373 diff = 6.0f - diff; /* Remember, it's a colour circle */ 377 diff = diff * diff + (HWB1.W - HWB2.W) * (HWB1.W - HWB2.W) + (HWB1.B - HWB2.B) * (HWB1.B - HWB2.B); 379 return diff; [all...] |
| /PHP_5_3/ext/date/ |
| H A D | php_date.h | 136 timelib_rel_time *diff; member in struct:_php_interval_obj
|