/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ |
H A D | fsl,mu-msi.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/interrupt-controller/fsl,mu-msi.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Freescale/NXP i.MX Messaging Unit (MU) work as msi controller 10 - Frank Li <Frank.Li@nxp.com> 15 and control) through the MU interface. The MU also provides the ability 16 for one processor (A side) to signal the other processor (B side) using 19 Because the MU manages the messaging between processors, the MU uses 20 different clocks (from each side of the different peripheral buses). [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/mailbox/ |
H A D | fsl,mu.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/mailbox/fsl,mu.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: NXP i.MX Messaging Unit (MU) 10 - Dong Aisheng <aisheng.dong@nxp.com> 15 and control) through the MU interface. The MU also provides the ability 18 Because the MU manages the messaging between processors, the MU uses 19 different clocks (from each side of the different peripheral buses). 20 Therefore, the MU must synchronize the accesses from one side to the [all …]
|
/freebsd/sys/contrib/dev/iwlwifi/fw/api/ |
H A D | datapath.h | 1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ 4 * Copyright (C) 2012-2014, 2018-2022 Intel Corporation 5 * Copyright (C) 2013-2015 Intel Mobile Communications GmbH 6 * Copyright (C) 2016-2017 Intel Deutschland GmbH 12 * enum iwl_data_path_subcmd_ids - dat [all...] |
H A D | rx.h | 1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ 3 * Copyright (C) 2012-2014, 2018-2024 Intel Corporation 4 * Copyright (C) 2013-2015 Intel Mobile Communications GmbH 5 * Copyright (C) 2015-2017 Intel Deutschland GmbH 10 /* API for pre-900 [all...] |
/freebsd/contrib/wpa/src/tls/ |
H A D | libtommath.c | 4 * http://libtom.org/files/ltm-0.41.tar.bz2 84 #define MP_MASK ((((mp_digit)1)<<((mp_digit)DIGIT_BIT))-((mp_digit)1)) 86 #define MP_LT -1 /* less than */ 94 #define MP_MEM -2 /* out of mem */ 95 #define MP_VAL -3 /* invalid input */ 114 /* size of comba arrays, should be at least 2 * 2**(BITS_PER_WORD - BITS_PER_DIGIT*2) */ 115 #define MP_WARRAY (1 << (sizeof(mp_word) * CHAR_BIT - 2 * DIGIT_BIT + 1)) 124 /* ---> Basic Manipulations <--- */ 125 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO) 126 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO) [all …]
|
/freebsd/sys/contrib/dev/athk/ath11k/ |
H A D | debugfs_htt_stats.h | 1 /* SPDX-License-Identifier: BSD-3-Clause-Clear */ 3 * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved. 253 * The histogram bins are 0-29, 30-59, 60-89 and so on. The are 465 /* element 0,1, ...7 -> NSS 1,2, ...8 */ 473 * (400us, 800us, 1600us & 3200us) in each mcs (0-11) 501 /* element 0,1, ...7 -> NSS 1,2, ...8 */ 512 /* Counters to track number of rx packets in each GI in each mcs (0-11) */ 536 /* MU MIMO stats per hwQ */ 595 /* histogram of ppdu post to hwsch - > cmd status received */ 623 * histogram bins are 0-29, 30-59, 60-89 and so on. The are 10 bins [all …]
|
/freebsd/contrib/mandoc/ |
H A D | mandoc_char.7 | 5 .\" Copyright (c) 2011, 2013, 2015, 2017-2020, 2022 61 In particular, in English manual pages, do not use special-character 67 the en-dash (\(en), 68 the em-dash (\(em), 75 .Bd -unfilled -offset indent 76 blue-eyed 77 lorry-driver 80 The en-dash is used to separate the two elements of a range, 81 or can be used the same way as an em-dash. 84 .Bd -unfilled -offset indent [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | ELFNixPlatform.cpp | 1 //===------ ELFNixPlatform.cpp - Utilities for executing MachO in Orc --- 175 notifyAdding(ResourceTracker & RT,const MaterializationUnit & MU) notifyAdding() argument 736 auto &B = Sym->getBlock(); preserveInitSections() local 745 for (auto *B : InitSection.blocks()) preserveInitSections() local 815 for (auto *B : TLSInfoEntrySection->blocks()) { fixTLVSectionsAndEdges() local [all...] |
H A D | COFFPlatform.cpp | 1 //===------- COFFPlatform.cpp - Utilities for executing COFF in Orc -- 135 addImageBaseRelocationEdge(jitlink::Block & B,jitlink::Symbol & ImageBase) addImageBaseRelocationEdge() argument 324 notifyAdding(ResourceTracker & RT,const MaterializationUnit & MU) notifyAdding() argument 865 for (auto *B : Sec.blocks()) preserveInitializerSections() local 900 for (auto *B : S.blocks()) { registerObjectPlatformSectionsInBootstrap() local [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | GVNHoist.cpp | 1 //===- GVNHoist.cpp - Hoist scalar and load expressions -------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 // values. The primary goals of code-hoisting are: 18 // are basically the dominance-frontiers in the inverse graph. So we introduce a 26 // they are already handled by GVN-PRE. It is advisable to run gvn-hoist before 27 // and after gvn-pre because gvn-pre creates opportunities for more instructions 34 //===----------------------------------------------------------------------===// 80 #define DEBUG_TYPE "gvn-hoist" 92 MaxHoistedThreshold("gvn-max-hoisted", cl::Hidden, cl::init(-1), [all …]
|
H A D | LICM.cpp | 1 //===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 // safe. This pass also promotes must-aliased memory locations in the loop to 16 // enables and simplifies subsequent optimizations in the middle-end. 18 // responsibility of the back-end, which has more accurate information about 20 // increase live-ranges. 27 // 2. Scalar Promotion of Memory - If there is a store instruction inside of 31 // B. There are no stores or loads in the loop which _may_ alias the 37 //===----------------------------------------------------------------------===// [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyTIL.h | 1 //===- ThreadSafetyTIL.h ----------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 // reused for other non-C++ languages. All dependencies on clang/llvm should 17 // class A { Mutex mu; int dat GUARDED_BY(this->mu); } 18 // class B { A a; } 20 // void foo(B* b) { 21 // (*b).a.mu.lock(); // locks (*b).a.mu 22 // b->a.dat = 0; // substitute &b->a for 'this'; 23 // // requires lock on (&b->a)->mu [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MemorySSA.cpp | 1 //===- MemorySSA.cpp - Memory SSA Builder ---------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 30 #include "llvm/Config/llvm-config.h" 64 DotCFGMSSA("dot-cfg-mssa", 76 "memssa-check-limit", cl::Hidden, cl::init(100), 88 VerifyMemorySSAX("verify-memoryssa", cl::location(VerifyMemorySSA), 105 if (MemoryAccess *MA = MSSA->getMemoryAccess(BB)) in emitBasicBlockStartAnnot() 111 if (MemoryAccess *MA = MSSA->getMemoryAccess(I)) in emitInstructionAnnot() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | MemorySSA.h | 1 //===- MemorySSA.h - Build Memory SSA ---------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 63 /// store, all the MemoryUses on its use lists are may-aliases of that store 83 //===----------------------------------------------------------------------===// 133 INVALID_MEMORYACCESS_ID = -1U 161 unsigned ID = V->getValueID(); in classof() 185 return this->AllAccessType::getIterator(); in getIterator() 188 return this->AllAccessType::getIterator(); in getIterator() 191 return this->AllAccessType::getReverseIterator(); in getReverseIterator() [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/powerpc/power9/ |
H A D | other.json | 50 …dified (M) data from another core's ECO L3 on the same chip due to a data side request. When using… 65 "BriefDescription": "Read-write data cache collisions" 90 "BriefDescription": "D-cache invalidates sent over the reload bus to the core" 200 "BriefDescription": "Read-write data cache collisions" 280 …-word boundary, which causes it to require an additional slice than than what normally would be re… 300 "BriefDescription": "I-cache Invalidates sent over the realod bus to the core" 395 …-word boundary, which causes it to require an additional slice than than what normally would be re… 405 …"BriefDescription": "TM snoop that is a store hits line in L3 in M or Mu state (exclusive modified… 430 "BriefDescription": "TM Load (fav or non-fav) ran into conflict (failed)" 450 …"BriefDescription": "A TM-ineligible instruction tries to execute inside a transaction and the LSU… [all …]
|
/freebsd/sys/dev/arcmsr/ |
H A D | arcmsr.h | 11 ** SPDX-License-Identifier: BSD-3-Clause 13 ** Copyright (C) 2002 - 2012, Areca Technology Corporation All rights reserved. 43 #define ARCMSR_VIRTUAL_DEVICE_ID (ARCMSR_MAX_TARGETID - 1) 71 #define offsetof(type, member) ((size_t)(&((type *)0)->member)) 197 #define CHIP_REG_READ32(s, b, r) bus_space_read_4(acb->btag[b], acb->bhandle[b], offsetof(struct s,… argument 198 #define CHIP_REG_WRITE32(s, b, r, d) bus_space_write_4(acb->btag[b], acb->bhandle[b], offsetof(stru… argument 199 #define READ_CHIP_REG32(b, r) bus_space_read_4(acb->btag[b], acb->bhandle[b], r) argument 200 #define WRITE_CHIP_REG32(b, r, d) bus_space_write_4(acb->btag[b], acb->bhandle[b], r, d) argument 374 ** Set if Outbound Doorbell register bits 30:1 have a non-zero 486 /* ARC-1884 doorbell sync */ [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 …]
|
/freebsd/share/misc/ |
H A D | pci_vendors | 5 # Date: 2025-03-09 03:15:02 8 # the PCI ID Project at https://pci-ids.ucw.cz/. 14 # (version 2 or higher) or the 3-clause BSD License. 25 # device device_name <-- single tab 26 # subvendor subdevice subsystem_name <-- two tabs 30 # This is a relabelled RTL-8139 31 8139 AT-2500TX V3 Ethernet 41 7a09 PCI-to-PCI Bridge 51 7a19 PCI-to-PCI Bridge 57 7a29 PCI-to-PCI Bridge [all …]
|
/freebsd/usr.bin/clang/llvm-mca/ |
H A D | llvm-mca.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/contrib/device-tree/src/arm/nxp/imx/ |
H A D | imx7s.dtsi | 1 // SPDX-License-Identifier: GPL-2.0+ OR MIT 6 #include <dt-bindings/clock/imx7d-clock.h> 7 #include <dt-bindings/power/imx7-power.h> 8 #include <dt-bindings/gpio/gpio.h> 9 #include <dt-bindings/input/input.h> 10 #include <dt-bindings/interrupt-controller/arm-gic.h> 11 #include <dt-bindings/reset/imx7-reset.h> 12 #include "imx7d-pinfunc.h" 15 #address-cells = <1>; 16 #size-cells = <1>; [all …]
|
/freebsd/lib/libpmc/pmu-events/arch/powerpc/power8/ |
H A D | other.json | 11 …"BriefDescription": "Cycles in 2-lpar mode. Threads 0-3 belong to Lpar0 and threads 4-7 belong to … 17 …cles in 4 LPAR mode. Threads 0-1 belong to lpar0, threads 2-3 belong to lpar1, threads 4-5 belong … 113 …to the Target Address Prediction from the Count Cache or Link Stack. Only XL-form branches that re… 161 …ed. I-form branches do not set this event. In addition, B-form branches which do not use the BHT d… 167 …ed. I-form branches do not set this event. In addition, B-form branches which do not use the BHT d… 197 …ional Branch Completed on BR0 that had its target address predicted. Only XL-form branches set thi… 203 …ional Branch Completed on BR1 that had its target address predicted. Only XL-form branches set thi… 215 …t used for this branch. This can be an I-form branch, a B-form branch with BO-field set to branch … 221 …t used for this branch. This can be an I-form branch, a B-form branch with BO-field set to branch … 371 "BriefDescription": "IFU Finished a (non-branch) instruction", [all …]
|
/freebsd/contrib/ntp/html/ |
H A D | keygen.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 4 <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> 6 <title>ntp-keygen - generate public and private keys</title> 10 <h3><tt>ntp-keygen</tt> - generate public and private keys</h3> 14 <!-- #BeginDate format:En2m -->24-Jul-2018 07:27<!-- #EndDate --> 31 …<p id="intro"><tt>ntp-keygen [ -deGHIMPT ] [ -b <i>modulus</i> ] [ -c [ RSA-MD2 | RSA-MD5 | RSA-SHA 32 | RSA-SHA1 | RSA-MDC2 | RSA-RIPEMD160 | DSA-SHA | DSA-SHA1 ] ] 33 [ -C <i>cipher</i> ] [-i <i>group</i> ] [ -l <em>days</em>] 34 [ -m <i>modulus</i> ] [ -p <i>passwd1</i> ] [ -q <i>passwd2</i> ] 35 [ -S [ RSA | DSA ] ] [ -s <i>host</i> ] [ -V <i>nkeys</i> ]</tt></p> [all …]
|
/freebsd/contrib/ntp/ntpd/ |
H A D | ntp_crypto.c | 2 * ntp_crypto.c - NTP version 4 public key routines 42 * calcomp - compare two calendar structures, ignoring yearday and weekday; like strcmp 49 diff = pjd1->year - pjd2->year; in calcomp() 50 if (diff < 0) return -1; else if (diff > 0) return 1; in calcomp() 52 diff = pjd1->month - pjd2->month; in calcomp() 53 if (diff < 0) return - in calcomp() [all...] |
/freebsd/share/doc/psd/06.Clang/ |
H A D | Clang.ms | 1 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved. 38 The C Programming Language - Reference Manual 47 by Brian W. Kernighan and Dennis M. Ritchie, Prentice-Hall, Inc., 1978. 51 .EH 'PSD:6-%''The C Programming Language - Reference Manual' 52 .OH 'The C Programming Language - Reference Manual''PSD:6-%' 56 This manual describes the C language on the DEC PDP-11\(dg, the DEC VAX-11, 59 \(dg DEC PDP-11, and DEC VAX-11 are trademarks of Digital Equipment Corporation. 61 \(dd 3B 20 is a trademark of AT&T. 63 and the AT&T 3B 20\(dd. 65 out implementation-dependent details. With few exceptions, these dependencies [all …]
|
/freebsd/contrib/wpa/src/common/ |
H A D | qca-vendor.h | 3 * Copyright (c) 2014-2017, Qualcomm Atheros, Inc. 4 * Copyright (c) 2018-2020, The Linux Foundation 5 * Copyright (c) 2021-2023, Qualcomm Innovation Center, Inc. 28 * enum qca_radiotap_vendor_ids - QCA radiotap vendor namespace IDs 41 * Global NSS configuration - Applies to all bands (2.4 GHz and 5/6 GHz) 62 * Per band NSS configuration - Applies to the 2.4 GHz or 5/6 GHz band 79 * Global chain configuration - Applies to all bands (2.4 GHz and 5/6 GHz) 96 * Per band chain configuration - Applies to the 2.4 GHz or 5/6 GHz band 117 * Case 1: CONFIG_NSS + CONFIG_TX_NSS/RX_NSS - Only CONFIG_NSS is applied 120 * Case 2: CONFIG_NSS + CONFIG_TX_NSS + CONFIG_RX_NSS - Same NSS values are [all …]
|