| /freebsd/share/examples/pf/ | 
| H A D | queue3 | 6 altq on $ext_if priq bandwidth 10Mb queue { pri-low pri-med pri-high }7 queue pri-low priority 0
 8 queue pri-med priority 1 priq(default)
 9 queue pri-high priority 2
 11 pass out on $ext_if proto tcp from any to any port 22 \
 12     queue(pri-med, pri-high)
 13 pass out on $ext_if proto tcp from any to any port 80 queue pri-med
 14 pass in  on $ext_if proto tcp from any to any port 80 queue pri-low
 
 | 
| /freebsd/sys/contrib/device-tree/Bindings/iio/filter/ | 
| H A D | adi,admv8818.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)3 ---
 5 $schema: http://devicetree.org/meta-schemas/core.yaml#
 7 title: ADMV8818 Digitally Tunable, High-Pass and Low-Pass Filter
 10   - Antoniu Miclaus <antoniu.miclaus@analog.com>
 15     The device features four independently controlled high-pass
 16     filters (HPFs) and four independently controlled low-pass filters
 24       - adi,admv8818
 29   spi-max-frequency:
 37   clock-names:
 [all …]
 
 | 
| /freebsd/lib/libc/locale/ | 
| H A D | collate.c | 1 /*-2  * SPDX-License-Identifier: BSD-2-Clause
 54 #include "un-namespace.h"
 74 	{{0}, "C.UTF-8"}, 1, 0, 0, 0
 84 	if (table->map && (table->maplen > 0)) {  in destruct_collate()
 85 		(void) munmap(table->map, table->maplen);  in destruct_collate()
 97 	else if (strcmp(encoding, "C.UTF-8") == 0)  in __collate_load()
 104 	table->header.header.destructor = destruct_collate;  in __collate_load()
 138 	table->__collate_load_error = 1;  in __collate_load_tables_l()
 146 	if (asprintf(&buf, "%s/%s/LC_COLLATE", _PathLocale, encoding) == -1)  in __collate_load_tables_l()
 [all …]
 
 | 
| /freebsd/sys/arm/allwinner/ | 
| H A D | if_emacreg.h | 1 /*-2  * SPDX-License-Identifier: BSD-2-Clause
 103  * Byte 1: 0x43 -> Ascii code 'C'
 104  * Byte 2: 0x41 -> Ascii code 'A'
 105  * Byte 3: 0x4d -> Ascii code 'M'
 107  * Byte 5: Low byte of received packet's status
 109  * Byte 7: Low byte of packet size
 125 /* Pass all Frames */
 128 /* Pass Control Frames */
 131 /* Pass Frames with CRC Error */
 [all …]
 
 | 
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ | 
| H A D | SROA.h | 1 //===- SROA.h - Scalar Replacement Of Aggregates --------[all...]
 | 
| /freebsd/sys/contrib/device-tree/Bindings/pinctrl/ | 
| H A D | qcom,pmic-gpio.txt | 6 - compatible:10 		    "qcom,pm8005-gpio"
 11 		    "qcom,pm8018-gpio"
 12 		    "qcom,pm8038-gpio"
 13 		    "qcom,pm8058-gpio"
 14 		    "qcom,pm8916-gpio"
 15 		    "qcom,pm8917-gpio"
 16 		    "qcom,pm8921-gpio"
 17 		    "qcom,pm8941-gpio"
 18 		    "qcom,pm8950-gpio"
 [all …]
 
 | 
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ | 
| H A D | LowerSwitch.cpp | 1 //===- LowerSwitch.cpp - Eliminate Switch instructions --------------------===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 13 //===----------------------------------------------------------------------===//
 33 #include "llvm/Pass.h"
 49 #define DEBUG_TYPE "lower-switch"
 54   APInt Low, High;  member
 62   // Note: Ranges must be sorted, non-overlapping and non-adjacent.  in IsInRanges()
 65   // then check if the Low field is <= R.Low. If so, we  in IsInRanges()
 69   return I != Ranges.end() && I->Low.sle(R.Low);  in IsInRanges()
 [all …]
 
 | 
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ | 
| H A D | SystemZPostRewrite.cpp | 1 //==---- SystemZPostRewrite.cpp - Select pseudos after RegAlloc ---*- C++ -*-=//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 9 // This file contains a pass that is run immediately after VirtRegRewriter
 11 // target instructions before any later pass might substitute a register for
 14 //===----------------------------------------------------------------------===//
 25 #define DEBUG_TYPE "systemz-postrewrite"
 27 STATISTIC(LOCRMuxJumps, "Number of LOCRMux jump-sequences (lower is better)");
 65 INITIALIZE_PASS(SystemZPostRewrite, "systemz-post-rewrite",
 66                 "SystemZ Post Rewrite pass", false, false)
 [all …]
 
 | 
