/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | KnownBits.h | 1 //===- llvm/Support/KnownBits.h - Stores known zeros/ones -------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 25 APInt One; member 29 KnownBits(APInt Zero, APInt One) in KnownBits() 30 : Zero(std::move(Zero)), One(std::move(One)) {} in KnownBits() 33 // Default construct Zero and One. 36 /// Create a known bits object of BitWidth bits initialized to unknown. 37 KnownBits(unsigned BitWidth) : Zero(BitWidth, 0), One(BitWidth, 0) {} in KnownBits() [all …]
|
/freebsd/tests/sys/netpfil/pf/ |
H A D | pfsync.sh | 2 # SPDX-License-Identifier: BSD-2-Clause 16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 52 vnet_mkjail one ${epair_one}a ${epair_sync}a 56 jexec one ifconfig ${epair_sync}a 192.0.2.1/24 up 57 jexec one ifconfig ${epair_one}a 198.51.100.1/24 up 58 jexec one ifconfig pfsync0 \ 72 jexec one pfctl -e 73 pft_set_rules one \ 76 jexec two pfctl -e [all …]
|
/freebsd/lib/libc/net/ |
H A D | sctp_sendmsg.3 | 13 .\" may be used to endorse or promote products derived from this software 17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 43 .Fa "int s" "const void *msg" "size_t len" "const struct sockaddr *to" 49 .Fa "int s" "const void *msg" "size_t len" "const struct sockaddr *to" 57 is used to transmit a message to another SCTP endpoint. 61 If the socket is a one-to-many type (SOCK_SEQPACKET) 62 socket then an attempt to send to an address that no association exists to will 65 the data being sent on the third leg of the SCTP four-way handshake. 67 the socket is a one-to-one type (SOCK_STREAM) socket then an association must [all …]
|
H A D | sctp_send.3 | 13 .\" may be used to endorse or promote products derived from this software 17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 62 is used to transmit a message to another SCTP endpoint. 65 function is used to specify multiple peer addresses when creating an implicit 70 function is used to transmit a message whose data is gathered from the 74 may be used to send data to an existing association for both 75 one-to-many (SOCK_SEQPACKET) and one-to-one (SOCK_STREAM) socket types. 80 If the message is too long to pass atomically through the 83 is set to [all …]
|
/freebsd/lib/libc/xdr/ |
H A D | xdr.3 | 56 These routines allow C programmers to describe 57 arbitrary data structures in a machine-independent fashion. 61 .Bl -tag -width indent -compact 76 A filter primitive that translates between variable-length 82 is the address of the pointer to the array, while 99 This routine returns one if it succeeds, zero otherwise. 112 filter produces values of either one or zero. 113 This routine returns one if it succeeds, zero otherwise. 133 This routine returns one if it succeeds, zero otherwise. 144 This routine returns one if it succeeds, zero otherwise. [all …]
|
/freebsd/tests/sys/net/ |
H A D | if_bridge_test.sh | 2 # SPDX-License-Identifier: BSD-2-Clause 19 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 61 atf_check -s exit:0 -o ignore jexec alcatraz ping -c 3 -t 1 192.0.2.2 62 atf_check -s exit:0 -o ignore jexec singsing ping -c 3 -t 1 192.0.2.1 111 # Give STP time to do its thing 117 if [ -z "${a_discard}" ] && [ -z "${b_discard}" ] 119 atf_fail "STP failed to detect bridging loop" 126 if [ -z "${a_forwarding}" ] && [ -z "${b_forwarding}" ] 128 atf_fail "STP failed to detect bridging loop" [all …]
|
H A D | if_stf.sh | 2 # SPDX-License-Identifier: BSD-2-Clause 16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 39 if ! kldstat -q -m if_stf; then 42 if ! kldstat -q -m if_gif; then 51 # Simple gif to terminate 6to4 55 jexec relay route -6 add default -interface $gif 62 jexec client route -6 add default 2002:c000:0201::1 65 atf_check -s exit:0 -o ignore \ 66 jexec client ping -c 1 192.0.2.1 [all …]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | varmod-sysv.mk | 1 # $NetBSD: varmod-sysv.mk,v 1.22 2025/01/11 20:54:46 rillig Exp $ 3 # Tests for the variable modifier ':from=to', which replaces the suffix 4 # "from" with "to". It can also use '%' as a wildcard. 10 # A typical use case for the modifier ':from=to' is conversion of filename 16 # The modifier applies to each word on its own. 17 .if ${one.c two.c three.c:L:.c=.o} != "one.o two.o three.o" 26 # The modifier ':from=to' is therefore often combined with the modifier ':M'. 31 # Another use case for the modifier ':from=to' is to append a suffix to each 38 # The modifier ':from=to' can also be used to surround each word by strings. 39 # It might be tempting to use this for enclosing a string in quotes for the [all …]
|
H A D | varmod-no-match.mk | 1 # $NetBSD: varmod-no-match.mk,v 1.3 2023/02/26 06:08:06 rillig Exp $ 8 .if ${:U one two three :Ntwo} != "one three" 13 # See varmod-match.mk for the details of pattern matching. 14 .if ${:U one two three four six :Nt*} != "one four six" 25 # "normalize whitespace", this idiom is not used in practice, resorting to the 26 # much more common ':M*' to "select all words" instead. 30 .if ${:U one two three :N} != "one two three" 33 .if ${:U one two three :M*} != "one two three" 38 # Idiom: single-word expression equals any of several words or patterns 40 # If an expression is guaranteed to consist of a single word, the modifier [all …]
|
/freebsd/lib/libpmc/ |
H A D | pmc.sandybridgeuc.3 | 14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 41 CPUs contain PMCs conforming to version 3 of the 45 .Bl -tag -width "Li PMC_CLASS_UCP" 47 Fixed-function counters that count only one hardware event per counter. 49 Programmable counters that may be configured to count one of a defined 53 The number of PMCs available in each class and their widths need to be 59 .%B "Intel(R) 64 and IA-32 Architectures Software Developers Manual" 61 .%N "Order Number: 253669-039US" 68 Not all CPUs in this family implement fixed-function counters. [all …]
|
/freebsd/usr.sbin/bsdconfig/networking/include/ |
H A D | messages.subr | 1 # Copyright (c) 2012-2016 Devin Teske 14 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 hline_alnum_punc_tab_enter="Use alpha-numeric, punctuation, TAB or ENTER" 29 msg_activate_default_router="Would you like to activate the new defaultrouter right now?\nIf you ch… 30 msg_activate_hostname="Would you like to activate the new hostname right now?\nIf you choose NO or … 31 msg_activate_hostname_x11warning="WARNING! Activating the new hostname during an X11-Forwarded\n ss… 34 msg_bring_interface_up="Would you like to bring the %s interface up right now?" 51 …One or more individual labels within the hostname\n(separated by dots) contains one or more invali… 52 msg_hostname_label_exceeds_max_length="ERROR! One or more individual labels within the hostname\n(s… [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | KnownBits.cpp | 1 //===-- KnownBits.cpp - Stores known zeros/ones ---------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 29 APInt CarryKnownOne = PossibleSumOne ^ LHS.One ^ RHS.One; in computeForAddCarry() 32 APInt LHSKnownUnion = LHS.Zero | LHS.One; in computeForAddCarry() 33 APInt RHSKnownUnion = RHS.Zero | RHS.One; in computeForAddCarry() 40 KnownOut.One = std::move(PossibleSumOne) & Known; in computeForAddCarry() 46 assert(Carry.getBitWidth() == 1 && "Carry must be 1-bit"); in computeForAddCarry() 48 LHS, RHS, Carry.Zero.getBoolValue(), Carry.One.getBoolValue()); in computeForAddCarry() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/ |
H A D | sprd,pinctrl.txt | 6 register contains several bit fields with one bit or several bits 7 to configure for some global common configuration, such as domain 9 driving level": One pin can output 3.0v or 1.8v, depending on the 12 to choose one function (like: UART0) for which system, since we 13 have several systems (AP/CP/CM4) on one SoC.). 16 of them, so we can not make every Spreadtrum-special configuration 17 as one generic configuration, and maybe it will add more strange 18 global configuration in future. Then we add one "sprd,control" to [all...] |
/freebsd/sys/dev/qlnx/qlnxe/ |
H A D | ecore_dbg_fw_funcs.h | 2 * Copyright (c) 2017-2018 Cavium, Inc. 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 34 * @brief ecore_dbg_set_bin_ptr - Sets a pointer to the binary data with debug 37 * @param bin_ptr - a pointer to the binary data with debug arrays. 42 * @brief ecore_dbg_set_app_ver - Sets the version of the calling app. 47 * @return error if one of the following holds: 48 * - the specified app version is not supported 54 * @brief ecore_dbg_get_fw_func_ver - Returns the FW func version. 61 * @brief ecore_dbg_get_chip_id - Returns the FW func version. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/spi/ |
H A D | fsl-imx-cspi.txt | 5 - compatible : 6 - "fsl,imx1-cspi" for SPI compatible with the one integrated on i.MX1 7 - "fsl,imx21-cspi" for SPI compatible with the one integrated on i.MX21 8 - "fsl,imx27-cspi" for SPI compatible with the one integrated on i.MX27 9 - "fsl,imx31-cspi" for SPI compatible with the one integrated on i.MX31 10 - "fsl,imx35-cspi" for SPI compatible with the one integrated on i.MX35 11 - "fsl,imx51-ecspi" for SPI compatible with the one integrated on i.MX51 12 - "fsl,imx53-ecspi" for SPI compatible with the one integrated on i.MX53 and later Soc 13 - "fsl,imx8mq-ecspi" for SPI compatible with the one integrated on i.MX8MQ 14 - "fsl,imx8mm-ecspi" for SPI compatible with the one integrated on i.MX8MM [all …]
|
/freebsd/share/man/man4/ |
H A D | ng_one2many.4 | 4 .\" Subject to the following obligations and disclaimer of warranty, use and 10 .\" 2. No rights are granted, in any manner or form, to use Whistle 16 .\" TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO 19 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. 48 in a one-to-many (and in the reverse direction, many-to-one) fashion. 50 .Dv one , 58 .Dv one 61 .Dv one 62 hook are forwarded out one or more of the 68 Each of the connected many links may be considered to be up or down. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/thermal/ |
H A D | thermal.txt | 3 This file describes a generic binding to provide a way of 9 The target of device tree thermal descriptors is to describe only 14 There are five types of nodes involved to describe thermal bindings: 15 - thermal sensors: devices which may be used to take temperature 17 - cooling devices: devices which may be used to dissipate heat. 18 - trip points: describe key temperatures at which cooling is recommended. The 20 - cooling maps: used to describe links between trip points and cooling devices; 21 - thermal zones: used to describe thermal data within the hardware; 29 nodes providing temperature data to thermal zones. Thermal sensor devices may 30 control one or more internal sensors. [all …]
|
/freebsd/contrib/one-true-awk/ |
H A D | FREEBSD-upgrade | 3 FreeBSD imports awk from the one true awk github project. This is the blessed 4 successor to Brian Kernighan's efforts to maintain awk after he left Lucent. 8 We also track the bsd-features branch. This is a branch that takes the 9 traditional one true awk and adds features that the BSD projects have added over 14 (1) Create a work tree for the vendor/one-true-awk branch 15 % cd freebsd-main 16 % git worktree create ../ota vendor/one-true-awk 19 % git pull --rebase 20 % git branch --show-current 21 bsd-features [all …]
|
/freebsd/share/doc/psd/20.ipctut/ |
H A D | tutor.me | 13 .\" may be used to endorse or promote products derived from this software 17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 .oh 'Introductory 4.4BSD IPC''PSD:20-%' 29 .eh 'PSD:20-%''Introductory 4.4BSD IPC' 61 document is to present a few simple example programs, not to describe the 73 were a major addition to UNIX in the Berkeley UNIX 4.2BSD release. 76 The basic idea of this interface is to make IPC similar to file I/O. 77 In UNIX a process has a set of I/O descriptors, from which one reads 78 and to which one writes. [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | tmmintrin.h | 1 /*===---- tmmintrin.h - SSSE3 intrinsics -----------------------------------=== 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 *===-----------------------------------------------------------------------=== 14 #error "This header is only meant to be used on x86 and x64 architecture" 22 __target__("ssse3,no-evex512"), __min_vector_width__(64))) 25 __target__("mmx,ssse3,no-evex512"), \ 28 /// Computes the absolute value of each of the packed 8-bit signed 29 /// integers in the source operand and stores the 8-bit unsigned integer 34 /// This intrinsic corresponds to the \c PABSB instruction. 37 /// A 64-bit vector of [8 x i8]. [all …]
|
/freebsd/lib/libc/stdio/ |
H A D | scanf.3 | 4 .\" This code is derived from software contributed to Berkeley by 17 .\" may be used to endorse or promote products derived from this software 21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 63 family of functions scans input according to a 82 reads its input from the character string pointed to by 87 is analogous to 99 these are analogous to 135 .Bl -tag -width ".Cm l No (ell)" 141 Indicates that the conversion will be one of [all …]
|
/freebsd/contrib/gdtoa/ |
H A D | README | 1 This directory contains source for a library of binary -> decimal 2 and decimal -> binary conversion routines, for single-, double-, 3 and extended-precision IEEE binary floating-point arithmetic, and 4 other IEEE-like binary floating-point, including "double double", 7 T. J. Dekker, "A Floating-Point Technique for Extending the 8 Available Precision", Numer. Math. 18 (1971), pp. 224-242 12 "Inside Macintosh: PowerPC Numerics", Addison-Wesley, 1994 14 The conversion routines use double-precision floating-point arithmetic 18 David M. Gay, "Correctly Rounded Binary-Decimal and 19 Decimal-Binary Conversions", Numerical Analysis Manuscript [all …]
|
/freebsd/lib/msun/tests/ |
H A D | fma_test.c | 1 /*- 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 38 #include "test-utils.h" 45 * exceptions we should check. We need to be lenient for several 47 * to raise FE_OVERFLOW without raising FE_INEXACT. 81 * This is needed because clang constant-folds fma in ways that are incorrect 84 static volatile double one = 1.0; variable 96 testall(-0.0, 0.0, 0.0, rd ? -0.0 : 0.0, ALL_STD_EXCEPT, 0); in test_zeroes() 97 testall(0.0, -0.0, 0.0, rd ? -0.0 : 0.0, ALL_STD_EXCEPT, 0); in test_zeroes() [all …]
|
/freebsd/contrib/less/ |
H A D | linenum.c | 2 * Copyright (C) 1984-2024 Mark Nudelman 12 * Code to handle displaying line numbers. 15 * We don't want to just start at the beginning of the file and 17 * wouldn't work if we couldn't get to the start of the file; e.g. 20 * So we use the function add_lnum to cache line numbers. 21 * We try to be very clever and keep only the more interesting 27 * 200 is more expensive to derive from 100. 31 * to cache the line number. Therefore currline is occasionally 32 * called to make sure we cache line numbers often enough. 38 * Structure to kee [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSimplifyDemanded.cpp | 1 //===- InstCombineSimplifyDemanded.cpp ------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 28 VerifyKnownBits("instcombine-verify-known-bits", 33 /// Check to see if the specified operand of the specified instruction is a 34 /// constant integer. If so, check to see if there are any bits set in the 39 assert(OpNo < I->getNumOperands() && "Operand index too large"); in ShrinkDemandedConstant() 42 Value *Op = I->getOperand(OpNo); in ShrinkDemandedConstant() 47 // If there are no bits set that aren't demanded, nothing to do. in ShrinkDemandedConstant() [all …]
|