| /freebsd-14.2/sys/dev/bhnd/cores/pci/ |
| H A D | bhnd_pcivar.h | 114 #define _BHND_PCI_REG_GET(_regval, _mask, _shift) \ argument 115 ((_regval & _mask) >> _shift) 116 #define _BHND_PCI_REG_SET(_regval, _mask, _shift, _setval) \ argument 117 (((_regval) & ~ _mask) | (((_setval) << _shift) & _mask))
|
| /freebsd-14.2/sys/dev/sfxge/common/ |
| H A D | efx_hash.c | 57 #define EFX_HASH_ROTATE(_value, _shift) \ argument 58 EFSYS_ROTL_DWORD(_value, _shift) 62 #define EFX_HASH_ROTATE(_value, _shift) \ argument 63 (((_value) << (_shift)) | ((_value) >> (32 - (_shift))))
|
| /freebsd-14.2/sys/arm64/freescale/imx/ |
| H A D | imx_ccm_clk.h | 121 #define GATE(_id, _name, _pname, _o, _shift) \ argument 131 .shift = _shift, \ 195 #define DIV(_id, _name, _pname, _o, _shift, _width) \ argument 205 .i_shift = _shift, \
|
| /freebsd-14.2/contrib/bmake/ |
| H A D | import.sh | 21 local _shift=$# 47 return $(($_shift - $#))
|
| /freebsd-14.2/sys/sys/ |
| H A D | qmath.h | 198 int _carry = 0, _idx, _nfbits = Q_NFBITS(q), _shift = 0; \ 205 _shift = _nfbits >> 1; \ 206 _carry = (((bits) & ((1ULL << _shift) - 1)) * (base)) >> _shift;\ 208 _idx = ((((bits) >> _shift) * (base)) + _carry) >> (_nfbits - _shift);\
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64SchedFalkorDetails.td | 600 def : InstRW<[FalkorWr_1VXVY_4cyc], (instregex "^FCVTZ(S|U)v2i32(_shift)?$")>; 626 def : InstRW<[FalkorWr_2VXVY_4cyc], (instregex "^FCVTZ(S|U)(v2i64|v4i32)(_shift)?$")>; 667 def : InstRW<[FalkorWr_1VXVY_2cyc], (instregex "^(S|U)SHR(v2i32|v4i16|v8i8)_shift$")>; 674 def : InstRW<[FalkorWr_1VXVY_2cyc], (instregex "^SHL(v2i32|v4i16|v8i8)_shift$")>; 678 def : InstRW<[FalkorWr_1VXVY_3cyc], (instregex "^(S|U)R?SRA(d|(v2i32|v4i16|v8i8)_shift)$")>; 687 def : InstRW<[FalkorWr_1VXVY_3cyc], (instregex "^(S|U)RSHR(v2i32|v4i16|v8i8)_shift$")>; 689 def : InstRW<[FalkorWr_1VXVY_3cyc], (instregex "^R?SHRN(v2i32|v4i16|v8i8)_shift$")>; 693 def : InstRW<[FalkorWr_1VXVY_3cyc], (instregex "^S(L|R)I(d|(v8i8|v4i16|v2i32)_shift)$")>; 739 def : InstRW<[FalkorWr_2VXVY_2cyc], (instregex "^SHL(v16i8|v8i16|v4i32|v2i64)_shift$")>; 749 def : InstRW<[FalkorWr_2VXVY_3cyc], (instregex "^R?SHRN(v2i64|v4i32|v8i16|v16i8)_shift$")>; [all …]
|
| H A D | AArch64SchedKryoDetails.td | 19 (instregex "(S|U)R?SRA(d|(v2i32|v4i16|v8i8)_shift)")>; 26 (instregex "(S|U)R?SRA(v2i64|v4i32|v8i16|v16i8)_shift")>; 147 (instregex "(S|U)CVTF(v1i32|v2i32|v1i64|v2f32|d|s)(_shift)?")>; 153 (instregex "(S|U)CVTF(v2i64|v4i32|v2f64|v4f32)(_shift)?")>; 219 (instregex "(S|U)QSHLU?(d|s|h|b|(v8i8|v4i16|v2i32)_shift)$")>; 279 (instregex "(S|U)RSHR(d|(v8i8|v4i16|v2i32)_shift)$")>; 303 (instregex "((S|U)SHR|SHL)(d|(v8i8|v4i16|v2i32)_shift)$")>; 309 (instregex "((S|U)SHR|SHL)(v16i8|v8i16|v4i32|v2i64)_shift$")>; 771 (instregex "FCVTZ(S|U)(v2f32|v1i32|v1i64|v2i32(_shift)?)$")>; 1770 (instregex "S(L|R)I(d|(v8i8|v4i16|v2i32)_shift)")>; [all …]
|
| H A D | AArch64SchedNeoverseN1.td | 656 "^(SQSHLU?|UQSHL)(v8i8|v16i8|v4i16|v8i16|v2i32|v4i32|v2i64)_shift$",
|
| H A D | AArch64SchedNeoverseV1.td | 876 "^(SQSHLU?|UQSHL)(v8i8|v16i8|v4i16|v8i16|v2i32|v4i32|v2i64)_shift$",
|
| H A D | AArch64SchedNeoverseN2.td | 1037 "^(SQSHLU?|UQSHL)(v8i8|v16i8|v4i16|v8i16|v2i32|v4i32|v2i64)_shift$",
|
| H A D | AArch64SchedNeoverseV2.td | 1525 "^(SQSHLU?|UQSHL)(v8i8|v16i8|v4i16|v8i16|v2i32|v4i32|v2i64)_shift$",
|
| H A D | AArch64InstrFormats.td | 12567 def _shift : BaseAddSubCPA<isSub, asm>; 12568 def _noshift : AddSubCPAAlias<asm, !cast<Instruction>(NAME#"_shift")>;
|
| /freebsd-14.2/sys/arm64/rockchip/clk/ |
| H A D | rk3568_pmucru.c | 55 #define RK_PLL(_id, _name, _pnames, _off, _shift) \ argument 66 .mode_shift = _shift, \
|
| H A D | rk3288_cru.c | 491 #define PLL(_id, _name, _base, _shift) \ argument 502 .mode_shift = _shift, \
|
| H A D | rk3568_cru.c | 66 #define RK_PLL(_id, _name, _pnames, _off, _shift) \ argument 77 .mode_shift = _shift, \
|
| /freebsd-14.2/sys/dev/etherswitch/arswitch/ |
| H A D | arswitchreg.h | 44 #define BITS(_shift, _count) (BITM(_count) << (_shift)) argument
|
| /freebsd-14.2/sys/dev/qcom_gcc/ |
| H A D | qcom_gcc_ipq4018_clock.c | 132 #define F_RO_DIV(_id, _cname, _parent, _offset, _shift, _width, _tbl) \ argument 141 .shift = _shift, \
|
| /freebsd-14.2/sys/arm/allwinner/clkng/ |
| H A D | aw_clk.h | 556 _offset, _shift, _width) \ argument 565 .shift = _shift, \
|
| /freebsd-14.2/crypto/openssl/doc/man3/ |
| H A D | DEFINE_STACK_OF.pod | 167 B<sk_I<TYPE>_shift>() returns and removes the first element from I<sk>. 235 B<sk_I<TYPE>_shift>(), B<sk_I<TYPE>_find>(), B<sk_I<TYPE>_find_ex>(), 270 B<sk_I<TYPE>_pop>(), B<sk_I<TYPE>_shift>(), B<sk_I<TYPE>_delete>() and
|
| /freebsd-14.2/sys/dev/bhnd/tools/ |
| H A D | nvram_map_gen.awk | 4037 _mask, _shift, _value, _i) 4044 _shift = 0 4065 _shift = - parse_uint_string(_attr) 4067 _shift = parse_uint_string(_attr) 4076 return (srom_segment_new(offset, type, _mask, _shift, _value)) 4095 _offset, _attrs, _num_attr, _attr, _mask, _shift, _off_desc)
|
| /freebsd-14.2/crypto/openssl/include/openssl/ |
| H A D | safestack.h.in | 125 static ossl_unused ossl_inline t2 *sk_##t1##_shift(STACK_OF(t1) *sk) \
|
| H A D | safestack.h | 122 static ossl_unused ossl_inline t2 *sk_##t1##_shift(STACK_OF(t1) *sk) \
|