| /f-stack/freebsd/crypto/aesni/ |
| H A D | aesni_wrap.c | 60 __m128i tot, ivreg; in aesni_encrypt_cbc() local 68 ivreg = tot; in aesni_encrypt_cbc() 69 _mm_storeu_si128((__m128i *)to, tot); in aesni_encrypt_cbc() 113 __m128i tot; in aesni_encrypt_ecb() local 142 _mm_storeu_si128((__m128i *)to, tot); in aesni_encrypt_ecb() 152 __m128i tot; in aesni_decrypt_ecb() local 181 _mm_storeu_si128((__m128i *)to, tot); in aesni_decrypt_ecb() 209 __m128i tot; in aesni_encrypt_icm() local 269 tot = tot ^ _mm_loadu_si128((const __m128i *)from); in aesni_encrypt_icm() 270 _mm_storeu_si128((__m128i *)to, tot); in aesni_encrypt_icm() [all …]
|
| /f-stack/freebsd/vm/ |
| H A D | vm_dumpset.h | 81 int i, tot; in vm_page_dump_index_to_pa() local 84 tot = howmany(dump_avail[i + 1], PAGE_SIZE) - in vm_page_dump_index_to_pa() 86 if (bit < tot) in vm_page_dump_index_to_pa() 89 bit -= tot; in vm_page_dump_index_to_pa()
|
| /f-stack/tools/libutil/ |
| H A D | login_cap.c | 539 rlim_t tot; in login_getcaptime() local 568 tot = 0; in login_getcaptime() 607 tot += rmultiply(tim, mult); in login_getcaptime() 612 return tot; in login_getcaptime() 682 rlim_t tot; in login_getcapsize() local 698 tot = 0; in login_getcapsize() 734 tot += rmultiply(siz, mult); in login_getcapsize() 739 return tot; in login_getcapsize()
|
| /f-stack/freebsd/i386/i386/ |
| H A D | bios.c | 450 size_t i, off, len, tot; in bios_oem_strings() local 468 tot = sig->totlen; in bios_oem_strings() 480 if (idx + tot > maxlen - 1) { in bios_oem_strings() 483 str, idx, tot, idx+tot, maxlen-1); in bios_oem_strings() 500 for (i=0; i<tot; i++) { in bios_oem_strings()
|
| /f-stack/freebsd/crypto/armv8/ |
| H A D | armv8_crypto_wrap.c | 99 uint8x16_t tot, ivreg, tmp; in armv8_aes_encrypt_cbc() local 106 tot = armv8_aes_enc(key->aes_rounds - 1, in armv8_aes_encrypt_cbc() 108 ivreg = tot; in armv8_aes_encrypt_cbc() 109 vst1q_u8(to, tot); in armv8_aes_encrypt_cbc()
|
| /f-stack/tools/ngctl/ |
| H A D | main.c | 644 int tot, len, done; local 650 tot = snprintf(buf, 653 done = len == tot;
|
| /f-stack/freebsd/contrib/openzfs/cmd/raidz_test/ |
| H A D | raidz_test.c | 378 uint64_t q, r, bc, devidx, asize = 0, tot; in vdev_raidz_map_alloc_expanded() local 400 tot = s + nparity * (q + (r == 0 ? 0 : 1)); in vdev_raidz_map_alloc_expanded() 403 uint64_t rows = howmany(tot, logical_cols); in vdev_raidz_map_alloc_expanded() 404 int cols = MIN(tot, logical_cols); in vdev_raidz_map_alloc_expanded() 535 ASSERT3U(asize, ==, tot << ashift); in vdev_raidz_map_alloc_expanded()
|
| /f-stack/freebsd/kern/ |
| H A D | kern_umtx.c | 323 u_int fract, i, j, tot, whole; in sysctl_debug_umtx_chains_peaks() local 330 tot = 0; in sysctl_debug_umtx_chains_peaks() 334 tot += uc->max_length; in sysctl_debug_umtx_chains_peaks() 337 if (tot == 0) in sysctl_debug_umtx_chains_peaks() 348 fract = (whole % tot) * 100; in sysctl_debug_umtx_chains_peaks() 376 sbuf_printf(&sb, "1st: %u.%u%% idx: %u\n", sw0 / tot, in sysctl_debug_umtx_chains_peaks() 377 sf0 / tot, si0); in sysctl_debug_umtx_chains_peaks() 379 sf1 / tot, si1); in sysctl_debug_umtx_chains_peaks() 381 sf2 / tot, si2); in sysctl_debug_umtx_chains_peaks() 383 sf3 / tot, si3); in sysctl_debug_umtx_chains_peaks() [all …]
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | vdev_raidz.c | 381 uint64_t q, r, c, bc, col, acols, scols, coff, devidx, asize, tot; in vdev_raidz_map_alloc() local 407 tot = s + nparity * (q + (r == 0 ? 0 : 1)); in vdev_raidz_map_alloc() 472 ASSERT3U(asize, ==, tot << ashift); in vdev_raidz_map_alloc() 473 rm->rm_nskip = roundup(tot, nparity + 1) - tot; in vdev_raidz_map_alloc()
|
| H A D | vdev_draid.c | 1209 uint64_t tot = psize + (vdc->vdc_nparity * (q + (r == 0 ? 0 : 1))); in vdev_draid_map_alloc_row() local 1259 ASSERT3U(asize, ==, tot << ashift); in vdev_draid_map_alloc_row() 1260 rr->rr_nempty = roundup(tot, groupwidth) - tot; in vdev_draid_map_alloc_row()
|
| /f-stack/dpdk/drivers/net/igc/ |
| H A D | igc_ethdev.c | 158 {"tx_total_bytes", offsetof(struct igc_hw_stats, tot)}, 1746 stats->tot += IGC_READ_REG(hw, IGC_TOTL); in igc_read_stats_registers() 1747 stats->tot += ((uint64_t)IGC_READ_REG(hw, IGC_TOTH) << 32); in igc_read_stats_registers() 1748 stats->tot -= (stats->tpt - old_tpt) * RTE_ETHER_CRC_LEN; in igc_read_stats_registers()
|
| /f-stack/dpdk/drivers/net/e1000/base/ |
| H A D | e1000_hw.h | 549 u64 tot; member
|
| /f-stack/dpdk/drivers/net/igc/base/ |
| H A D | igc_hw.h | 561 u64 tot; member
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/bin/ |
| H A D | jeprof.in | 2690 my $tot = shift; 2691 if ($tot != 0) { 2692 return sprintf("%.1f%%", $num * 100.0 / $tot);
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | redis-cli.c | 5722 long long start, latency, min = 0, max = 0, tot = 0, count = 0; in latencyMode() local 5749 min = max = tot = latency; in latencyMode() 5754 tot += latency; in latencyMode() 5755 avg = (double) tot/count; in latencyMode() 5774 min = max = tot = count = 0; in latencyMode() 5804 void showLatencyDistSamples(struct distsamples *samples, long long tot) { in showLatencyDistSamples() argument 5815 ceil((float) samples[j].count / tot * (spectrum_palette_size-1)); in showLatencyDistSamples()
|
| /f-stack/freebsd/netinet/libalias/ |
| H A D | alias_db.c | 480 int tot = la->icmpLinkCount + la->udpLinkCount + in ShowAliasStats() local 495 la->fragmentPtrLinkCount, tot); in ShowAliasStats()
|
| /f-stack/dpdk/drivers/net/e1000/ |
| H A D | igb_ethdev.c | 477 {"tx_total_bytes", offsetof(struct e1000_hw_stats, tot)}, 1764 stats->tot += E1000_READ_REG(hw, E1000_TOTL); in igb_read_stats_registers() 1765 stats->tot += ((uint64_t)E1000_READ_REG(hw, E1000_TOTH) << 32); in igb_read_stats_registers() 1766 stats->tot -= (stats->tpt - old_tpt) * RTE_ETHER_CRC_LEN; in igb_read_stats_registers()
|
| H A D | em_ethdev.c | 937 stats->tot += E1000_READ_REG(hw, E1000_TOTH); in eth_em_stats_get()
|