| /freebsd/crypto/openssl/test/recipes/30-test_evp_data/ | 
| H A D | evpkdf_pbkdf2.txt | 2 # Copyright 2001-2024 The OpenSSL Project Authors. All Rights Reserved.19 Ctrl.pass = pass:password
 28 Ctrl.pass = pass:password
 37 Ctrl.pass = pass:password
 46 Ctrl.pass = pass:password
 55 Ctrl.pass = pass:password
 64 Ctrl.pass = pass:password
 73 Ctrl.pass = pass:password
 82 Ctrl.pass = pass:password
 91 Ctrl.pass = pass:password
 [all …]
 
 | 
| /freebsd/contrib/pf/ftp-proxy/ | 
| H A D | ftp-proxy.8 | 1 .\"	$OpenBSD: ftp-proxy.8,v 1.11 2008/02/26 18:52:53 henning Exp $23 .Nm ftp-proxy
 27 .Bk -words
 49 The proxy allows data connections to pass, rewriting and redirecting
 69 .Bd -literal -offset 2n
 70 rdr from $server to $proxy port $port -> $client
 71 pass quick inet proto tcp \e
 76 .Bd -literal -offset 2n
 77 nat from $client to $server port $port -> $proxy
 78 pass in quick inet proto tcp \e
 [all …]
 
 | 
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ | 
| H A D | MVETailPredication.cpp | 1 //===- MVETailPredication.cpp - MVE Tail Predication ------------*- C++ -*-===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 10 /// Armv8.1m introduced MVE, M-Profile Vector Extension, and low-overhead
 12 /// combined with a new form of predication called tail-predication, can be used
 13 /// to provide implicit vector predication within a low-overhead loop.
 17 /// DLSTP and WLSTP instructions, which setup a tail-predicated loop and the
 18 /// the total number of data elements processed by the loop. The loop-end
 22 /// The HardwareLoops pass inserts intrinsics identifying loops that the
 23 /// backend will attempt to convert into a low-overhead loop. The vectorizer is
 [all …]
 
 | 
