/freebsd/sys/contrib/device-tree/Bindings/iio/dac/ |
H A D | adi,ltc2664.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Michael Hennerich <michael.hennerich@analog.com> 11 - Kim Seer Paller <kimseer.paller@analog.com> 14 Analog Devices LTC2664 4 channel, 12-/16-Bit, +-10V DAC 15 https://www.analog.com/media/en/technical-documentation/data-sheets/2664fa.pdf 20 - adi,ltc2664 25 spi-max-frequency: 28 vcc-supply: [all …]
|
/freebsd/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/tools/tools/ath/athrd/ |
H A D | athrd.c | 1 /*- 2 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting 171 HAL_CAPABILITIES *pCap = &ahp->ah_caps; in getChannelEdges() 174 *low = pCap->halLow5GhzChan; in getChannelEdges() 175 *high = pCap->halHigh5GhzChan; in getChannelEdges() 179 *low = pCap->halLow2GhzChan; in getChannelEdges() 180 *high = pCap->halHigh2GhzChan; in getChannelEdges() 230 NULL1_WORLD = 0x03, /* For 11b-only countries (no 11a allowed) */ 235 FCC4_FCCA = 0x12, /* USA - Public Safety */ 262 MKK1_FCCA = 0x48, /* Japan (JP1-1) */ [all …]
|
/freebsd/sys/ofed/drivers/infiniband/ulp/sdp/ |
H A D | sdp_rx.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0 16 * - Redistributions of source code must retain the above 20 * - Redistributions in binary form must reproduce the above 39 "Receive buffer size scale factor."); 41 /* Like tcp_fin - called when SDP_MID_DISCONNECT is received */ 46 sdp_dbg(ssk->socket, "%s\n", __func__); in sdp_handle_disconn() 49 if (TCPS_HAVERCVDFIN(ssk->state) == 0) in sdp_handle_disconn() 50 socantrcvmore(ssk->socket); in sdp_handle_disconn() 52 switch (ssk->state) { in sdp_handle_disconn() [all …]
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | fse_compress.c | 1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0-only 4 * Copyright (c) 2013-2020, Yann Collet, Facebook, Inc. 7 * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy 8 * - Public forum : https://groups.google.com/forum/#!forum/lz4c 10 * This source code is licensed under both the BSD-style license (found in the 13 * 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() 81 U32 highThreshold = tableSize-1; in FSE_buildCTable_wksp() 85 tableU16[-2] = (U16) tableLog; in FSE_buildCTable_wksp() [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/stand/common/ |
H A D | gfx_fb.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 37 * ALL pixel data is assumed to be 32-bit BGRA (byte order Blue, Green, Red, 43 * 32-bit to/from 32-bit is trivial case. 44 * 32-bit to/from 24-bit is also simple - we just drop the alpha channel. 45 * 32-bit to/from 16-bit is more complicated, because we nee to handle 46 * data loss from 32-bit to 16-bit. While reading/writing from/to video, we 47 * need to apply masks of 16-bit color components. This will preserve 48 * colors for terminal text. For 32-bit truecolor PMG images, we need to 49 * translate 32-bit colors to 15/16 bit colors and this means data loss. [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APInt.cpp | 1 //===-- APInt.cpp - Implement APInt class ---------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 21 #include "llvm/Config/llvm-config.h" 53 r = cdigit - '0'; in getDigit() 57 r = cdigit - 'A'; in getDigit() 58 if (r <= radix - 11U) in getDigit() 61 r = cdigit - 'a'; in getDigit() 62 if (r <= radix - 11U) in getDigit() [all …]
|
/freebsd/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() 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() 99 am_mask = ahp->ah_2g_paprd_rate_mask_ht40 & AH_PAPRD_AM_PM_MASK; in ar9300_paprd_setup_single_table() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | ISDOpcodes.h | 1 //===-- llvm/CodeGen/ISDOpcodes.h - CodeGen opcodes -------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 20 /// ISD namespace - This namespace contains an enum which represents all of the 25 //===--------------------------------------------------------------------===// 26 /// ISD::NodeType enum - This enum defines the target-independent operators 29 /// Targets may also define target-dependent operator codes for SDNodes. For 31 /// Targets should aim to use target-independent operators to model their 32 /// instruction sets as much as possible, and only use target-dependent [all …]
|
H A D | SelectionDAGNodes.h | 1 //===- llvm/CodeGen/SelectionDAGNodes.h - SelectionDAG Nodes ----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 16 //===----------------------------------------------------------------------===// 134 //===----------------------------------------------------------------------===// 164 inline SDNode *operator->() const { return Node; } 207 // Forwarding methods - These forward to the corresponding methods in SDNode. 225 /// specified operand without crossing any side-effecting instructions. 226 /// In practice, this looks through token factors and non-volatile loads. 242 V.ResNo = -1U; [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/ |
H A D | llvm-profdata.cpp | 1 //===- llvm-profdata.cpp - LLVM profile data tool -------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // llvm-profdata merges .profdata files. 11 //===----------------------------------------------------------------------===// 51 // https://llvm.org/docs/CommandGuide/llvm-profdata.html has documentations 57 "https://llvm.org/docs/CommandGuide/llvm-profdata.html#profdata-show"); 63 "https://llvm.org/docs/CommandGuide/llvm-profdata.html#profdata-order"); 68 "https://llvm.org/docs/CommandGuide/llvm-profdata.html#profdata-overlap"); 73 "https://llvm.org/docs/CommandGuide/llvm-profdata.html#profdata-merge"); [all …]
|
/freebsd/sys/dev/igc/ |
H A D | igc_defines.h | 1 /*- 4 * SPDX-License-Identifier: BSD-3-Clause 72 #define IGC_CTRL_EXT_IAME 0x08000000 /* Int ACK Auto-mask */ 89 #define IGC_RXD_STAT_PIF 0x80 /* passed in-exact filter */ 127 #define IGC_MANC_SMBUS_EN 0x00000001 /* SMBus Enabled - RO */ 128 #define IGC_MANC_ASF_EN 0x00000002 /* ASF Enabled - RO */ 214 #define IGC_CTRL_ASDE 0x00000020 /* Auto-speed detect enable */ 216 #define IGC_CTRL_ILOS 0x00000080 /* Invert Loss-Of Signal */ 278 /* 1000/H is not supported, nor spec-compliant. */ 328 #define IGC_TCTL_RTLC 0x01000000 /* Re-transmit on late collision */ [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
H A D | LoongArchISelLowering.cpp | 1 //=- LoongArchISelLowering.cpp - LoongArch DAG Lowering Implementation ---===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 37 #define DEBUG_TYPE "loongarch-isel-lowering" 41 static cl::opt<bool> ZeroDivCheck("loongarch-check-zero-division", cl::Hidden, 102 // Expand bitreverse.i16 with native-width bitrev and shift for now, before in LoongArchTargetLowering() 107 // LA32 does not have REVB.2W and REVB.D due to the 64-bit operands, and in LoongArchTargetLowering() 109 // and i32 could still be byte-swapped relatively cheaply. in LoongArchTargetLowering() 443 if (*I != -1 && *I != ExpectedIndex) in fitsRegularPattern() [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 118 /* 0x200- [all...] |
/freebsd/contrib/arm-optimized-routines/math/tools/ |
H A D | remez.jl | 2 # -*- julia -*- 4 # remez.jl - implementation of the Remez algorithm for polynomial approximation 6 # Copyright (c) 2015-2019, Arm Limited. 7 # SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception 11 # ---------------------------------------------------------------------- 33 # ---------------------------------------------------------------------- 34 # Global variables configured by command-line options. 35 floatsuffix = "" # adjusted by --floatsuffix 36 xvarname = "x" # adjusted by --variable 37 epsbits = 256 # adjusted by --bits [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 1 //===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 71 #define DEBUG_TYPE "x86-isel" 74 "x86-experimental-pref-innermost-loop-alignment", cl::init(4), 78 "alignment set by x86-experimental-pref-loop-alignment."), 82 "x86-br-merging-base-cost", cl::init(2), 88 "will be merged, and above which conditionals will be split. Set to -1 " 93 "x86-br-merging-ccmp-bias", cl::init(6), [all …]
|
/freebsd/contrib/pam_modules/pam_passwdqc/ |
H A D | wordset_4k.c | 6 * I've replaced two 7-character words to save space. 2347 "mid", 3130 "scale",
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineBlockPlacement.cpp | 1 //===- MachineBlockPlacement.cpp - Basic Block Code Layout optimization ---===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 18 // The algorithm works from the inner-most loop within a function outward, and 23 // function in-order. 25 //===----------------------------------------------------------------------===// 78 #define DEBUG_TYPE "block-placement" 88 "align-all-blocks", 94 "align-all-nofallthru-blocks", 95 cl::desc("Force the alignment of all blocks that have no fall-through " [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 1 //===- DAGCombiner.cpp - Implement a DAG node combiner --------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 16 //===----------------------------------------------------------------------===// 88 STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created"); 89 STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created"); 99 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden, 103 UseTBAA("combiner-use-tbaa", cl::Hidden, cl::init(true), 108 CombinerAAOnlyFunc("combiner-aa-only-func", cl::Hidden, 109 cl::desc("Only use DAG-combiner alias analysis in this" [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | audio | 2 #------------------------------------------------------------------------------ 12 >12 belong 1 8-bit ISDN mu-law, 14 >12 belong 2 8-bit linear PCM [REF-PCM], 16 >12 belong 3 16-bit linear PCM, 18 >12 belong 4 24-bit linear PCM, 20 >12 belong 5 32-bit linear PCM, 22 >12 belong 6 32-bit IEEE floating point, 24 >12 belong 7 64-bit IEEE floating point, 28 >12 belong 11 8-bit fixed point, 29 >12 belong 12 16-bit fixed point, [all …]
|
H A D | images | 2 #------------------------------------------------------------------------------ 4 # images: file(1) magic for image formats (see also "iff", and "c-lang" for 9 # merging several one- and two-line files into here. 13 # Targa - matches `povray', `ppmtotga' and `xv' outputs 19 # Note: called by DROID "Truevision TGA Bitmap" version 1.0 via PUID x-fmt/367 23 # or theoretically 2-128 reserved for use by Truevision or 128-255 may be used for developer applic… 32 # Targa image data (strength=70=110-40) before some Commodore disc image (strength=70=70+0 ./c64) l… 35 !:strength -40 37 #>(2.S-2) belong !0x28632943 52 >>>>>>>0 use tga-image [all …]
|
/freebsd/contrib/mandoc/ |
H A D | roff.7 | 3 .\" Copyright (c) 2010-2019, 2022-2023 Ingo Schwarze <schwarze@openbsd.org> 33 many real-world manuals use small numbers of 78 They provide free-form text to be printed; the formatting of the text 82 documents may contain only graphable 7-bit ASCII characters, the space 94 Text following an escaped double-quote 104 .Bd -literal -offset indent -compact 117 followed by either an open-parenthesis 119 for two-character sequences; an open-bracket 121 for n-character sequences (terminated at a close-bracket 126 .Bl -tag -width Ds -offset indent -compact [all …]
|
/freebsd/sys/gnu/dev/bwn/phy_n/ |
H A D | if_bwn_phy_n_core.c | 23 Boston, MA 02110-1301, USA. 165 return ((mac->mac_phy.phy_n->ipa2g_on && band == BWN_BAND_2G) || in bwn_nphy_ipa() 166 (mac->mac_phy.phy_n->ipa5g_on && band == BWN_BAND_5G)); in bwn_nphy_ipa() 169 /* http://bcm-v4.sipsolutions.net/802.11/PHY/N/RxCoreGetState */ 180 /* http://bcm-v4.sipsolutions.net/802.11/PHY/N/ForceRFSeq */ 196 BWN_WARNPRINTF(mac->mac_sc, "%s: seq %d > max", __func__, seq); in bwn_nphy_force_rf_sequence() 207 BWN_ERRPRINTF(mac->mac_sc, "RF sequence status timeout\n"); in bwn_nphy_force_rf_sequence() 219 /* http://bcm-v4.sipsolutions.net/802.11/PHY/N/RFCtrlOverrideRev7 */ 224 struct bwn_phy *phy = &mac->mac_phy; in bwn_nphy_rf_ctl_override_rev7() 234 if (phy->rev >= 19 || phy->rev < 3) { in bwn_nphy_rf_ctl_override_rev7() [all …]
|
/freebsd/sys/contrib/dev/athk/ath10k/ |
H A D | wmi.h | 1 /* SPDX-License-Identifier: ISC */ 3 * Copyright (c) 2005-2011 Atheros Communications Inc. 4 * Copyright (c) 2011-2017 Qualcomm Atheros, Inc. 5 * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved. 28 * 1. Add new WMI commands ONLY within the specified range - 0x9000 - 0x9fff 44 * variable is already 4-byte aligned by virtue of being a u32 526 * for wmi_services is 64 as target is using only 4-bits of each 32-bit 532 __le32_to_cpu((wmi_svc_bmap)[((svc_id) - (len)) / 28]) & \ 533 BIT(((((svc_id) - (len)) % 28) & 0x1f) + 4)) 1159 /** DFS-specific commands */ [all …]
|