Searched refs:total (Results 26 - 50 of 55) sorted by last modified time

123

/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi4965/dev/iwn/
H A Dif_iwn.c4053 misses, le32toh(miss->total));
5921 int i, total, nbant, noise; local
5923 total = nbant = 0;
5927 total += noise;
5931 return (nbant == 0) ? -127 : (total / nbant) - 107;
6443 "%s: time delta: %d; cck=%d, ofdm=%d, ht=%d, total=%d, thresh=%d\n",
6969 * Limit the total dwell time to 85% of the beacon interval.
/haiku/src/apps/processcontroller/
H A DTeamBarMenu.cpp75 double total = 0; local
92 total += item->fUser + item->fKernel;
138 total += item->fUser + item->fKernel;
155 total /= gCPUcount;
156 total = 1 - total;
162 if (total >= 0)
163 noiseItem->SetLost(total);
H A DMemoryBarMenu.cpp87 int total = 0; local
104 total += m;
151 total += m;
/haiku/src/bin/
H A Dtop.cpp129 bigtime_t total; local
178 total = entry.total_time();
179 gtotal += total;
222 total = it->total_time();
224 idletime += total;
226 gtotal += total;
234 total / 1000.0,
237 cpu_perc(total, uinterval),
H A Dlistattr.cpp242 off_t total = 0; local
288 total += attrInfo.size;
296 printf("\n%" B_PRId64 " bytes total in attributes.\n", total);
H A Dlistres.cpp93 off_t total = 0; local
126 total += size;
130 printf("\n%" B_PRIdOFF " bytes total in resources.\n", total);
/haiku/src/add-ons/translators/raw/
H A DRAW.cpp2084 int32 percent, val, total, i;
2095 for (val = 0x2000, total = 0; --val > 32;) {
2096 if ((total += fHistogram[val][c]) > percent)
/haiku/src/system/boot/platform/u-boot/arch/ppc/
H A Darch_mmu.cpp188 find_physical_memory_ranges(phys_addr_t &total) argument
200 total = 0;
240 total += regions[i].size;
270 total += regions[i].size;
294 phys_addr_t total; local
295 if (find_physical_memory_ranges(total) != B_OK) {
299 dprintf("total physical memory = %" B_PRId64 "MB\n", total / (1024 * 1024));
303 err = arch_mmu_setup_pinned_tlb_amcc440(total, tableSize, tlbSize);
H A Darch_mmu_amcc440.cpp49 suggested_page_table_size(phys_addr_t total) argument
55 if (total <= (1UL << max))
/haiku/src/system/boot/platform/openfirmware/arch/ppc/
H A Dmmu.cpp77 find_physical_memory_ranges(size_t &total) argument
85 total = 0;
125 total += regions[i].size;
155 total += regions[i].size;
313 uint32 total = 0; local
381 total += map->length;
383 dprintf("total size kept: %" B_PRIu32 "\n", total);
404 suggested_page_table_size(size_t total) argument
410 if (total <
736 size_t total; local
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/utils/
H A Dmkntfs.c510 long long bytes_written, total; local
515 total = 0LL;
528 total += bytes_written;
534 return total;
597 s64 bytes_written, total, length, delta; local
604 total = 0LL;
610 total += length;
621 if (total + length > val_len) {
623 length = val_len - total;
635 total, lengt
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DFolderConfigWindow.cpp346 uint64 used, total; local
347 if (fProtocol.GetQuota(used, total) == B_OK) {
352 string_for_size(total, totalBuffer, 128));
/haiku/src/libs/compat/freebsd_network/
H A Dfbsd_uipc_mbuf.c652 /* Check correct total mbuf length */
1508 ssize_t total; local
1513 * the total data supplied by the uio.
1516 total = min(uio->uio_resid, len);
1518 total = uio->uio_resid;
1531 m = m_getm2(NULL, max(total + align, 1), how, MT_DATA, flags);
1538 length = min(M_TRAILINGSPACE(mb), total - progress);
1551 KASSERT(progress == total, ("%s: progress != total", __func__));
1562 int error, length, total; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi3945/dev/wpi/
H A Dif_wpireg.h556 uint32_t total; member in struct:wpi_beacon_missed
H A Dif_wpi.c2248 __func__, misses, le32toh(miss->total), received,
4034 * Limit the total dwell time.
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2100/dev/ipw/
H A Dif_ipw.c2582 uint32_t total;
2590 total = count * size;
2592 if (total > *len) {
2593 *len = total;
2597 *len = total;
2598 ipw_read_mem_1(sc, addr, buf, total);
/haiku/src/add-ons/accelerants/common/
H A Dvalidate_display_mode.cpp35 uint16& total, const timing_constraints& constraints)
61 if (total < syncStart + syncLength + constraints.min_after_sync) {
62 TRACE("%s: total(%" B_PRIu16 ")"
66 __func__, total, syncStart, syncLength, constraints.min_after_sync);
67 total = syncStart + syncLength + constraints.min_after_sync;
70 if (total > constraints.max_total) {
71 TRACE("%s: total(%" B_PRIu16 ") > max_total(%" B_PRIu16 ")\n",
72 __func__, total, constraints.max_total);
73 total = constraints.max_total;
74 syncLength = min_c(syncLength, uint16(total
34 sanitize_timing(uint16& display, uint16& syncStart, uint16& syncEnd, uint16& total, const timing_constraints& constraints) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Ddevice.c210 s64 br, total; local
224 for (total = 0; count; count -= br, total += br) {
225 br = dops->pread(dev, (char*)b + total, count, pos + total);
230 if (!br || total)
231 return total;
236 return total;
261 s64 written, total, ret = -1; local
280 for (total
[all...]
/haiku/src/preferences/repositories/
H A DRepositoriesSettings.cpp62 int32 index, total = 0; local
71 total++;
75 repoCount = total;
/haiku/src/bin/bfs_tools/lib/
H A DBPlusTree.cpp817 int32 total = bytesBefore + bytesAfter; local
827 total = inKeyLengths[in++];
845 inKeyLengths[in] -= total;
858 //printf("-> out = %ld, keylen = %ld, %ld bytes total\n",out,bytesBefore,round_up(sizeof(bplustree_node) + bytesBefore + bytesAfter + bytes) +
864 //printf("bytes = (%ld, %ld, %ld), in = %ld, total = %ld\n",bytesBefore,bytes,bytesAfter,in,total);
867 bytesAfter = inKeyLengths[in] - bytesBefore - total;
869 bytesBefore = node->all_key_length - total;
871 //printf("bytes = (%ld, %ld, %ld), in = %ld, total = %ld\n",bytesBefore,bytes,bytesAfter,in,total);
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DProtocol.cpp230 Protocol::GetQuota(uint64& used, uint64& total) argument
241 total = quotaCommand.TotalStorage();
H A DProtocol.h76 status_t GetQuota(uint64& used, uint64& total);
/haiku/src/apps/packageinstaller/
H A DPackageInstall.cpp113 get_item_progress_string(uint32 index, uint32 total) argument
115 BString label(B_TRANSLATE("%index% of %total%"));
119 totalString << total; local
121 label.ReplaceAll("%total%", totalString);
/haiku/src/tests/add-ons/print/transports/
H A Dmain.cpp157 ssize_t total = 0; local
166 total += sz;
168 printf("%ld data bytes sent.\n", total);
/haiku/src/system/libroot/posix/glibc/locale/
H A Dgen-translit.pl60 $total = 0;
71 printf("%4d", $total);
72 $total += $fromlens[$cnt] + 1;
102 $total = 0;
113 printf("%4d", $total);
114 $total += $tolens[$cnt] + 2;

Completed in 175 milliseconds

123