/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
H A D | nsan.cpp | 440 const InternalFT largest = max(ftAbs(check_value), ftAbs(check_shadow)); in checkFT() local 441 nsan_stats->AddCheck(CheckType, pc, bp, abs_err / largest); in checkFT() 449 const InternalFT largest = max(ftAbs(check_value), ftAbs(check_shadow)); in checkFT() local 450 if (abs_err * (1ull << flags().log2_max_relative_error) <= largest) in checkFT() 467 if (largest > Eps) { in checkFT() 469 static_cast<long double>(100.0 * abs_err / largest), in checkFT() 470 log2l(static_cast<long double>(abs_err / largest / Eps))); in checkFT() 535 nsan_stats->AddWarning(CheckType, pc, bp, abs_err / largest); in checkFT()
|
/freebsd/usr.sbin/pmc/ |
H A D | cmd_pmc_summary.cc | 166 auto largest = kv.second.back(); in pmc_summary_handler() local 168 std::cout << "\t" << largest.second << ": " << largest.first*rate << std::endl; in pmc_summary_handler()
|
/freebsd/sys/tools/sound/ |
H A D | feeder_eq_mkfilter.awk | 115 if (fabs(v) > fabs(largest)) 116 largest = v; 351 largest = 0.000010; 465 smallest, largest);
|
H A D | feeder_rate_mkfilter.awk | 108 if (fabs(v) > fabs(largest)) 109 largest = v; 678 largest = 0.000010; 887 smallest, largest);
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/reservation/ |
H A D | reservation.shlib | 100 # This function compute the largest volume size which is multiple of volume 101 # block size (default 16K) and not greater than the largest expected volsize. 103 # $1 The largest expected volume size. 170 # This function takes a pool name as an argument, and returns the largest (give
|
/freebsd/crypto/openssl/crypto/ |
H A D | README-sparse_array.md | 31 accommodate the largest index added to the data structure. 33 The largest index used to add a value to the array determines the tree height: 150 largest element. The base of the logarithm is `SA_BLOCK_MAX`, so for moderately
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DebugInfoFlags.def | 69 // NOTE: always must be equal to largest flag, check this when adding new flag 97 // NOTE: Always must be equal to largest flag, check this when adding new flags.
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | zstd_compress_superblock.c | 101 …{ size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)src, srcSize,… in ZSTD_buildSuperBlockEntropy_literal() local 102 FORWARD_IF_ERROR(largest, "HIST_count_wksp failed"); in ZSTD_buildSuperBlockEntropy_literal() 103 if (largest == srcSize) { in ZSTD_buildSuperBlockEntropy_literal() 108 if (largest <= (srcSize >> 7)+4) { in ZSTD_buildSuperBlockEntropy_literal() 592 …size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)literals, litSize… in ZSTD_estimateSubBlockSize_literal() local 593 if (ZSTD_isError(largest)) return litSize; in ZSTD_estimateSubBlockSize_literal()
|
H A D | fse_compress.c | 451 unsigned largest=0; in FSE_normalizeCount() local 467 if (proba > largestP) { largestP=proba; largest=s; } in FSE_normalizeCount() 471 if (-stillToDistribute >= (normalizedCounter[largest] >> 1)) { in FSE_normalizeCount() 476 else normalizedCounter[largest] += (short)stillToDistribute; in FSE_normalizeCount()
|
H A D | huf_compress.c | 672 …{ CHECK_V_F(largest, HIST_count_wksp (table->count, &maxSymbolValue, (const BYTE*)src, srcSize, … in HUF_compress_internal() 673 … if (largest == srcSize) { *ostart = ((const BYTE*)src)[0]; return 1; } /* single symbol, rle */ in HUF_compress_internal() 674 … if (largest <= (srcSize >> 7)+4) return 0; /* heuristic : probably not compressible enough */ in HUF_compress_internal()
|
/freebsd/sbin/pfctl/ |
H A D | pfctl_optimize.c | 660 int i, largest, largest_list, rule_count = 0; in reorder_rules() local 694 largest = 0; in reorder_rules() 707 if (skiplist->ps_count > largest) in reorder_rules() 708 largest = skiplist->ps_count; in reorder_rules() 711 if (largest == 0) { in reorder_rules() 730 largest = 1; in reorder_rules() 737 if (skiplist->ps_count > largest) { in reorder_rules() 738 largest = skiplist->ps_count; in reorder_rules() 743 if (largest <= 1) { in reorder_rules() 763 largest, TAILQ_FIRST(&TAILQ_FIRST(&block-> in reorder_rules()
|
/freebsd/sys/contrib/zstd/lib/compress/ |
H A D | fse_compress.c | 490 unsigned largest=0; in FSE_normalizeCount() local 506 if (proba > largestP) { largestP=proba; largest=s; } in FSE_normalizeCount() 510 if (-stillToDistribute >= (normalizedCounter[largest] >> 1)) { in FSE_normalizeCount() 515 else normalizedCounter[largest] += (short)stillToDistribute; in FSE_normalizeCount()
|
H A D | zstd_compress_superblock.c | 315 …size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)literals, litSize… in ZSTD_estimateSubBlockSize_literal() local 316 if (ZSTD_isError(largest)) return litSize; in ZSTD_estimateSubBlockSize_literal()
|
H A D | huf_compress.c | 1226 …{ CHECK_V_F(largest, HIST_count_wksp (table->count, &maxSymbolValue, (const BYTE*)src, srcSize, … in HUF_compress_internal() 1227 … if (largest == srcSize) { *ostart = ((const BYTE*)src)[0]; return 1; } /* single symbol, rle */ in HUF_compress_internal() 1228 … if (largest <= (srcSize >> 7)+4) return 0; /* heuristic : probably not compressible enough */ in HUF_compress_internal()
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | EVP_KEYEXCH-DH.pod | 27 largest possible secret size. 30 the largest possible secret size.
|
/freebsd/lib/libc/regex/ |
H A D | regcomp.c | 2039 int largest; local 2047 largest = 0; 2053 if (try > largest) 2054 largest = try; 2096 if (try > largest) 2097 largest = try; 2099 return largest+offset;
|
/freebsd/sys/contrib/device-tree/Bindings/regulator/ |
H A D | vctrl.txt | 8 - regulator-max-microvolt : largest voltage consumers may set
|
/freebsd/contrib/llvm-project/lld/docs/ELF/ |
H A D | large_sections.rst | 20 The largest relocation pressure is usually from ``.text`` to the beginning of
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | amlogic,axg-sound-card.txt | 35 If omitted, slot number is set to accommodate the largest
|
/freebsd/lib/libc/softfloat/ |
H A D | softfloat.txt | 35 largest integer format supported by the C compiler is 32 bits, SoftFloat is 226 size (32 or 64 bits). If the floating-point operand is a NaN, the largest 228 largest integer with the same sign as the operand is returned.
|
/freebsd/usr.bin/sed/tests/ |
H A D | hanoi.sed | 8 # sequence of states involved in moving 4 rings, the largest called "a" and
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/include/ |
H A D | math.shlib | 121 # Note since we're using $RANDOM, $min+32767 is the largest number we
|
/freebsd/sys/vm/ |
H A D | vm_phys.c | 1833 int largest; in vm_phys_avail_largest() local 1836 largest = 0; in vm_phys_avail_largest() 1842 largest = i; in vm_phys_avail_largest() 1846 return (largest); in vm_phys_avail_largest()
|
/freebsd/contrib/arm-optimized-routines/math/tools/ |
H A D | tgamma128_gen.jl | 93 /* The largest positive value for which 128-bit tgamma does not overflow. */
|
/freebsd/sys/contrib/openzfs/cmd/zpool_influxdb/ |
H A D | README.md | 153 The largest bucket is tagged "le=+Inf", representing the total count 190 The largest bucket is tagged "le=+Inf", representing the total count
|