| /onnv/onnv-gate/usr/src/cmd/csh/ |
| wait3.c | 81 clock_t diffs; /* difference in systemtime (ticks) */ local 93 diffs = after_tms.tms_cstime - before_tms.tms_cstime; 96 rp->ru_stime.tv_sec = diffs/HZ; 97 rp->ru_stime.tv_usec = ((diffs % HZ) * 1000000) / HZ;
|
| /onnv/onnv-gate/usr/src/ucblib/libucb/port/sys/ |
| wait4.c | 113 clock_t diffs; /* difference in systemtime (ticks) */ local 125 diffs = after_tms.tms_cstime - before_tms.tms_cstime; 128 rp->ru_stime.tv_sec = diffs/ HZ; 129 rp->ru_stime.tv_usec = (diffs % HZ) * (1000000 / HZ);
|
| /onnv/onnv-gate/usr/src/lib/libbsm/common/ |
| audit_crontab.c | 55 char *diffs = NULL; local 68 r = audit_crontab_get_diffs(path, tmp_path, &diffs); 73 if (diffs != NULL && r != AUDIT_GET_DIFFS_ERR) { 74 aug_save_text(diffs); 75 free(diffs); 80 if (diffs == NULL)
|
| /onnv/onnv-gate/usr/src/lib/libc/port/gen/ |
| waitpid.c | 159 clock_t diffs; /* difference in systemtime (ticks) */ local 172 diffs = after_tms.tms_cstime - before_tms.tms_cstime; 176 rp->ru_stime.tv_sec = diffs / hz; 177 rp->ru_stime.tv_usec = (diffs % hz) * (1000000 / hz);
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/pod/ |
| testcmp.pl | 61 my ($line, $diffs) = (0, 0); 68 $diffs = (ref $cmplines) ? &$cmplines($f1text, $f2text) 70 last if $diffs; 75 $diffs = 1 if (defined($f1text) or defined($f2text)); 88 return $diffs;
|
| /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/common/ |
| wait.c | 214 long diffs; /* difference in systemtime (ticks) */ local 226 diffs = after_tms.tms_cstime - before_tms.tms_cstime; 229 rp->ru_stime.tv_sec = diffs / HZ; 230 rp->ru_stime.tv_usec = (diffs % HZ) * (1000000 / HZ);
|
| /onnv/onnv-gate/usr/src/tools/scripts/ |
| wsdiff.py | 68 # -v Do not truncate observed diffs in results 69 # -V Log *all* ELF sect diffs vs. logging the first diff found 78 # Human readable diffs truncated by default if longer than this 135 def difference(f, dtype, diffs) : 143 log_difference(f, dtype, diffs) 148 def log_difference(f, dtype, diffs) : 153 difflen = len(diffs) 158 print >> log, diffs[:diffs_sz_thresh] 163 print >> log, diffs 173 # Return human readable diffs from two temporary file [all...] |
| webrev.sh | 641 diff -b $1 $2 > /tmp/$$.diffs 648 # Now we have the diffs, generate the HTML for the old file. 727 ' /tmp/$$.diffs > /tmp/$$.file1 809 ' /tmp/$$.diffs > /tmp/$$.file2 1286 Use 'j' and 'k' for next and previous diffs; or use buttons [all...] |
| wx.sh | 569 # Get output of putback -n (useful for parsing to find diffs between 577 Doing a '$PUTBACK -n $*' to find diffs between workspaces. 613 renamed lists with all diffs between parent 673 $ME diffs [file ...] 674 show sccs diffs for files (current vs previous 675 local version). Will show diffs for all active 681 Similar to diffs but new files are also displayed. 684 $ME pdiffs [file ...] show diffs against parent files 685 Will show diffs between local file and it's 690 $ME tpdiffs [file ...] show diffs against parent file [all...] |
| /onnv/onnv-gate/usr/src/tools/ |
| README.tools | 283 Display the history, comments and diffs, of a file under SCCS 314 Generates a set of HTML pages that show side-by-side diffs of
|
| /onnv/onnv-gate/usr/src/tools/onbld/hgext/ |
| cdm.py | 28 Show diffs relative to parent workspace - pdiffs 185 '''list workspace diffs relative to parent workspace 192 diffs = wslist[repo].pdiff(pats, opts, parent=parent) 193 if diffs: 194 ui.write(diffs) [all...] |