| /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 | 101 # This function compute the largest volume size which is multiple of volume 102 # block size (default 16K) and not greater than the largest expected volsize. 104 # $1 The largest expected volume size. 171 # 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 | 102 …{ size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)src, srcSize,… in ZSTD_buildSuperBlockEntropy_literal() local 103 FORWARD_IF_ERROR(largest, "HIST_count_wksp failed"); in ZSTD_buildSuperBlockEntropy_literal() 104 if (largest == srcSize) { in ZSTD_buildSuperBlockEntropy_literal() 109 if (largest <= (srcSize >> 7)+4) { in ZSTD_buildSuperBlockEntropy_literal() 593 …size_t const largest = HIST_count_wksp (countWksp, &maxSymbolValue, (const BYTE*)literals, litSize… in ZSTD_estimateSubBlockSize_literal() local 594 if (ZSTD_isError(largest)) return litSize; in ZSTD_estimateSubBlockSize_literal()
|
| H A D | fse_compress.c | 452 unsigned largest=0; in FSE_normalizeCount() local 468 if (proba > largestP) { largestP=proba; largest=s; } in FSE_normalizeCount() 472 if (-stillToDistribute >= (normalizedCounter[largest] >> 1)) { in FSE_normalizeCount() 477 else normalizedCounter[largest] += (short)stillToDistribute; in FSE_normalizeCount()
|
| H A D | huf_compress.c | 673 …{ CHECK_V_F(largest, HIST_count_wksp (table->count, &maxSymbolValue, (const BYTE*)src, srcSize, … in HUF_compress_internal() 674 … if (largest == srcSize) { *ostart = ((const BYTE*)src)[0]; return 1; } /* single symbol, rle */ in HUF_compress_internal() 675 … 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 | 663 int i, largest, largest_list, rule_count = 0; in reorder_rules() local 697 largest = 0; in reorder_rules() 710 if (skiplist->ps_count > largest) in reorder_rules() 711 largest = skiplist->ps_count; in reorder_rules() 714 if (largest == 0) { in reorder_rules() 729 largest = 1; in reorder_rules() 736 if (skiplist->ps_count > largest) { in reorder_rules() 737 largest = skiplist->ps_count; in reorder_rules() 742 if (largest <= 1) { in reorder_rules() 758 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()
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | EVP_KEYEXCH-DH.pod | 27 largest possible secret size. 30 the largest possible secret size.
|
| /freebsd/sys/contrib/device-tree/Bindings/regulator/ |
| H A D | vctrl.txt | 8 - regulator-max-microvolt : largest voltage consumers may set
|
| /freebsd/lib/libc/regex/ |
| H A D | regcomp.c | 2040 int largest; local 2048 largest = 0; 2054 if (try > largest) 2055 largest = try; 2097 if (try > largest) 2098 largest = try; 2100 return largest+offset;
|
| /freebsd/crypto/openssl/doc/designs/quic-design/ |
| H A D | quic-ackm.md | 12 - Providing information on the largest unacked packet number so that packet 49 - It indicates the largest unacknowledged packet number 145 * this must be set to the largest PN ACK'd by that frame. 477 This gets the largest unacknowledged packet number in the given packet number
|
| /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/crypto/openssl/doc/internal/man3/ |
| H A D | OSSL_TIME.pod | 92 B<ossl_time_infinite> returns the largest representable B<OSSL_TIME>. 144 The largest representable duration is guaranteed to be at least 500 years.
|
| /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/sys/conf/ |
| H A D | ldscript.arm64 | 19 * Align to the the largest page size the kernel could be built for.
|
| /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 | 122 # Note since we're using $RANDOM, $min+32767 is the largest number we
|
| /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/sys/vm/ |
| H A D | vm_phys.c | 1842 int largest; in vm_phys_avail_largest() local 1845 largest = 0; in vm_phys_avail_largest() 1851 largest = i; in vm_phys_avail_largest() 1855 return (largest); in vm_phys_avail_largest()
|