/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopUnrollPass.cpp | 1 //===- LoopUnroll.cpp - Loop unroller pass --------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // been canonicalized by the -indvars pass, allowing it to determine the trip 12 //===----------------------------------------------------------------------===// 74 #define DEBUG_TYPE "loop-unroll" 77 "forget-scev-loop-unroll", cl::init(false), cl::Hidden, 79 " the current top-most loop. This is sometimes preferred to reduce" 83 UnrollThreshold("unroll-threshold", cl::Hidden, 84 cl::desc("The cost threshold for loop unrolling")); [all …]
|
H A D | LoopUnrollAndJamPass.cpp | 1 //===- LoopUnrollAndJam.cpp - Loop unroll and jam pass --------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 54 #define DEBUG_TYPE "loop-unroll-and-jam" 71 AllowUnrollAndJam("allow-unroll-and-jam", cl::Hidden, 72 cl::desc("Allows loops to be unroll-and-jammed.")); 75 "unroll-and-jam-count", cl::Hidden, 76 cl::desc("Use this unroll count for all loops including those with " 80 "unroll-and-jam-threshold", cl::init(60), cl::Hidden, [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | IndirectCallPromotionAnalysis.cpp | 1 //===-- IndirectCallPromotionAnalysis.cpp - Find promotion candidates ===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // candidates for an instruction when the indirect-call value profile metadata 13 //===----------------------------------------------------------------------===// 24 #define DEBUG_TYPE "pgo-icall-prom-analysis" 26 // The percent threshold for the direct-call target (this call site vs the 27 // remaining call count) for it to be considered as the promotion target. 29 "icp-remaining-percent-threshold", cl::init(30), cl::Hidden, 30 cl::desc("The percentage threshold against remaining unpromoted indirect " [all …]
|
H A D | InlineCost.cpp | 1 //===- InlineCost.cpp - Cost analysis for inliner -------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 31 #include "llvm/Config/llvm-config.h" 52 #define DEBUG_TYPE "inline-cost" 57 DefaultThreshold("inlinedefault-threshold", cl::Hidden, cl::init(225), 60 // We introduce this option since there is a minor compile-time win by avoiding 61 // addition of TTI attributes (target-features in particular) to inline 66 "ignore-tti-inline-compatible", cl::Hidden, cl::init(false), [all …]
|
/freebsd/sys/netinet/ |
H A D | ip_mroute.h | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 50 * and PIM-SMv2 and PIM-DM support, advanced API support, 77 #define ALL_VIFS (vifi_t)-1 101 #define VIFF_TUNNEL 0x1 /* no-op; retained for old source */ 102 #define VIFF_SRCRT 0x2 /* no-op; retained for old source */ 132 * The advanced-API flags. 149 * measured bandwidth is above or below a threshold. 152 * bandwidth used by some data flow is above or below some threshold. 153 * This interface allows the userland to specify the threshold (in [all …]
|
/freebsd/sys/contrib/zstd/lib/common/ |
H A D | entropy_common.c | 6 * - FSE+HUF source repository : https://github.com/Cyan4973/FiniteStateEntropy 7 * - Public forum : https://groups.google.com/forum/#!forum/lz4c 9 * This source code is licensed under both the BSD-style license (found in the 12 * You may select, at your option, one of the above-listed licenses. 38 /*-************************************************************** 39 * FSE NCount encoding-decoding 59 U32 count = 0; in FSE_ctz() 62 ++count; in FSE_ctz() 64 return count; in FSE_ctz() 78 int threshold; in FSE_readNCount_body() local [all …]
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/ |
H A D | entropy_common.c | 3 * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc. 6 * - FSE+HUF source repository : https://github.com/Cyan4973/FiniteStateEntropy 7 * - Public forum : https://groups.google.com/forum/#!forum/lz4c 9 * This source code is licensed under both the BSD-style license (found in the 12 * You may select, at your option, one of the above-listed licenses. 38 /*-************************************************************** 39 * FSE NCount encoding-decoding 49 int threshold; in FSE_readNCount() local 77 threshold = 1<<nbBits; in FSE_readNCount() 85 if (ip < iend-5) { in FSE_readNCount() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | ProfileSummaryBuilder.cpp | 1 //=-- ProfilesummaryBuilder.cpp - Profile summary computation ------- 123 uint64_t Count = I.second.getSamples(); addRecord() local 141 uint64_t CurrSum = 0, Count = 0; computeDetailedSummary() local 228 addEntryCount(uint64_t Count) addEntryCount() argument 237 addInternalCount(uint64_t Count) addInternalCount() argument [all...] |
/freebsd/lib/libpmc/pmu-events/arch/powerpc/power8/ |
H A D | pmc.json | 83 "BriefDescription": "Threshold counter exceeded a value of 1024", 89 "BriefDescription": "Threshold counter exceeded a value of 128", 95 "BriefDescription": "Threshold counter exceeded a value of 2048", 101 "BriefDescription": "Threshold counter exceed a count of 256", 107 "BriefDescription": "Threshold counter exceeded a value of 32", 113 "BriefDescription": "Threshold counter exceed a count of 4096", 119 "BriefDescription": "Threshold counter exceeded a value of 512", 125 "BriefDescription": "IFU non-branch finished", 126 "PublicDescription": "Threshold counter exceeded a value of 64" 131 "BriefDescription": "threshold exceeded", [all …]
|
/freebsd/sys/vm/ |
H A D | vm_pagequeue.h | 1 /*- 2 * SPDX-License-Identifier: (BSD-3-Clause AND MIT-CMU) 8 * The Mach Operating System project at Carnegie-Mellon University. 35 * Copyright (c) 1987, 1990 Carnegie-Mellon University. 55 * Pittsburgh PA 15213-3890 107 * - [all...] |
/freebsd/contrib/ntp/libntp/ |
H A D | adjtime.c | 8 * a sub-second accuracy bug documented in SR 5003462838 which prevents ntpd 10 * implementation as used by ntpd has a side-effect of screwing up the hardware 18 * The one-time clock adjustment functionality of ntpdate and ntp_timeset can 47 /* Adjustment required. Convert delta to 64-bit microseconds. */ in adjtime() 48 big_sec = (long)delta->tv_sec; in adjtime() 49 big_usec = delta->tv_usec; in adjtime() 77 pdc_usecs_wanted = get_time() - offset_usecs; in adjtime() 81 set_time_correction(pdc_usecs_wanted - pdc_usecs_current,0,1); in adjtime() 94 (long)olddelta->tv_sec = prev_correction / 1000000LL; in adjtime() 95 olddelta->tv_use in adjtime() 300 long count; adjtime() local [all...] |
/freebsd/sys/dev/igc/ |
H A D | igc_regs.h | 1 /*- 4 * SPDX-License-Identifier: BSD-3-Clause 11 #define IGC_CTRL 0x00000 /* Device Control - RW */ 12 #define IGC_STATUS 0x00008 /* Device Status - RO */ 13 #define IGC_EECD 0x00010 /* EEPROM/Flash Control - RW */ 15 #define IGC_EERD 0x12014 /* EEprom mode read - RW */ 16 #define IGC_EEWR 0x12018 /* EEprom mode write - RW */ 17 #define IGC_CTRL_EXT 0x00018 /* Extended Device Control - RW */ 18 #define IGC_MDIC 0x00020 /* MDI Control - RW */ 19 #define IGC_MDICNFG 0x00E04 /* MDI Config - RW */ [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/usb/ |
H A D | dwc3.txt | 3 DWC3- USB3 CONTROLLER. Complies to the generic USB binding properties 7 - compatible: must be "snps,dwc3" 8 - reg : Address and length of the register set for the device 9 - interrupts: Interrupts used by the dwc3 controller. 10 - clock-names: list of clock names. Ideally should be "ref", 12 - clocks: list of phandle and clock specifier pairs corresponding to 13 entries in the clock-names property. 16 clocks are optional if the parent node (i.e. glue-layer) is compatible to 18 "cavium,octeon-7130-usb-uctl" 20 "samsung,exynos5250-dwusb3" [all …]
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | fse_compress.c | 3 * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. 6 * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy 7 * - Public forum : https://groups.google.com/forum/#!forum/lz4c 9 * This source code is licensed under both the BSD-style license (found in the 12 * You may select, at your option, one of the above-listed licenses. 41 for type-specific functions (template emulation in C) 71 U32 const tableMask = tableSize - 1; in FSE_buildCTable_wksp() 80 U32 highThreshold = tableSize-1; in FSE_buildCTable_wksp() 84 tableU16[-2] = (U16) tableLog; in FSE_buildCTable_wksp() 85 tableU16[-1] = (U16) maxSymbolValue; in FSE_buildCTable_wksp() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | ProfileSummaryInfo.h | 1 //===- llvm/Analysis/ProfileSummaryInfo.h - profile summary ---*- C++ -*-===// 5 // SPDX-License-Identifie 199 auto Count = BFI->getBlockProfileCount(BB); isHotBlock() local 206 auto Count = BFI->getBlockProfileCount(BB); isColdBlock() local 212 auto Count = BFI->getProfileCountFromFreq(BlockFreq.getFrequency()); isColdBlock() local 307 auto Count = BFI->getBlockProfileCount(BB); isHotOrColdBlockNthPercentile() local 318 auto Count = BFI->getProfileCountFromFreq(BlockFreq.getFrequency()); isHotOrColdBlockNthPercentile() local [all...] |
/freebsd/sys/contrib/zstd/lib/compress/ |
H A D | fse_compress.c | 6 * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy 7 * - Public forum : https://groups.google.com/forum/#!forum/lz4c 9 * This source code is licensed under both the BSD-style license (found in the 12 * You may select, at your option, one of the above-listed licenses. 42 for type-specific functions (template emulation in C) 72 U32 const tableMask = tableSize - 1; in FSE_buildCTable_wksp() 83 U32 highThreshold = tableSize-1; in FSE_buildCTable_wksp() 85 assert(((size_t)workSpace & 1) == 0); /* Must be 2 bytes-aligned */ in FSE_buildCTable_wksp() 88 tableU16[-2] = (U16) tableLog; in FSE_buildCTable_wksp() 89 tableU16[-1] = (U16) maxSymbolValue; in FSE_buildCTable_wksp() [all …]
|
/freebsd/lib/libc/stdlib/ |
H A D | radixsort.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 64 #define THRESHOLD 20 /* Divert to simplesort(). */ macro 81 return (-1); \ 106 if (n < THRESHOLD) in sradixsort() 110 return (-1); in sradixsort() 118 #define pop(a, n, i) a = (--sp)->sa, n = sp->sn, i = sp->si 119 #define push(a, n, i) sp->sa = a, sp->sn = n, (sp++)->si = i 122 /* Unstable, in-place sort. */ 126 static int count[256], nc, bmin; in r_sort_a() local [all …]
|
/freebsd/sys/dev/e1000/ |
H A D | e1000_regs.h | 2 SPDX-License-Identifier: BSD-3-Clause 4 Copyright (c) 2001-2020, Intel Corporation 38 #define E1000_CTRL 0x00000 /* Device Control - RW */ 39 #define E1000_CTRL_DUP 0x00004 /* Device Control Duplicate (Shadow) - RW */ 40 #define E1000_STATUS 0x00008 /* Device Status - RO */ 41 #define E1000_EECD 0x00010 /* EEPROM/Flash Control - RW */ 42 #define E1000_EERD 0x00014 /* EEPROM Read - RW */ 43 #define E1000_CTRL_EXT 0x00018 /* Extended Device Control - RW */ 44 #define E1000_FLA 0x0001C /* Flash Access - RW */ 45 #define E1000_MDIC 0x00020 /* MDI Control - RW */ [all …]
|
/freebsd/sys/gnu/dev/bwn/phy_n/ |
H A D | if_bwn_phy_n_regs.h | 22 Boston, MA 02110-1301, USA. 32 /* N-PHY registers. */ 41 #define BWN_NPHY_4WI_ADDR BWN_PHY_N(0x00B) /* Four-wire bus address */ 42 #define BWN_NPHY_4WI_DATAHI BWN_PHY_N(0x00C) /* Four-wire bus data high */ 43 #define BWN_NPHY_4WI_DATALO BWN_PHY_N(0x00D) /* Four-wire bus data low */ 44 #define BWN_NPHY_BIST_STAT0 BWN_PHY_N(0x00E) /* Built-in self test status 0 */ 45 #define BWN_NPHY_BIST_STAT1 BWN_PHY_N(0x00F) /* Built-in self test status 1 */ 93 #define BWN_NPHY_C1_CLIPWBTHRES BWN_PHY_N(0x027) /* Core 1 clip wideband threshold */ 98 #define BWN_NPHY_C1_W1THRES BWN_PHY_N(0x028) /* Core 1 W1 threshold */ 99 #define BWN_NPHY_C1_EDTHRES BWN_PHY_N(0x029) /* Core 1 ED threshold */ [all …]
|
/freebsd/usr.bin/clang/llvm-profdata/ |
H A D | llvm-profdata.1 | 4 .nr rst2man-indent-level 0 7 \\$1 \\n[an-margin] 8 level \\n[rst2man-indent-level] 9 level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] 10 - 11 \\n[rst2man-indent0] 12 \\n[rst2man-indent1] 13 \\n[rst2man-indent2] 18 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] 19 . nr rst2man-indent-level +1 [all …]
|
/freebsd/sys/dev/ichiic/ |
H A D | ig4_reg.h | 40 * https://www.intel.com/content/dam/www/public/us/en/documents/datasheets/4th-gen-core-family-mobile-i-o-datasheet.pdf 42 * This is a from-scratch driver under the BSD license using the Intel data 61 * Register width is 32-bits 80 #define IG4_REG_SS_SCL_HCNT 0x0014 /* RW Std Speed clock High Count */ [all...] |
/freebsd/usr.bin/du/ |
H A D | du.1 | 36 .Op Fl -libxo 43 .Op Fl t Ar threshold 55 .Bl -tag -width indent 56 .It Fl -libxo 105 Display block counts in 1073741824-byte (1 GiB) blocks. 107 .Dq Human-readable 112 Display block counts in 1024-byte (1 kiB) blocks. 114 If a file has multiple hard links, count its size multiple times. 117 is to count file [all...] |
/freebsd/sys/x86/x86/ |
H A D | mca.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 72 * corrected machine check interrupt threshold. 100 static int mca_banks; /* Number of per-CPU register banks. */ 101 static int mca_maxcount = -1; /* Limit on records stored. (-1 = unlimited) */ 197 static int amd_elvt = -1; 206 * The RASCap register is wholly reserved in families 0x10-0x15 (through model 1F). in amd_thresholding_supported() 259 if (error || req->newptr == NULL) in sysctl_positive_int() 290 record = rec->rec; in sysctl_mca_records() 401 * Skip spurious corrected parity errors generated by Intel Haswell- in mca_mute() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/ |
H A D | dedup_quota.ksh | 1 #!/bin/ksh -p 9 # or https://opensource.org/licenses/CDDL-1.0. 32 # 2. Set threshold for on-disk DDT via dedup_table_quota 33 # 3. Verify the threshold is exceeded after zpool sync 56 # where things appear on-disk 65 log_must rm -fd $VDEV_GENERAL $VDEV_DEDUP $MOUNTDIR 74 log_must rm -fd $VDEV_GENERAL $VDEV_DEDUP $MOUNTDIR 79 log_must truncate -s 5G $VDEV_GENERAL 81 log_must zpool create -o ashift=12 -f -O xattr=sa -m $MOUNTDIR $POOL $VDEV_GENERAL 98 typeset -i entries=$(zpool status -D $POOL | \ [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | SampleProfile.cpp | 1 //===- SampleProfile.cpp - Incorporate sample profiles into the IR --------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // reads a profile file generated by a sampling profiler (e.g. Linux Perf - 16 // - prof: Represents branch weights. This annotation is added to branches 22 //===----------------------------------------------------------------------===// 99 #define DEBUG_TYPE "sample-profile" 100 #define CSINLINE_DEBUG DEBUG_TYPE "-inline" 123 "sample-profile-file", cl::init(""), cl::value_desc("filename"), 124 cl::desc("Profile file loaded by -sample-profile"), cl::Hidden); [all …]
|