/freebsd/sys/dev/dpaa2/ |
H A D | dpaa2_ni_dpkg.h | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause AND BSD-2-Clause 4 * Copyright © 2013-2015 Freescale Semiconductor, Inc. 10 * 1. Redistributions of source code must retain the above copyright notice, 41 * Copyright © 2021-2022 Dmitry Salychev 46 * 1. Redistributions of source code must retain the above copyright 68 #define BIT(x) (1ul << (x)) macro 71 * DPKG_NUM_OF_MASKS - Number of masks per key extraction 76 * DPKG_MAX_NUM_OF_EXTRACTS - Number of extractions per key profile 81 * enum dpkg_extract_from_hdr_type - Selecting extraction by header types [all …]
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | OPENSSL_ia32cap.3 | 18 .\" Set up some character translations and predefined strings. \*(-- will 24 .tr \(*W- 27 . ds -- \(*W- 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 37 . ds -- \|\(em\| 62 . tm Index:\\$1\t\\n%\t"\\$2" 71 .\" Fear. Run. Save yourself. No user-serviceable parts. 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" [all …]
|
/freebsd/sys/contrib/dev/rtw89/ |
H A D | pci.h | 1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ 11 #define MDIO_PG1_G1 1 16 #define OOBS_SEN_MASK GENMASK(5, 1) 18 #define BAC_OOBS_SEL BIT(4) 20 #define B_BAC_EQ_SEL BIT(5) 22 #define B_PCIE_BIT_PSAVE BIT(1 [all...] |
H A D | txrx.h | 1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ 27 if (rtwdev->chip->chip_gen == RTW89_CHIP_BE) in rtw89_get_data_rate_mode() 40 if (rtwdev->chip->chip_gen == RTW89_CHIP_BE) in rtw89_get_data_ht_mcs() 48 if (rtwdev->chi in rtw89_get_data_mcs() [all...] |
/freebsd/contrib/wpa/src/common/ |
H A D | ieee802_11_defs.h | 3 * Copyright (c) 2002-2019, Jouni Malinen <j@w1.fi> 4 * Copyright (c) 2007-2008 Intel Corporation 39 #define WLAN_GET_SEQ_FRAG(seq) ((seq) & (BIT(3) | BIT(2) | BIT(1) | BIT(0))) 41 (((seq) & (~(BIT(3) | BIT(2) | BIT(1) | BIT(0)))) >> 4) 44 #define WLAN_FC_TYPE_CTRL 1 50 #define WLAN_FC_STYPE_ASSOC_RESP 1 73 #define WLAN_FC_STYPE_DATA_CFACK 1 90 #define WLAN_FC_STYPE_S1G_BEACON 1 94 #define WLAN_AUTH_SHARED_KEY 1 105 #define WLAN_CAPABILITY_ESS BIT(0) [all …]
|
H A D | defs.h | 2 * WPA Supplicant - Common definitions 3 * Copyright (c) 2004-2018, Jouni Malinen <j@w1.fi> 12 #define WPA_CIPHER_NONE BIT(0) 13 #define WPA_CIPHER_WEP40 BIT(1) 14 #define WPA_CIPHER_WEP104 BIT(2) 15 #define WPA_CIPHER_TKIP BIT(3) 16 #define WPA_CIPHER_CCMP BIT(4) 17 #define WPA_CIPHER_AES_128_CMAC BIT(5) 18 #define WPA_CIPHER_GCMP BIT(6) 19 #define WPA_CIPHER_SMS4 BIT(7) [all …]
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | bitops.h | 1 /*- 5 * Copyright (c) 2013-2017 Mellanox Technologies, Ltd. 11 * 1. Redistributions of source code must retain the above copyright 38 #define BIT(nr) (1UL << (nr)) macro 39 #define BIT_ULL(nr) (1ULL << (nr)) 49 #define BITMAP_LAST_WORD_MASK(n) (~0UL >> (BITS_PER_LONG - (n))) 51 #define BIT_MASK(nr) (1UL << ((nr) & (BITS_PER_LONG - 1))) 53 #define GENMASK(h, l) (((~0UL) >> (BITS_PER_LONG - (h) - 1)) & ((~0UL) << (l))) 54 #define GENMASK_ULL(h, l) (((~0ULL) >> (BITS_PER_LONG_LONG - (h) - 1)) & ((~0ULL) << (l))) 65 #define HWEIGHT8(x) (bitcount8((uint8_t)(x)) + 1) [all …]
|
/freebsd/sys/contrib/dev/iwlwifi/fw/api/ |
H A D | rs.h | 1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */ 3 * Copyright (C) 2012-2014, 2018-2022, 2024 Intel Corporation 12 * enum iwl_tlc_mng_cfg_flags - options for TLC config flags 19 * for BPSK (MCS 0) with 1 spatial 27 IWL_TLC_MNG_CFG_FLAGS_STBC_MSK = BIT( [all...] |
/freebsd/sys/dev/msk/ |
H A D | if_mskreg.h | 17 * are provided to you under the BSD-type license terms provided 22 * - Redistributions of source code must retain the above copyright 24 * - Redistributions in binary form must reproduce the above 28 * - Neither the name of Marvell nor the names of its contributors 48 /*- 49 * SPDX-License-Identifier: BSD-4-Clause AND BSD-3-Clause 57 * 1. Redistributions of source code must retain the above copyright 65 * 4. Neither the name of the author nor the names of any co-contributors 82 /*- 110 * D-Link PCI vendor ID [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | InstructionUtils.h | 1 //===-- InstructionUtils.h --------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 15 // Common utilities for manipulating instruction bit fields. 19 // Return the bit field(s) from the most significant bit (msbit) to the 20 // least significant bit (lsbit) of a 64-bit unsigned value. 24 return (bits >> lsbit) & ((1ull << (msbit - lsbit + 1)) - 1); in Bits64() 27 // Return the bit field(s) from the most significant bit (msbit) to the 28 // least significant bit (lsbit) of a 32-bit unsigned value. 32 return (bits >> lsbit) & ((1u << (msbit - lsbit + 1)) - 1); in Bits32() [all …]
|
/freebsd/sys/dev/flash/flexspi/ |
H A D | flex_spi.h | 1 /*- 8 * 1. Redistributions of source code must retain the above copyright 29 #define BIT(x) (1 << (x)) macro 35 #define FSPI_MCR0_LEARN_EN BIT(15) 36 #define FSPI_MCR0_SCRFRUN_EN BIT(14) 37 #define FSPI_MCR0_OCTCOMB_EN BIT(13) 38 #define FSPI_MCR0_DOZE_EN BIT(12) 39 #define FSPI_MCR0_HSEN BIT(11) 40 #define FSPI_MCR0_SERCLKDIV BIT(8) 41 #define FSPI_MCR0_ATDF_EN BIT(7) [all …]
|
/freebsd/sys/dev/qat/qat_hw/qat_dh895xcc/ |
H A D | adf_dh895xcc_hw_data.h | 1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 /* Copyright(c) 2007-2022 Intel Corporation */ 8 #define ADF_DH895XCC_PMISC_BAR 1 31 #define ADF_DH895XCC_ENABLE_AE_ECC_ERR BIT(28) 32 #define ADF_DH895XCC_ENABLE_AE_ECC_PARITY_CORR (BIT(24) | BIT(12)) 35 #define ADF_DH895XCC_ERRSSMSH_EN BIT(3) 38 /* BIT(2) enables the logging of push/pull data errors. */ 39 #define ADF_DH895XCC_PPERR_EN (BIT(2)) 50 #define ADF_DH895XCC_ERRMSK0_CERR (BIT(24) | BIT(16) | BIT(8) | BIT(0)) 51 #define ADF_DH895XCC_ERRMSK1_CERR (BIT(24) | BIT(16) | BIT(8) | BIT(0)) [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/mfd/ |
H A D | mc13xxx.txt | 4 - compatible : Should be "fsl,mc13783" or "fsl,mc13892" 7 - fsl,mc13xxx-uses-adc : Indicate the ADC is being used 8 - fsl,mc13xxx-uses-codec : Indicate the Audio Codec is being used 9 - fsl,mc13xxx-uses-rtc : Indicate the RTC is being used 10 - fsl,mc13xxx-uses-touch : Indicate the touchscreen controller is being used 12 Sub-nodes: 13 - codec: Contain the Audio Codec node. 14 - adc-port: Contain PMIC SSI port number used for ADC. 15 - dac-port: Contain PMIC SSI port number used for DAC. 16 - leds : Contain the led nodes and initial register values in property [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIInstrFormats.td | 1 //===-- SIInstrFormats.td - SI Instruction Encodings ----------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 16 // Low bits - basic encoding information. 17 field bit SALU = 0; 18 field bit VALU = 0; 21 field bit SOP1 = 0; 22 field bit SOP2 = 0; 23 field bit SOPC = 0; [all …]
|
/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | bitmap.h | 11 /* Maximum bitmap bit count is 2^LG_BITMAP_MAXBITS. */ 13 /* Maximum bitmap bit count is determined by maximum regions per slab. */ 16 /* Maximum bitmap bit count is determined by number of extent size classes. */ 19 #define BITMAP_MAXBITS (ZU(1) << LG_BITMAP_MAXBITS) 23 #define BITMAP_GROUP_NBITS (1U << LG_BITMAP_GROUP_NBITS) 24 #define BITMAP_GROUP_NBITS_MASK (BITMAP_GROUP_NBITS-1) 31 #if LG_BITMAP_MAXBITS - LG_BITMAP_GROUP_NBITS > 3 117 (BITMAP_GROUPS_L3(nbits) > BITMAP_GROUPS_L4(nbits)) + 1, \ 161 * Only the first (nlevels+1) elements are used, and levels are ordered 164 bitmap_level_t levels[BITMAP_MAX_LEVELS+1]; [all …]
|
/freebsd/sys/contrib/dev/athk/ath10k/ |
H A D | rx_desc.h | 1 /* SPDX-License-Identifier: ISC */ 3 * Copyright (c) 2005-2011 Atheros Communications Inc. 4 * Copyright (c) 2011-2017 Qualcomm Atheros, Inc. 13 RX_ATTENTION_FLAGS_FIRST_MPDU = BIT(0), 14 RX_ATTENTION_FLAGS_LAST_MPDU = BIT(1), 15 RX_ATTENTION_FLAGS_MCAST_BCAST = BIT(2), 16 RX_ATTENTION_FLAGS_PEER_IDX_INVALID = BIT(3), 17 RX_ATTENTION_FLAGS_PEER_IDX_TIMEOUT = BIT(4), 18 RX_ATTENTION_FLAGS_POWER_MGMT = BIT(5), 19 RX_ATTENTION_FLAGS_NON_QOS = BIT(6), [all …]
|
/freebsd/sys/dev/qat/qat_hw/qat_200xx/ |
H A D | adf_200xx_hw_data.h | 1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 /* Copyright(c) 2007-2022 Intel Corporation */ 8 #define ADF_200XX_ETR_BAR 1 22 #define ADF_200XX_POWERGATE_PKE BIT(24) 23 #define ADF_200XX_POWERGATE_CY BIT(23) 30 #define ADF_200XX_ENABLE_AE_ECC_ERR BIT(28) 31 #define ADF_200XX_ENABLE_AE_ECC_PARITY_CORR (BIT(24) | BIT(12)) 34 #define ADF_200XX_ERRSSMSH_EN BIT(3) 38 /* BIT(2) enables the logging of push/pull data errors. */ 39 #define ADF_200XX_PPERR_EN (BIT(2)) [all …]
|
/freebsd/sys/dev/qat/qat_hw/qat_c3xxx/ |
H A D | adf_c3xxx_hw_data.h | 1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 /* Copyright(c) 2007-2022 Intel Corporation */ 8 #define ADF_C3XXX_ETR_BAR 1 22 #define ADF_C3XXX_POWERGATE_PKE BIT(24) 23 #define ADF_C3XXX_POWERGATE_CY BIT(23) 28 #define ADF_C3XXX_ENABLE_AE_ECC_ERR BIT(28) 29 #define ADF_C3XXX_ENABLE_AE_ECC_PARITY_CORR (BIT(24) | BIT(12)) 32 #define ADF_C3XXX_ERRSSMSH_EN BIT(3) 36 /* BIT(2) enables the logging of push/pull data errors. */ 37 #define ADF_C3XXX_PPERR_EN (BIT(2)) [all …]
|
/freebsd/sys/dev/qat/qat_hw/qat_c62x/ |
H A D | adf_c62x_hw_data.h | 1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 /* Copyright(c) 2007-2022 Intel Corporation */ 8 #define ADF_C62X_PMISC_BAR 1 23 #define ADF_C62X_POWERGATE_PKE BIT(24) 24 #define ADF_C62X_POWERGATE_DC BIT(23) 29 #define ADF_C62X_ENABLE_AE_ECC_ERR BIT(28) 30 #define ADF_C62X_ENABLE_AE_ECC_PARITY_CORR (BIT(24) | BIT(12)) 35 #define ADF_C62X_ERRSSMSH_EN (BIT(3)) 36 /* BIT(2) enables the logging of push/pull data errors. */ 37 #define ADF_C62X_PPERR_EN (BIT(2)) [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | avxvnniint16intrin.h | 1 /*===----------- avxvnniint16intrin.h - AVXVNNIINT16 intrinsics-------------=== 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 *===-----------------------------------------------------------------------=== 26 /// Multiply groups of 2 adjacent pairs of signed 16-bit integers in \a __A with 27 /// corresponding unsigned 16-bit integers in \a __B, producing 2 intermediate 28 /// signed 16-bit results. Sum these 2 results with the corresponding 29 /// 32-bit integer in \a __W, and store the packed 32-bit results in \a dst. 40 /// A 128-bit vector of [4 x int]. 42 /// A 128-bit vector of [8 x short]. 44 /// A 128-bit vector of [8 x unsigned short]. [all …]
|
H A D | smmintrin.h | 1 /*===---- smmintrin.h - SSE4 intrinsics ------------------------------------=== 5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 *===-----------------------------------------------------------------------=== 22 __target__("sse4.1,no-evex512"), __min_vector_width__(128))) 41 /// Rounds up each element of the 128-bit vector of [4 x float] to an 42 /// integer and returns the rounded values in a 128-bit vector of 54 /// A 128-bit vector of [4 x float] values to be rounded up. 55 /// \returns A 128-bit vector of [4 x float] containing the rounded values. 58 /// Rounds up each element of the 128-bit vector of [2 x double] to an 59 /// integer and returns the rounded values in a 128-bit vector of [all …]
|
/freebsd/sys/dev/ice/ |
H A D | ice_adminq_cmd.h | 1 /* SPDX-License-Identifier: BSD-3-Clause */ 8 * 1. Redistributions of source code must retain the above copyright notice, 48 ICE_RES_READ = 1, 87 #define ICE_AQC_DRIVER_UNLOADING BIT(0) 104 #define ICE_AQC_RES_ID_NVM 1 109 #define ICE_AQC_RES_ACCESS_READ 1 126 #define ICE_AQ_RES_GLBL_IN_PROG 1 [all...] |
/freebsd/sys/contrib/dev/mediatek/mt76/mt7615/ |
H A D | regs.h | 1 /* SPDX-License-Identifier: ISC */ 35 #define MT_HW_INFO_BASE ((dev)->reg_map[MT_HW_BASE]) 40 #define MT_TOP_3NSS BIT(24) 45 #define MT_TOP_MISC2 ((dev)->reg_map[MT_TOP_CFG_BASE] + 0x134) 48 #define MT7663_TOP_MISC2_FW_STATE GENMASK(3, 1) 49 #define MT_TOP_MISC2_FW_PWR_ON BIT(1) 59 #define MT_MCU_PCIE_REMAP_2 ((dev)->reg_map[MT_PCIE_REMAP_2]) 62 #define MT_PCIE_REMAP_BASE_2 ((dev)->reg_map[MT_PCIE_REMAP_BASE2]) 69 #define MT_HIF(ofs) ((dev)->reg_map[MT_HIF_BASE] + (ofs)) 71 #define MT_HIF_LOGIC_RST_N BIT(4) [all …]
|
/freebsd/sys/dev/qat/qat_hw/qat_c4xxx/ |
H A D | adf_c4xxx_inline.h | 1 /* SPDX-License-Identifier: BSD-3-Clause */ 2 /* Copyright(c) 2007-2022 Intel Corporation */ 19 #define ADF_C4XXX_SADB_SIZE_BIT BIT(24) 21 ((accel_dev)->aram_info->sadb_region_size / 32) 24 /* SADB CTRL register bit offsets */ 26 #define ADF_C4XXX_MAX_CHAIN_LEN_BIT_OFFS 1 39 #define ADF_C4XXX_STATS_REQUEST_ENABLED BIT(16) 40 #define ADF_C4XXX_STATS_REQUEST_DISABLED ~BIT(16) 45 #define ADF_C4XXX_MAC_STATS_READY BIT(0) 48 #define ADF_C4XXX_MAC_ERROR_TX_UNDERRUN BIT(6) [all …]
|
/freebsd/sys/amd64/vmm/amd/ |
H A D | amdvi_priv.h | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 13 * 1. Redistributions of source code must retain the above copyright 37 #define BIT(n) (1ULL << (n)) macro 38 /* Return value of bits[n:m] where n and (n >= ) m are bit positions. */ 40 ((1 << (((n) - (m)) + 1)) - 1)) 45 #define AMDVI_PCI_CAP_IOTLB BIT(0) /* IOTLB is supported. */ 46 #define AMDVI_PCI_CAP_HT BIT(1) /* HyperTransport tunnel support. */ 47 #define AMDVI_PCI_CAP_NPCACHE BIT(2) /* Not present page cached. */ 48 #define AMDVI_PCI_CAP_EFR BIT(3) /* Extended features. */ [all …]
|