/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | MSP430Target.def | 1 //===--- MSP430Target.def - MSP430 Feature/Processor Database----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 // Target/MSP430/gen-msp430-def.py - use this tool rather than adding 15 //===----------------------------------------------------------------------===// 203 // With 16-bit hardware multiplier 283 // With 32-bit hardware multiplier 284 MSP430_MCU_FEAT("msp430f4783", "32bit") 285 MSP430_MCU_FEAT("msp430f4793", "32bit") 286 MSP430_MCU_FEAT("msp430f4784", "32bit") [all …]
|
/freebsd/contrib/netbsd-tests/ipf/expected/ |
H A D | in2 | 1 rdr le0 9.8.7.6/32 port 0 -> 1.1.1.1/32 port 0 tcp 2 rdr le0 9.8.7.6/32 -> 1.1.1.1/32 reserved 3 rdr le0 9.8.7.6/32 port 80 -> 1.1.1.1/32 port 80 tcp 4 rdr le0 9.8.7.6/32 -> 1.1.1.1/32 ip 5 rdr le0 9.0.0.0/8 -> 1.1.1.1/32 ip 6 rdr le0 9.8.0.0/16 -> 1.1.1.1/32 ip 7 rdr le0 9.8.7.6/32 port 80 -> 1.1.1.1/32 port 80 tcp 8 rdr le0 9.8.7.6/32 port 80 -> 0/0 port 80 tcp 9 rdr le0 9.8.7.6/32 port 80 -> 1.1.1.1/32 port 80 udp 10 rdr le0 9.8.7.6/32 port 80 -> 1.1.1.1/32 port 80 tcp/udp [all …]
|
H A D | in5 | 1 map le0 from 9.8.7.6/32 port > 1024 to 0/0 -> 1.1.1.1/32 portmap tcp 10000:20000 2 map le0 from 9.8.7.6/32 port > 1024 ! to 1.2.3.4/32 -> 1.1.1.1/32 portmap tcp 10000:20000 3 rdr le0 from 0/0 to 9.8.7.6/32 port = 0 -> 1.1.1.1/32 port 0 tcp 4 rdr le0 from 0/0 to 9.8.7.6/32 -> 1.1.1.1/32 ip 5 rdr le0 ! from 1.2.3.4/32 to 9.8.7.6/32 port = 8888 -> 1.1.1.1/32 port 888 tcp 6 rdr le0 from 0/0 to 9.8.7.6/32 -> 1.1.1.1/32 ip 7 rdr le0 from 0/0 to 9.8.7.6/32 port = 8888 -> 1.1.1.1/32 port 888 tcp 8 rdr le0 from 0/0 to 9.8.7.6/32 port = 8888 -> 1.1.1.1/32 port 888 udp 9 rdr le0 from 0/0 to 9.8.7.6/32 port = 8888 -> 1.1.1.1/32 port 888 tcp/udp 10 rdr le0 from 0/0 to 9.8.7.6/32 -> 1.1.1.1/32 icmp [all …]
|
H A D | ip1 | 4 { 1.2.3.4/32; ! 2.2.0.0/16; 2.2.2.0/24; }; 6 { 1.2.3.4/32; ! 2.2.0.0/16; 2.2.2.0/24; }; 8 { 1.2.3.4/32; ! 2.2.0.0/16; 2.2.2.0/24; }; 10 { 1.2.3.4/32; ! 2.2.0.0/16; 2.2.2.0/24; }; 14 { 0/0; 1/32; 1.2.3.4/32; }; 16 { 0/0; 2/32; 1.2.3.4/32; }; 18 { 0/0; 3/32; 1.2.3.4/32; }; 20 { 0/0; 4/32; 1.2.3.4/32; }; 22 { 0/0; 1/32; 1.2.3.4/32; }; 24 { 0/0; 2/32; 1.2.3.4/32; }; [all …]
|
H A D | in1 | 1 map le0 0/0 -> 0/32 2 map le0 0.0.0.1/32 -> 0.0.0.1/32 3 map le0 128.0.0.0/1 -> 0/0 4 map le0 10.0.0.0/8 -> 1.2.3.0/24 5 map le0 10.0.0.0/8 -> 1.2.3.0/24 6 map le0 10.0.0.0/8 -> 1.2.3.0/24 7 map le0 0.0.0.5/0.0.0.255 -> 1.2.3.0/24 8 map le0 192.168.0.0/16 -> range 203.1.1.23-203.1.3.45 9 map ppp0 192.168.0.0/16 -> 0/32 portmap tcp 10000:19999 10 map ppp0 192.168.0.0/16 -> 0/32 portmap udp 20000:29999 [all …]
|
/freebsd/sys/dev/aacraid/ |
H A D | aacraid_endian.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 42 /* Convert from Little-Endian to host order (TOH) */ 47 TOH(ptr->XferState, 32); in aac_fib_header_toh() 48 TOH(ptr->Command, 16); in aac_fib_header_toh() 49 TOH(ptr->Size, 16); in aac_fib_header_toh() 50 TOH(ptr->SenderSize, 16); in aac_fib_header_toh() 51 TOH(ptr->SenderFibAddress, 32); in aac_fib_header_toh() 52 TOH(ptr->u.ReceiverFibAddress, 32); in aac_fib_header_toh() 53 TOH(ptr->Handle, 32); in aac_fib_header_toh() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Basic/Targets/ |
H A D | TCE.h | 1 //===--- TCE.h - Declare TCE target feature support -------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 29 // target processor and program binary. TCE co-design environment is 64 IntWidth = 32; in TCETargetInfo() 65 LongWidth = LongLongWidth = 32; in TCETargetInfo() 66 PointerWidth = 32; in TCETargetInfo() 67 IntAlign = 32; in TCETargetInfo() 68 LongAlign = LongLongAlign = 32; in TCETargetInfo() [all …]
|
H A D | X86.h | 1 //===--- X86.h - Declare X86 target feature support -------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 54 // X86 target abstract base class; x86-32 and x86-64 are very close, so 243 // esp and ebp are the only 32-bit registers the x86 backend can currently in validateGlobalRegisterVariable() 246 // Check that the register size is 32-bit. in validateGlobalRegisterVariable() 247 HasSizeMismatch = RegSize != 32; in validateGlobalRegisterVariable() 347 return "no-mmx"; in getABI() 364 // Allow 32-bit only CPUs regardless of 64-bit mode unlike isValidCPUName. in isValidTuneCPUName() [all …]
|
/freebsd/sys/contrib/xen/arch-x86/ |
H A D | cpufeatureset.h | 2 * arch-x86/cpufeatureset.h 32 * Simply #include <public/arch-x86/cpufeatureset.h> 64 * 32bit words. 78 * first space in the comment immediately following the feature value. Note - 91 * Lower case => Can be opted-in to, but not available by default. 94 /* Intel-defined CPU features, CPUID level 0x00000001.edx, word 0 */ 95 XEN_CPUFEATURE(FPU, 0*32+ 0) /*A Onboard FPU */ 96 XEN_CPUFEATURE(VME, 0*32+ 1) /*S Virtual Mode Extensions */ 97 XEN_CPUFEATURE(DE, 0*32+ 2) /*A Debugging Extensions */ 98 XEN_CPUFEATURE(PSE, 0*32+ 3) /*S Page Size Extensions */ [all …]
|
/freebsd/contrib/netbsd-tests/ipf/regress/ |
H A D | in2 | 1 rdr le0 9.8.7.6/32 port 0 -> 1.1.1.1 port 0 tcp 2 rdr le0 9.8.7.6/32 port 0 -> 1.1.1.1 port 0 255 3 rdr le0 9.8.7.6/32 port 80 -> 1.1.1.1 port 80 tcp 4 rdr le0 9.8.7.6/32 -> 1.1.1.1 ip 5 rdr le0 9.8.7.6/0xff000000 -> 1.1.1.1 ip 6 rdr le0 9.8.7.6/0xffff0000 -> 1.1.1.1 ip 7 rdr le0 9.8.7.6/32 port 80 -> 1.1.1.1 port 80 tcp 8 rdr le0 9.8.7.6/32 port 80 -> 0/0 port 80 tcp 9 rdr le0 9.8.7.6/32 port 80 -> 1.1.1.1 port 80 udp 10 rdr le0 9.8.7.6/32 port 80 -> 1.1.1.1 port 80 tcp/udp [all …]
|
H A D | ip1 | 1 #:%s/ \(number = [0-9]*\) \(type = [a-z]*\)/ \2 \1/g 6 { 1.2.3.4/32; !2.2.0.0/16; 2.2.2.0/24; }; 8 { 1.2.3.4/32; !2.2.0.0/16; 2.2.2.0/24; }; 10 { 1.2.3.4/32; !2.2.0.0/16; 2.2.2.0/24; }; 17 { 0/0; 1/32; 1.2.3.4/32; }; 19 { 0/0; 2/32; 1.2.3.4/32; }; 21 { 0/0; 3/32; 1.2.3.4/32; }; 23 { 0/0; 4/32; 1.2.3.4/32; }; 26 { 0/0; 1/32; 1.2.3.4/32; }; 28 { 0/0; 2/32; 1.2.3.4/32; }; [all …]
|
H A D | in1 | 1 map le0 0/0 -> 0/32 2 map le0 1/32 -> 1/32 3 map le0 128.0.0.0/1 -> 0/0 4 map le0 10.0.0.0/8 -> 1.2.3.0/24 5 map le0 10.0.0.5/8 -> 1.2.3.4/24 6 map le0 10.0.0.5/0xff000000 -> 1.2.3.4/24 7 map le0 10.0.0.5/0xff -> 1.2.3.4/24 8 map le0 192.168.0.0/16 -> range 203.1.1.23-203.1.3.45 9 map ppp0 192.168.0.0/16 -> 0/32 portmap tcp 10000:19999 10 map ppp0 192.168.0.0/16 -> 0/32 portmap udp 20000:29999 [all …]
|
/freebsd/sys/crypto/openssl/powerpc/ |
H A D | sha512-ppc.S | 1 /* Do not modify. This file is auto-generated from sha512-ppc.pl. */ 9 stwu 1,-256(1) 42 lwz 24,32(3) 83 li 0,32 107 addic. 5,5,-128 166 srwi 9,24,41-32 167 srwi 10,25,41-32 170 insrwi 9,25,41-32,0 171 insrwi 10,24,41-32,0 183 srwi 0,16,34-32 [all …]
|
/freebsd/crypto/openssl/crypto/bn/asm/ |
H A D | rsaz-avx2.pl | 2 # Copyright 2013-2020 The OpenSSL Project Authors. All Rights Reserved. 17 # F. Ozbudak and F. Rodriguez-Henriquez (Eds.): WAIFI 2012, LNCS 7369, 18 # pp. 119?135, 2012. Springer-Verlag Berlin Heidelberg 2012 20 # Exponentiation", Journal of Cryptographic Engineering 2:31-43 (2012). 21 # [3] S. Gueron, V. Krasnov: "Speeding up Big-numbers Squaring",IEEE 23 # New Generations (ITNG 2012), pp.821-823 (2012) 25 # resistant 1024-bit modular exponentiation, for optimizing RSA2048 48 ( $xlate="${dir}x86_64-xlate.pl" and -f $xlate ) or 49 ( $xlate="${dir}../../perlasm/x86_64-xlate.pl" and -f $xlate) or 50 die "can't locate x86_64-xlate.pl"; [all …]
|
/freebsd/share/examples/ipfilter/rules/ |
H A D | BASIC.NAT | 1 #!/sbin/ipnat -f - 5 # ppp0 - (external) PPP connection to ISP, address a.b.c.d/32 7 # ed0 - (internal) network interface, address w.x.y.z/32 13 map ppp0 w.x.y.z/24 -> a.b.c.d/32 proxy port ftp ftp/tcp 17 map ppp0 w.x.y.z/24 -> a.b.c.d/32 portmap tcp/udp 40000:60000 18 map ppp0 w.x.y.z/24 -> a.b.c.d/32 22 #map ppp0 w.x.y.z/24 -> 0/32 portmap tcp/udp 40000:60000 23 #map ppp0 w.x.y.z/24 -> 0/32 28 #map ppp0 w.x.y.z/24 -> a.b.c.d/24 portmap tcp/udp 40000:60000 29 #map ppp0 w.x.y.z/24 -> a.b.c.d/24 [all …]
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | googletest-output-test-golden-lin.txt | 1 The non-test part of the code is expected to have 2 failures. 3 googletest-output-test_.cc:#: Failure 9 googletest-output-test_.cc:#: Failure 15 [0;32m[==========] [mRunning 90 tests from 43 test suites. 16 [0;32m[----------] [mGlobal test environment set-up. 19 [0;32m[----------] [m1 test from ADeathTest 20 [0;32m[ RUN ] [mADeathTest.ShouldRunFirst 21 [0;32m[ OK ] [mADeathTest.ShouldRunFirst 22 [0;32m[----------] [m1 test from ATypedDeathTest/0, where TypeParam = int 23 [0;32m[ RUN ] [mATypedDeathTest/0.ShouldRunFirst [all …]
|
/freebsd/crypto/openssh/ |
H A D | smult_curve25519_ref.c | 11 static void add(unsigned int out[32],const unsigned int a[32],const unsigned int b[32]) in add() argument 20 static void sub(unsigned int out[32],const unsigned int a[32],const unsigned int b[32]) in sub() argument 26 u += a[j] + 65280 - b[j]; in sub() 30 u += a[31] - b[31]; in sub() 34 static void squeeze(unsigned int a[32]) in squeeze() argument 46 static const unsigned int minusp[32] = { 50 static void freeze(unsigned int a[32]) in freeze() argument 52 unsigned int aorig[32]; in freeze() 56 for (j = 0;j < 32;++j) aorig[j] = a[j]; in freeze() 58 negative = -((a[31] >> 7) & 1); in freeze() [all …]
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/ |
H A D | tst.quantmany.d.out | 3 value ------------- Distribution ------------- count 10 value ------------- Distribution ------------- count 11 -4 | 0 12 -2 @@@@| -2 13 -1 | 0 21 value ------------- Distribution ------------- count 22 -8 | 0 23 -4 @@@@| -4 24 -2 @@| -2 25 -1 | 0 [all …]
|
/freebsd/contrib/ofed/libibmad/ |
H A D | fields.c | 2 * Copyright (c) 2004-2009 Voltaire Inc. All rights reserved. 4 * Copyright (c) 2009-2011 Mellanox Technologies LTD. All rights reserved. 16 * - Redistributions of source code must retain the above 20 * - Redistributions in binary form must reproduce the above 48 * encoded in the IB spec - IB headers are encoded such that the bit offsets 53 #define BITSOFFS(o, w) (((o) & ~31) | ((32 - ((o) & 31) - (w)))), (w) 55 #define BE_TO_BITSOFFS(o, w) (((o) & ~31) | ((32 - ((o) & 31) - (w)))) 58 {0, 0}, /* IB_NO_FIELD - reserved as invalid */ 65 * SMP: Subnet Management packets - lid routed (IB spec 14.2.1.1) 66 * DSMP: Subnet Management packets - direct route (IB spec 14.2.1.2) [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonAsmBackend.cpp | 1 //===-- HexagonAsmBackend.cpp - Hexagon Assembler Backend -----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 33 #define DEBUG_TYPE "hexagon-asm-backend" 36 ("mno-fixup", cl::desc("Disable fixing up resolved relocations for Hexagon")); 75 const_cast<HexagonAsmBackend *>(this)->Extender = Context.createMCInst(); in setExtender() 81 const_cast<HexagonAsmBackend *>(this)->Extender = nullptr; in takeExtender() 95 { "fixup_Hexagon_B22_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel }, in getFixupKindInfo() 96 { "fixup_Hexagon_B15_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel }, in getFixupKindInfo() 97 { "fixup_Hexagon_B7_PCREL", 0, 32, MCFixupKindInfo::FKF_IsPCRel }, in getFixupKindInfo() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/ |
H A D | elfnix_tls.aarch64.S | 1 //===-- elfnix_tlv.aarch64.s ---------------------------------------*- ASM -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 13 // The content of this file is aarch64-only 16 #define REGISTER_SAVE_SPACE_SIZE 32 * 24 21 // TODO: add fast-path for repeat access 40 stp q30, q31, [sp, #32 * 8] 41 stp q28, q29, [sp, #32 * 9] 42 stp q26, q27, [sp, #32 * 10] [all …]
|
H A D | macho_tlv.arm64.S | 1 //===-- macho_tlv.arm64.s ---------------------------------------*- ASM -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 13 // The content of this file is arm64-only 16 #define REGISTER_SAVE_SPACE_SIZE 32 * 24 39 stp q30, q31, [sp, #32 * 8] 40 stp q28, q29, [sp, #32 * 9] 41 stp q26, q27, [sp, #32 * 10] 42 stp q24, q25, [sp, #32 * 11] [all …]
|
/freebsd/sys/dev/irdma/ |
H A D | irdma_defs.h | 1 /*- 2 * SPDX-License-Identifier: GPL-2.0 or Linux-OpenIB 4 * Copyright (c) 2015 - 2023 Intel Corporation 16 * - Redistributions of source code must retain the above 20 * - Redistributions in binary form must reproduce the above 94 #define IRDMA_BYTE_32 32 181 ((IRDMA_QP_SW_MAX_WQ_QUANTA - IRDMA_SQ_RSVD) / (max_quanta_per_wr)) 199 #define IRDMA_QP_WQE_MIN_SIZE 32 258 IRDMA_OP_MC_DESTROY = 32, 333 #define GENMASK_ULL(high, low) ((0xFFFFFFFFFFFFFFFFULL >> (64ULL - ((high) - (low) + 1ULL))) << (lo… [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/timer/ |
H A D | renesas,cmt.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Geert Uytterhoeven <geert+renesas@glider.be> 11 - Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> 14 The CMT is a multi-channel 16/32/48-bit timer/counter with configurable clock 26 - items: 27 - enum: 28 - renesas,r8a7740-cmt0 # 32-bit CMT0 on R-Mobile A1 29 - renesas,r8a7740-cmt1 # 48-bit CMT1 on R-Mobile A1 [all …]
|
/freebsd/sys/powerpc/ps3/ |
H A D | ps3-hvcall.S | 8 stdu %r1,-48(%r1) 9 std %r7,32(%r1) 14 ld %r11,32(%r1) 27 stdu %r1,-32(%r1) 40 stdu %r1,-48(%r1) 41 std %r6,32(%r1) 46 ld %r11,32(%r1) 59 stdu %r1,-40(%r1) 60 std %r4,32(%r1) 64 ld %r11,32(%r1) [all …]
|