/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/pid/ |
H A D | tst.fork.c | 40 int i, j, total = 0; local 44 total += i * j; 48 return (total);
|
H A D | tst.vfork.c | 40 int i, j, total = 0; local 44 total += i * j; 48 return (total);
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/end/ |
H A D | err.D_IDENT_UNDEF.timespent.d | 42 total = timestamp - start;
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/buffering/ |
H A D | tst.cputime.ksh | 35 uint64_t total; 53 total += vtimestamp - self->on; 63 /((total * 100) / (timestamp - start)) > thresh/ 66 \$\$1, ((total * 100) / (timestamp - start)));
|
/vbox/src/VBox/Devices/PC/ipxe/src/tests/ |
H A D | test.c | 54 current_tests->total++; 90 tests->name, tests->failures, tests->total ); 98 tests->name, tests->total ); 111 unsigned int total = 0; local 120 total += tests->total; 126 failures, total ); 133 printf ( "OK: all %d tests passed\n", total );
|
/vbox/src/VBox/Devices/PC/ipxe/src/util/ |
H A D | diffsize.pl | 72 my($text, $data, $bss, $total, $hex, $name) = split; 76 next if $total =~ /[a-z]/ or $name =~ /TOTALS/; 82 $Sizes{$name}{$id} = $total; 92 my $total = 0; 99 $total += $diff; 101 printf " TOTAL: %+d\n", $total;
|
/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | monojob.c | 66 unsigned long total; local 92 total = ( progress.total / 128 ); 93 if ( total ) { 94 percentage = ( ( 100 * completed ) / total );
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | job.h | 19 * divded by @total should give something which approximately 26 * See @c completed. A zero value means "total size unknown" 28 * account before calculating @c completed/total. 30 unsigned long total; member in struct:job_progress
|
H A D | test.h | 21 unsigned int total; member in struct:self_test
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | fsync.c | 68 PRIntervalTime time, total = 0, shortest = 0x7fffffff, longest = 0; local 123 total += time; 133 total = total / iterations; 138 PR_IntervalToMicroseconds(total),
|
/vbox/src/VBox/Main/src-server/os2/ |
H A D | PerformanceOs2.cpp | 29 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 50 int CollectorOS2::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument
|
/vbox/src/VBox/Devices/PC/BIOS/ |
H A D | smidmi.inc | 61 db 0, 0, 0, 0, 0 ; 16 bytes total 70 db 0 ; Just for alignment (16 bytes total)
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/ |
H A D | fread.c | 61 size_t total; local 81 total = resid; 92 return ((total - resid) / size);
|
/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/ |
H A D | Inflater.cs | 60 int total = count; 64 while (err >= 0 && inputIndex < total) 66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));
|
H A D | Deflater.cs | 60 int total = count; 64 while (err >= 0 && inputIndex < total) 66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));
|
/vbox/src/VBox/Main/src-server/darwin/ |
H A D | PerformanceDarwin.cpp | 38 uint64_t pti_total_user; /* total time */ 64 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 65 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total); 116 int CollectorDarwin::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 123 *total = totalRAM; 125 *used = *total - *available; 148 int CollectorDarwin::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total) argument 161 *total = mach_absolute_time();
|
/vbox/src/libs/xpcom18a4/xpcom/tools/ |
H A D | analyze-xpcom-log.pl | 171 my $total = 0; 174 $total += $hash{$key}; 176 return $total;
|
/vbox/src/libs/xpcom18a4/xpcom/tests/StringFactoringTests/ |
H A D | profile_main.cpp | 110 int total = 0; local 114 total += foo( someCString ); 121 int total = 0; local 125 total += foo( nsCString() ); 132 int total = 0; local 136 total += foo( nsCString("This is a reasonable length string with some text in it and it is good.") ); 265 PRUint32 total = 0; local 269 total += s1.CountChar('e');
|
/vbox/src/VBox/Main/src-server/win/ |
H A D | PerformanceWin.cpp | 60 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 65 virtual int getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total); 130 uint64_t user, kernel, idle, total; local 134 total = user + kernel + idle; 170 vmStats.cpuTotal = total; 298 int CollectorWin::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 305 *total = totalRAM; 307 *used = *total - *available; 317 int CollectorWin::getRawProcessCpuLoad(RTPROCESS process, uint64_t *user, uint64_t *kernel, uint64_t *total) argument 328 *total [all...] |
/vbox/src/VBox/Main/src-server/freebsd/ |
H A D | PerformanceFreeBSD.cpp | 29 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 59 int CollectorFreeBSD::getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available) argument 92 *total = cbMemPhys / _1K;
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/ustack/ |
H A D | tst.spin.ksh | 54 @total = count(); 85 printa("TOTAL %@u\n", @total);
|
/vbox/src/libs/zlib-1.2.6/ |
H A D | inflate.h | 89 unsigned long total; /* protected copy of output count */ member in struct:inflate_state
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/cmd/scripts/ |
H A D | dtest.pl | 241 my($total) = 0; 520 $total = scalar(@files); 522 $passed = ($total - $failed - $bypassed); 527 "total" => $total 693 my $total = $results{$key}{"total"}; 701 logmsg(" total: " . $total . "\n");
|
/vbox/src/libs/xpcom18a4/xpcom/tests/ |
H A D | TestPipes.cpp | 140 PRUint32 total = 0; 156 total += writeCount; 165 printf("wrote %d bytes, time = %dms\n", total, 167 NS_ASSERTION(receiver->GetBytesRead() == total, "didn't read everything"); 185 PRUint32 total = 0; local 201 total += count; 203 printf("read %d bytes\n", total); 253 PRUint32 total = 0; 263 total += writeCount; 278 printf("wrote %d bytes\n", total); [all...] |
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/ |
H A D | dt_strtab.c | 277 ssize_t res, total = 0; local 281 for (i = 0; i < sp->str_nbufs; i++, total += res) { 287 if ((res = func(sp->str_bufs[i], n, total, private)) <= 0) 291 if (total == 0 && sp->str_size != 0) 294 return (total);
|