| /freebsd-src/contrib/wpa/src/ap/ |
| H A D | acs.c | 2 * ACS - Automatic Channel Selection module 31 * --------- 305 long double factor, busy, total; acs_survey_interference_factor() local 656 long double factor; acs_find_ideal_chan_mode() local [all...] |
| /freebsd-src/share/doc/papers/timecounter/ |
| H A D | timecounter.ms | 5 .\" ---------------------------------------------------------------------------- 6 .\" "THE BEER-WARE LICENSE" (Revision 42): 9 .\" this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp 10 .\" ---------------------------------------------------------------------------- 16 .A "Poul-Henning Kamp" "The FreeBSD Project" 18 The FreeBSD timecounters are an architecture-independent implementation 21 multiplication to canonical timescales based on micro- or nano-seconds 23 synchronisation. Timecounters are implemented using lock-less 24 stable-storage based primitives which scale efficiently in SMP 80 for instance transport or consumption of a substance at a well-known [all …]
|
| /freebsd-src/sys/dev/videomode/ |
| H A D | vesagtf.c | 3 /*- 43 * This has required the use of 64-bit integers in a few places, but 89 * Copyright (c) 1994, 1995, 1996 - Video Electronics Standards 120 * surrounding the addressable video); on most non-overscan type 172 * #define C_PRIME (((C - J) * K/256.0) + J) 180 #define C_PRIME256(p) (((p->C - p->J) * p->K) + (p->J * 256)) 181 #define M_PRIME256(p) (p->K * p->M) 186 * print_value() - print the result of the named computation; this is 195 printf("%2d: %-27s: %u\n", n, name, val); in print_value() 202 * vert_refresh() - as defined by the GTF Timing Standard, compute the [all …]
|
| /freebsd-src/sys/contrib/device-tree/Bindings/iio/temperature/ |
| H A D | adi,ltc2983.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schema [all...] |
| /freebsd-src/share/man/man4/ |
| H A D | siftr.4 | 39 as a module at run-time, run the following command as root: 40 .Bd -literal -offset indent 49 .Bd -literal -offset indent 66 .Ss Compile-time Configuration 72 .Bd -literal -offset indent 73 CFLAGS+=-DSIFTR_IPV6 80 In the IPv4-only (default) mode, standard dotted decimal notation (e.g. 83 and standard colon-separated hex notation (see RFC 4291) is used to format IPv6 85 .Ss Run-time Configuration 89 interface to export its configuration variables to user-space. [all …]
|
| /freebsd-src/sys/dev/drm2/ |
| H A D | drm_modes.c | 2 * Copyright © 1997-2003 by The XFree86 Project, Inc. 4 * Copyright © 2007-2008 Intel Corporation 6 * Copyright 2005-2006 Luc Verhaegen 38 * drm_mode_debug_printmodeline - debug print a mode 51 mode->base.id, mode->name, mode->vrefresh, mode->clock, in drm_mode_debug_printmodeline() 52 mode->hdisplay, mode->hsync_start, in drm_mode_debug_printmodeline() 53 mode->hsync_end, mode->htotal, in drm_mode_debug_printmodeline() 54 mode->vdisplay, mode->vsync_start, in drm_mode_debug_printmodeline() 55 mode->vsync_end, mode->vtotal, mode->type, mode->flags); in drm_mode_debug_printmodeline() 60 * drm_cvt_mode -create a modeline based on CVT algorithm [all …]
|
| /freebsd-src/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | dt_aggregate.c | 60 #define DT_LESSTHAN (dt_revsort == 0 ? -1 : 1) 61 #define DT_GREATERTHAN (dt_revsort == 0 ? 1 : -1) 152 long double total = (long double)lquanta[0] * (long double)(base - 1); in dt_aggregate_lquantizedsum() 169 if (base - 1 == 0) in dt_aggregate_lquantizedzero() 229 uint16_t factor = DTRACE_LLQUANTIZE_FACTOR(arg); in dt_aggregate_llquantizedsum() local 234 int64_t value = 1, next, step; in dt_aggregate_llquantizedsum() local 237 assert(nsteps >= factor); in dt_aggregate_llquantizedsum() 238 assert(nsteps % factor == 0); in dt_aggregate_llquantizedsum() 241 value *= factor; in dt_aggregate_llquantizedsum() 243 total = (long double)llquanta[bin++] * (long double)(value - 1); in dt_aggregate_llquantizedsum() [all …]
|
| /freebsd-src/sys/kern/ |
| H A D | sched_4bsd.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 73 * the range 100-256 Hz (approximately). 76 min((e), INVERSE_ESTCPU_WEIGHT * (NICE_WEIGHT * (PRIO_MAX - PRIO_MIN) - \ 77 RQ_PPQ) + INVERSE_ESTCPU_WEIGHT - 1) 112 #define TSF_AFFINITY 0x0001 /* Has a non-"ful [all...] |
| H A D | vfs_bio.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2004 Poul-Henning Kamp 114 #define BQ_LOCKPTR(bq) (&(bq)->bq_lock) 144 #define BD_LOCKPTR(bd) (&(bd)->bd_cleanq->bq_lock) 148 #define BD_RUN_LOCKPTR(bd) (&(bd)->bd_run_loc 411 long value; sysctl_runningspace() local 440 int value; sysctl_bufdomain_int() local 458 long value; sysctl_bufdomain_long() local 511 int value; sysctl_numdirtybuffers() local 1101 int factor = 4 * BKVASIZE / 1024; kern_vfs_bio_buffer_alloc() local [all...] |
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopStrengthReduce.cpp | 1 //===- LoopStrengthReduce.cpp - Strength Reduce IVs in Loops -------- 2741 if (const SCEVConstant *Factor = CollectInterestingTypesAndFactors() local 2746 } else if (const SCEVConstant *Factor = CollectInterestingTypesAndFactors() local 3999 for (int64_t Factor : Factors) { GenerateICmpZeroScales() local 4088 for (int64_t Factor : Factors) { GenerateScales() local 5972 for (int64_t Factor : Factors) { print_factors_and_types() local [all...] |
| H A D | IndVarSimplify.cpp | 1 //===- IndVarSimplify.cpp - Induction Variable Elimination -------- [all...] |
| /freebsd-src/contrib/ntp/ntpd/ |
| H A D | refclock_arc.c | 2 * refclock_arc - clock driver for ARCRON MSF/DCF/WWVB receivers 35 Modifications by Damon Hart-Davis, <d@hd.org>, 1997. 37 Modifications by Christopher Price, <cprice@cs-home.com>, 2003. 44 Orginally developed and used with ntp3-5.85 by Derek Mulcahy. 46 Built against ntp3-5.90 on Solaris 2.5 using gcc 2.7.2. 52 ------------------------------------------------------------------------------- 62 ------------------------------------------------------------------------------- 69 2001-02-17 comp.protocols.time.ntp 89 ------------------------------------------------------------------------------- 95 It works (after a fashion) on both Solaris-1 and Solaris-2. [all …]
|
| /freebsd-src/contrib/ofed/opensm/man/ |
| H A D | opensm.8 | 4 opensm \- InfiniBand subnet manager and administration (SM/SA) 8 [\-\-version]] 9 [\-F | \-\-config <file_name>] 10 [\-c(reate-config) <file_name>] 11 [\-g(uid) <GUID in hex>] 12 [\-l(mc) <LMC>] 13 [\-p(riority) <PRIORITY>] 14 [\-\-smkey <SM_Key>] 15 [\-\-sm_sl <SL number>] 16 [\-r(eassign_lids)] [all …]
|
| /freebsd-src/sys/contrib/dev/ath/ath_hal/ar9300/ |
| H A D | ar9300_paprd.c | 74 ar9300_eeprom_t *eep = &AH9300(ah)->ah_eeprom; in ar9300_paprd_setup_single_table() 76 #define ABS(_x, _y) ((int)_x > (int)_y ? (int)_x - (int)_y : (int)_y - (int)_x) in ar9300_paprd_setup_single_table() 78 ar9300_set_target_power_from_eeprom(ah, ichan->channel, target_power_val_t2); in ar9300_paprd_setup_single_table() 85 * This factor is saved in eeprom as 3 bit fields in following fashion. in ar9300_paprd_setup_single_table() 86 * In 5G there are 3 scale factors -- upper, mid and lower band. in ar9300_paprd_setup_single_table() 87 * Upper band scale factor is coded in bits 25-27 of in ar9300_paprd_setup_single_table() 89 * Mid band scale factor is coded in bits 28-30 of in ar9300_paprd_setup_single_table() 91 * Lower band scale factor is coded in bits 25-27 of in ar9300_paprd_setup_single_table() 93 * For 2G there is only one scale factor. It is saved in bits 25-27 of in ar9300_paprd_setup_single_table() 96 AH_PAPRD_GET_SCALE_FACTOR(paprd_scale_factor, eep, is_2g, ichan->channel); in ar9300_paprd_setup_single_table() [all …]
|
| /freebsd-src/sys/contrib/openzfs/man/man4/ |
| H A D | zfs.4 | 9 .\" usr/src/OPENSOLARIS.LICENSE or https://opensource.org/licenses/CDDL-1.0. 31 .Bl -tag -width Ds 80 The default value minimizes lock contention for the bulk operation performed. 102 Turbo L2ARC warm-up. 128 A value of 179 Percent of ARC size allowed for L2ARC-only headers. 198 A value of 252 before moving on to the next top-level vdev. 255 Enable metaslab group biasing based on their vdevs' over- o [all...] |
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | TargetLowering.h | 1 //===- llvm/CodeGen/TargetLowering.h - Target Lowering Info -----*- C++ -*- 95 class Value; global() variable 991 requiresUniformRegister(MachineFunction & MF,const Value *) requiresUniformRegister() argument 1537 uint32_t Value = CondCodeActions[CC][VT.SimpleTy >> 3]; getCondCodeAction() local 2676 getAddrModeArguments(IntrinsicInst *,SmallVectorImpl<Value * > &,Type * &) getAddrModeArguments() argument 2732 isLegalStoreImmediate(int64_t Value) isLegalStoreImmediate() argument 3022 lowerInterleavedLoad(LoadInst * LI,ArrayRef<ShuffleVectorInst * > Shuffles,ArrayRef<unsigned> Indices,unsigned Factor) lowerInterleavedLoad() argument 3033 lowerInterleavedStore(StoreInst * SI,ShuffleVectorInst * SVI,unsigned Factor) lowerInterleavedStore() argument [all...] |
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 1 //===-- AArch64ISelLowering.cpp - AArch64 DAG Lowering Implementation ----===// 5 // SPDX-License-Identifier: Apache-2. 3676 SDValue Value, Overflow; getAArch64XALUOOp() local 3786 SDValue Value, Overflow; LowerXOR() local 3849 valueToCarryFlag(SDValue Value,SelectionDAG & DAG,bool Invert) valueToCarryFlag() argument 3918 SDValue Value, Overflow; LowerXALUO() local 5815 SDValue Value = ST->getValue(); LowerTruncateVectorStore() local 5849 SDValue Value = StoreNode->getValue(); LowerSTORE() local 5901 SDValue Value = StoreNode->getValue(); LowerSTORE() local 5935 SDValue Value = (StoreNode->getOpcode() == ISD::STORE || LowerStore128() local 8919 SDValue Value, Overflow; LowerBR_CC() local 9804 SDValue Value, Overflow; LowerSELECT() local 12465 uint64_t Value = Bits.zextOrTrunc(64).getZExtValue(); tryAdvSIMDModImm64() local 12492 uint64_t Value = Bits.zextOrTrunc(64).getZExtValue(); tryAdvSIMDModImm32() local 12545 uint64_t Value = Bits.zextOrTrunc(64).getZExtValue(); tryAdvSIMDModImm16() local 12584 uint64_t Value = Bits.zextOrTrunc(64).getZExtValue(); tryAdvSIMDModImm321s() local 12615 uint64_t Value = Bits.zextOrTrunc(64).getZExtValue(); tryAdvSIMDModImm8() local 12636 uint64_t Value = Bits.zextOrTrunc(64).getZExtValue(); tryAdvSIMDModImmFP() local 13026 SDValue Value; LowerBUILD_VECTOR() local 15607 getStructuredLoadFunction(Module * M,unsigned Factor,bool Scalable,Type * LDVTy,Type * PtrTy) getStructuredLoadFunction() argument 15623 getStructuredStoreFunction(Module * M,unsigned Factor,bool Scalable,Type * STVTy,Type * PtrTy) getStructuredStoreFunction() argument 15983 const unsigned Factor = 2; lowerDeinterleaveIntrinsicToLoad() local 16058 const unsigned Factor = 2; lowerInterleaveIntrinsicToStore() local 21486 SDValue Value = ST->getValue(); performSTORECombine() local 21540 SDValue Value = MST->getValue(); performMSTORECombine() local [all...] |
| /freebsd-src/contrib/pam_modules/pam_passwdqc/ |
| H A D | wordset_4k.c | 6 * I've replaced two 7-character words to save space. 1393 "factor", 1927 "ideal", 3881 "value",
|
| /freebsd-src/crypto/openssl/crypto/modes/asm/ |
| H A D | ghash-x86.pl | 2 # Copyright 2010-2020 The OpenSSL Project Authors. All Rights Reserved. 19 # The module implements "4-bit" GCM GHASH function and underlying 20 # single multiplication operation in GF(2^128). "4-bit" means that it 21 # uses 256 bytes per-key table [+64/128 bytes fixed table]. It has two 24 # "528B" variant of "4-bit" method utilizing additional 256+16 bytes 25 # of per-key storage [+512 bytes shared table]. Performance results 31 # Pentium 105/111(**) - 50 44 # assembler results are for "528B";-) 45 # (**) second number is result for code compiled with -fPIC flag, 47 # position-independent; [all …]
|
| /freebsd-src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 1 //===- ConstantRange.cpp - ConstantRange implementation -------- [all...] |
| /freebsd-src/share/dict/ |
| H A D | web2a | 12 A-b-c book 13 A-b-c method 14 abdomino-uterotomy 15 Abdul-baha 16 a-be 20 able-bodied 21 able-bodiedness 22 able-minded 23 able-mindedness 27 Abor-miri [all …]
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 1 //===- SLPVectorizer.cpp - A bottom up SLP Vectorizer -------- 2203 findBestRootPair(ArrayRef<std::pair<Value *,Value * >> Candidates,int Limit=LookAheadHeuristics::ScoreFail) findBestRootPair() argument 3976 __anon1d05f9c62202(const std::tuple<Value *, int, unsigned> &X, const std::tuple<Value *, int, unsigned> &Y) clusterSortPtrAccesses() argument 5697 __anon1d05f9c64d02(ArrayRef<std::pair<Value *, Value *>> Cand) buildTree_rec() argument 5710 __anon1d05f9c64e02(ArrayRef<std::pair<Value *, Value *>> Cand) buildTree_rec() argument 7243 createShuffleVector(Value * V1,Value *,ArrayRef<int> Mask) const createShuffleVector() argument 7266 resizeToMatch(Value * &,Value * &) const resizeToMatch() argument 7273 createShuffle(const PointerUnion<Value *,const TreeEntry * > & P1,const PointerUnion<Value *,const TreeEntry * > & P2,ArrayRef<int> Mask) createShuffle() argument 7669 finalize(ArrayRef<int> ExtMask,unsigned VF=0,function_ref<void (Value * &,SmallVectorImpl<int> &)> Action={}) finalize() argument 8986 __anon1d05f9c69902(const std::pair<Value *, const TreeEntry *> &Pair) getTreeCost() argument 10444 finalize(ArrayRef<int> ExtMask,unsigned VF=0,function_ref<void (Value * &,SmallVectorImpl<int> &)> Action={}) finalize() argument 11819 vectorizeTree(const ExtraValueToDebugLocsMap & ExternallyUsedValues,SmallVectorImpl<std::pair<Value *,Value * >> & ReplacedExternals,Instruction * ReductionRoot) vectorizeTree() argument 14667 __anon1d05f9c610c02(const std::pair<Value *, unsigned> &P) tryToReduce() argument 15233 emitReusedOps(Value * VectorizedValue,IRBuilderBase & Builder,ArrayRef<Value * > VL,const MapVector<Value *,unsigned> & SameValuesCounter,const DenseMap<Value *,Value * > & TrackedToOrig) emitReusedOps() argument 15234 emitReusedOps(Value * VectorizedValue,IRBuilderBase & Builder,ArrayRef<Value * > VL,const MapVector<Value *,unsigned> & SameValuesCounter,const DenseMap<Value *,Value * > & TrackedToOrig) emitReusedOps() argument [all...] |
| /freebsd-src/contrib/bmake/mk/ |
| H A D | ChangeLog | 1 2024-06-22 Simon J Gerraty <sjg@beast.crufty.net> 3 * install-mk (MK_VERSION): 20240616 9 2024-05-31 Simon J Gerraty <sjg@beast.crufty.net> 14 2024-05-04 Simon J Gerraty <sjg@beast.crufty.net> 16 * install-mk (MK_VERSION): 20240504 19 sub-make building DIRDEPS_CACHE. 21 2024-04-24 Simon J Gerraty <sjg@beast.crufty.net> 25 2024-04-18 Simon J Gerraty <sjg@beast.crufty.net> 31 * install-mk (MK_VERSION): 20240414 33 2024-04-09 Simon J Gerraty <sjg@beast.crufty.net> [all …]
|
| /freebsd-src/contrib/wpa/src/drivers/ |
| H A D | nl80211_copy.h | 6 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net> 13 * Copyright 2015-2017 Intel Deutschland GmbH 14 * Copyright (C) 2018-2023 Intel Corporation 32 * be careful not to break things - i.e. don't move anything around or so 74 * - a setup station entry is added, not yet authorized, without any rate 76 * - when the TDLS setup is done, a single NL80211_CMD_SET_STATION is valid 79 * - %NL80211_TDLS_ENABLE_LINK is then used 80 * - after this, the only valid operation is to remove it by tearing down 95 * Frame registration is done on a per-interface basis and registrations 137 * software, like the AP-VLA [all...] |
| /freebsd-src/sys/netinet/tcp_stacks/ |
| H A D | bbr.c | 1 /*- 2 * Copyright (c) 2016-2020 Netflix, Inc. 29 * BBR - Congestion Based Congestion Control 134 #define TCPT_RANGESET_NOSLOP(tv, value, tvmin, tvmax) do { \ argument 135 (tv) = (value); \ 159 /* Should the following be dynamic too -- loss wise */ 193 * num-measures > min(0) and 219 * bbr_high_gain is the 2/ln(2) value we need 227 /* thresholds for reduction on drain in sub-state [all...] |