| /freebsd/libexec/rtld-elf/i386/ | 
| H A D | rtld_start.S | 1 /*-2  * Copyright 1996-1998 John D. Polstra.
 38 	.cfi_offset %ebp,-4
 46 	pushl	%ecx			# Pass address of obj_main
 47 	pushl	%ebx			# Pass address of exit proc
 48 	pushl	%esi			# Pass initial stack pointer to rtld
 71  * We are careful to preserve all registers, even the caller-save
 72  * registers.  That is because this code may be invoked by low-level
 73  * assembly-language code that is not ABI-compliant.
 98 	.section .note.GNU-stack,"",%progbits
 
 | 
| /freebsd/crypto/openssl/doc/designs/ | 
| H A D | xof.md | 5 --------------7 An extendable output function (XOF) is defined as a variable-length hash
 10 At a minimum an XOF needs to support the following pseudo-code
 23 - absorb can be called multiple times
 24 - finalize ends the absorb process (by adding padding bytes and doing a final
 27 - finalize may be done as part of the first squeeze operation
 28 - squeeze can be called multiple times.
 31 ------------------------
 46 -------------------------
 54 If we remove the flag check, then the core code will potentially call low level
 [all …]
 
 | 
| /freebsd/sys/contrib/device-tree/Bindings/soc/ti/ | 
| H A D | wkup-m3-ipc.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)3 ---
 4 $id: http://devicetree.org/schemas/soc/ti/wkup-m3-ipc.yaml#
 5 $schema: http://devicetree.org/meta-schemas/core.yaml#
 10   - Dave Gerlach <d-gerlach@ti.com>
 11   - Drew Fustini <dfustini@baylibre.com>
 14   The TI AM33xx and AM43xx family of devices use a small Cortex M3 co-processor
 15   (commonly referred to as Wakeup M3 or CM3) to help with various low power tasks
 17   C-states for CPU Idle. Once the wkup_m3_ipc driver uses the wkup_m3_rproc driver
 29   On some boards like the AM335x EVM-SK and the AM437x GP EVM, a GPIO pin is
 [all …]
 
 | 
| /freebsd/sys/contrib/dev/iwlwifi/mld/ | 
| H A D | scan.h | 1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */3  * Copyright (C) 2024-2025 Intel Corporation
 53 	return SCAN_OFFLOAD_PROBE_REQ_SIZE - DRIVER_TOTAL_IES_LEN;  in iwl_mld_scan_max_template_size()
 66 /* enum iwl_mld_pass_all_sched_results_states - Defines the states for
 68  * @SCHED_SCAN_PASS_ALL_STATE_DISABLED: Don't pass all scan results, only when
 70  * @SCHED_SCAN_PASS_ALL_STATE_ENABLED: Pass all scan results is enabled
 72  * @SCHED_SCAN_PASS_ALL_STATE_FOUND: A scan result is found, pass it on the
 82  * enum iwl_mld_traffic_load - Levels of traffic load
 84  * @IWL_MLD_TRAFFIC_LOW: low traffic load
 95  * struct iwl_mld_scan - Scan data
 [all …]
 
 | 
| /freebsd/sys/dev/mii/ | 
| H A D | bmtphyreg.h | 1 /*-2  * SPDX-License-Identifier: BSD-2-Clause
 48 #define	AUX_CTL_FEF_EN		0x0020	/* far-end fault enable */
 51 #define	AUX_STS_FX_MODE		0x0400	/* 100base-FX mode (strap pin) */
 63 #define	MII_BMTPHY_RXERROR_CTR	0x12	/* 100base-X Rx error counter */
 66 #define	MII_BMTPHY_FCS_CTR	0x13	/* 100base-X false carrier counter */
 69 #define	MII_BMTPHY_DIS_CTR	0x14	/* 100base-X disconnect counter */
 76 #define	AUX_CSR_FLINK		0x4000	/* force 10baseT link pass */
 78 #define	AUX_CSR_LSQ		0x0040	/* SQ low */
 81 #define	AUX_CSR_ANEG		0x0008	/* auto-negotiation activated */
 [all …]
 
 | 
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ | 
| H A D | MachineRegisterInfo.h | 1 //===- llvm/CodeGen/MachineRegisterInfo.h -----------------------*- C++ -*-===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 11 //===----------------------------------------------------------------------===//
 48 /// MachineRegisterInfo - Keep track of information for virtual and physical
 73   /// VRegInfo - Information we keep for each virtual register.
 97   /// RegAllocHints - This vector records register allocation hints for
 101   /// first member of the pair being non-zero. If the hinted register is
 108   /// PhysRegUseDefLists - This is an array of the head of the use/def list for
 112   /// getRegUseDefListHead - Return the head pointer for the register use/def
 [all …]
 
 | 
| H A D | SchedulerRegistry.h | 1 //===- llvm/CodeGen/SchedulerRegistry.h ---------[all...]
 | 
