| /freebsd-12.1/usr.sbin/pmc/ |
| H A D | cmd_pmc_summary.cc | 171 auto largest = kv.second.back(); in pmc_summary_handler() local 173 std::cout << "\t" << largest.second << ": " << largest.first*rate << std::endl; in pmc_summary_handler()
|
| /freebsd-12.1/sys/tools/sound/ |
| H A D | feeder_eq_mkfilter.awk | 116 if (fabs(v) > fabs(largest)) 117 largest = v; 353 largest = 0.000010; 467 smallest, largest);
|
| H A D | feeder_rate_mkfilter.awk | 109 if (fabs(v) > fabs(largest)) 110 largest = v; 679 largest = 0.000010; 888 smallest, largest);
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | DebugInfoFlags.def | 71 // NOTE: always must be equal to largest flag, check this when adding new flag 91 // NOTE: Always must be equal to largest flag, check this when adding new flags.
|
| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/sys/ |
| H A D | cpuvar.h | 447 #define CPUSET_BOUNDS(set, smallest, largest) { \ argument 448 cpuset_bounds(&(set), &(smallest), &(largest)); \ 517 #define CPUSET_BOUNDS(set, smallest, largest) { \ argument 519 largest = (uint_t)(highbit(set) - 1); \
|
| /freebsd-12.1/sbin/pfctl/ |
| H A D | pfctl_optimize.c | 646 int i, largest, largest_list, rule_count = 0; in reorder_rules() local 680 largest = 0; in reorder_rules() 693 if (skiplist->ps_count > largest) in reorder_rules() 694 largest = skiplist->ps_count; in reorder_rules() 697 if (largest == 0) { in reorder_rules() 716 largest = 1; in reorder_rules() 723 if (skiplist->ps_count > largest) { in reorder_rules() 724 largest = skiplist->ps_count; in reorder_rules() 729 if (largest <= 1) { in reorder_rules() 749 largest, TAILQ_FIRST(&TAILQ_FIRST(&block-> in reorder_rules()
|
| /freebsd-12.1/tools/test/testfloat/ |
| H A D | testfloat.txt | 290 conversion overflows, TestFloat expects the largest integer with the same 292 TestFloat allows either the largest positive or largest negative integer to 427 `FFFFFFFF' is -1, and `7FFFFFFF' is the largest positive 32-bit integer. 446 3FE.FFFFFFFFFFFFF largest representable number preceding +1 470 3FFE.FFFFFFFFFFFFFFFFFFFFFFFFFFFF largest representable number 490 3FFE.FFFFFFFFFFFFFFFF largest representable number preceding +1 521 07E.7FFFFF largest representable number preceding +1 630 When the conversion overflows, TestFloat expects the largest integer with 632 is a NaN, TestFloat allows either the largest positive or largest negative
|
| /freebsd-12.1/sys/contrib/zstd/lib/compress/ |
| H A D | fse_compress.c | 599 unsigned largest=0; in FSE_normalizeCount() local 615 if (proba > largestP) { largestP=proba; largest=s; } in FSE_normalizeCount() 619 if (-stillToDistribute >= (normalizedCounter[largest] >> 1)) { in FSE_normalizeCount() 624 else normalizedCounter[largest] += (short)stillToDistribute; in FSE_normalizeCount()
|
| H A D | huf_compress.c | 663 …{ CHECK_V_F(largest, FSE_count_wksp (table->count, &maxSymbolValue, (const BYTE*)src, srcSize, t… in HUF_compress_internal() 664 … if (largest == srcSize) { *ostart = ((const BYTE*)src)[0]; return 1; } /* single symbol, rle */ in HUF_compress_internal() 665 … if (largest <= (srcSize >> 7)+1) return 0; /* heuristic : probably not compressible enough */ in HUF_compress_internal()
|
| /freebsd-12.1/lib/libc/regex/ |
| H A D | regcomp.c | 1767 int largest; local 1775 largest = 0; 1781 if (try > largest) 1782 largest = try; 1822 if (try > largest) 1823 largest = try; 1825 return largest+offset;
|
| /freebsd-12.1/lib/libc/softfloat/ |
| H A D | softfloat.txt | 36 largest integer format supported by the C compiler is 32 bits, SoftFloat is 227 size (32 or 64 bits). If the floating-point operand is a NaN, the largest 229 largest integer with the same sign as the operand is returned.
|
| /freebsd-12.1/usr.bin/sed/tests/ |
| H A D | hanoi.sed | 13 # sequence of states involved in moving 4 rings, the largest called "a" and
|
| /freebsd-12.1/contrib/llvm/tools/lld/docs/ |
| H A D | WebAssembly.rst | 67 occomate the largest LEB128 value. This option will cause the linker to
|
| /freebsd-12.1/contrib/gdtoa/ |
| H A D | changes | 25 return +-Infinity for IEEE arithmetic, +- the largest machine number 128 2.2250738585072012e-308, which was rounded to the largest denormal 431 strtodg.c: fix a bug with handling numbers very near the largest 471 the largest finite floating-point number. Since FLT_ROUNDS is buggy 499 gdtoa/strtodg.c: fix an off-by-one bug in rounding to the largest
|
| /freebsd-12.1/tools/tools/net80211/wesside/wesside/ |
| H A D | wesside.c | 2397 int largest; local 2459 largest = tapfd; 2461 largest = wifd; 2576 rd = select(largest+1, &rfd, NULL, NULL, &tv);
|
| /freebsd-12.1/crypto/openssl/ |
| H A D | Configure | 3313 my $largest = 3319 …print " '",$_,"'"," " x ($largest - length($_))," => [ ",join(", ", map { "'$_'" } @{$target{… 3321 print " '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
|
| /freebsd-12.1/contrib/subversion/subversion/libsvn_fs_base/notes/ |
| H A D | TODO | 75 search for the entry `N E x', where x is the largest number present
|
| /freebsd-12.1/sys/contrib/zstd/tests/ |
| H A D | decodecorpus.c | 440 …{ size_t const largest = FSE_count_wksp (count, &maxSymbolValue, (const BYTE*)src, srcSize, WKSP… in writeHufHeader() local 441 … if (largest == srcSize) { *ostart = ((const BYTE*)src)[0]; return 0; } /* single symbol, rle */ in writeHufHeader() 442 if (largest <= (srcSize >> 7)+1) return 0; /* Fast heuristic : not compressible enough */ in writeHufHeader()
|
| /freebsd-12.1/contrib/lua/src/ |
| H A D | luaconf.h.dist | 76 @@ LUA_C89_NUMBERS ensures that Lua uses the largest types available for 131 ** largest types available for C89 ('long' and 'double')
|
| /freebsd-12.1/contrib/gcc/config/arm/ |
| H A D | ieee754-sf.S | 80 @ Compute exponent difference. Make largest exponent in r2, 90 @ If exponent difference is too large, return largest argument
|
| /freebsd-12.1/contrib/gdb/gdb/doc/ |
| H A D | agentexpr.texi | 78 value; these values are as many bits wide as the largest integer that 92 the largest integer and floating point types on the machine. 709 implement everything using the largest size you support. 784 jump opcode. Thus, I have to either always assume the largest offset
|
| /freebsd-12.1/sys/kern/ |
| H A D | device_if.m | 101 * the largest non-error value wins the election and attaches to
|
| /freebsd-12.1/contrib/subversion/subversion/libsvn_fs_x/ |
| H A D | TODO | 246 new ordering of pack data, the change lists can be the largest part of
|
| /freebsd-12.1/crypto/openssl/doc/man1/ |
| H A D | pkeyutl.pod | 198 the input size must not be larger than the largest supported digest size.
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/ |
| H A D | AnalyzerOptions.def | 333 "The largest number of fields a struct can have and still be considered "
|