| /freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ | 
| H A D | NVVMIntrRange.cpp | 1 //===- NVVMIntrRange.cpp - Set range attributes for NVVM intrinsics -------===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 9 // This pass adds appropriate range attributes for calls to NVVM
 12 //===----------------------------------------------------------------------===//
 27 #define DEBUG_TYPE "nvvm-intr-range"
 47 INITIALIZE_PASS(NVVMIntrRange, "nvvm-intr-range",
 50 // Adds the passed-in [Low,High) range information as metadata to the
 51 // passed-in call instruction.
 52 static bool addRangeAttr(uint64_t Low, uint64_t High, IntrinsicInst *II) {  in addRangeAttr()  argument
 [all …]
 
 | 
| /freebsd/share/man/man9/ | 
| H A D | cpu_machdep.9 | 1 .\"-2 .\" SPDX-License-Identifier: BSD-2-Clause
 9 .\" Projects Agency (DARPA) Contract No. FA8750-24-C-B047 ("DEC").
 36 .Nd machine-dependent interfaces to handle CPU and thread state
 91 These functions provide architecture-specific implementations of
 92 machine-independent abstractions.
 113 releases machine-dependent resources other than the address space for the
 119 copies and updates machine-dependent state
 141 adjusts a new thread's initial pcb and/or kernel stack to pass
 157 copies machine-dependent state (for example, the pcb and user registers) from
 [all …]
 
 | 
| /freebsd/sys/dev/sk/ | 
| H A D | yukonreg.h | 2 /*-21 #define YU_GPSR_SPEED		0x8000	/* speed 0 - 10Mbps, 1 - 100Mbps */
 22 #define YU_GPSR_DUPLEX		0x4000	/* 0 - half duplex, 1 - full duplex */
 23 #define YU_GPSR_FCTL_TX		0x2000	/* Tx flow control, 1 - disabled */
 30 #define YU_GPSR_GIG_SPEED	0x0010	/* Gigabit Speed (0 - use speed bit) */
 32 #define YU_GPSR_FCTL_RX		0x0004	/* Rx flow control, 1 - disabled */
 33 #define YU_GPSR_PROMS_EN	0x0002	/* promiscuous mode, 1 - enabled */
 45 #define YU_GPCR_FLP		0x0040	/* Force Link Pass */
 49 #define YU_GPCR_DPLX_DIS	0x0004	/* Disable Auto-Update for duplex */
 50 #define YU_GPCR_FCTL_DIS	0x0002	/* Disable Auto-Update for 802.3x */
 [all …]
 
 | 
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ | 
| H A D | X86.cpp | 1 //===- X86.cpp ------------------------------------------------------------===//5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 7 //===----------------------------------------------------------------------===//
 19 /// IsX86_MMXType - Return true if this is an MMX type.
 22   return IRType->isVectorTy() && IRType->getPrimitiveSizeInBits() == 64 &&  in IsX86_MMXType()
 23     cast<llvm::VectorType>(IRType)->getElementType()->isIntegerTy() &&  in IsX86_MMXType()
 24     IRType->getScalarSizeInBits() != 64;  in IsX86_MMXType()
 33   if (IsMMXCons && Ty->isVectorTy()) {  in X86AdjustInlineAsmType()
 34     if (cast<llvm::VectorType>(Ty)->getPrimitiveSizeInBits().getFixedValue() !=  in X86AdjustInlineAsmType()
 45     return llvm::FixedVectorType::get(Int1Ty, Ty->getScalarSizeInBits());  in X86AdjustInlineAsmType()
 [all …]
 
 | 
| /freebsd/tests/sys/netpfil/pf/ | 
| H A D | syncookie.sh | 2 # SPDX-License-Identifier: BSD-2-Clause35 	jexec $jail pfctl -si -v | grep -A 2 '^Syncookies' | grep active \
 54 	jexec alcatraz /usr/sbin/inetd -p ${PWD}/inetd-alcatraz.pid \
 59 	jexec alcatraz pfctl -e
 62 		"pass in" \
 63 		"pass out"
 66 	atf_check -s exit:0 -o ignore ping -c 1 192.0.2.1
 68 	reply=$(echo foo | nc -N -w 5 192.0.2.1 7)
 84 	rm -f ${PWD}/inetd-alcatraz.pid
 103 	jexec alcatraz /usr/sbin/inetd -p ${PWD}/inetd-alcatraz.pid \
 [all …]
 
 | 
| /freebsd/secure/lib/libcrypto/man/man7/ | 
| H A D | ossl-guide-migration.7 | 1 .\" -*- mode: troff; coding: utf-8 -*-57 .IX Title "OSSL-GUIDE-MIGRATION 7ossl"
 58 .TH OSSL-GUIDE-MIGRATION 7ossl 2025-09-30 3.5.4 OpenSSL
 64 ossl\-guide\-migration, migration_guide
 65 \&\- OpenSSL Guide: Migrating from older OpenSSL versions
 80 The FIPS provider in OpenSSL 3.1 includes some non-FIPS validated algorithms,
 113 licenses <https://www.openssl.org/source/license-openssl-ssleay.txt>
 115 Apache License v2 <https://www.openssl.org/source/apache-license-2.0.txt>.
 128 be accessed using the "Low Level APIs".
 133 at configuration time using the \f(CW\*(C`enable\-fips\*(C'\fR option. If it is enabled,
 [all …]
 
 | 
| /freebsd/usr.bin/clang/llvm-cov/ | 
| H A D | llvm-cov.1 | 4 .nr rst2man-indent-level 07 \\$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 …]
 
 |