/freebsd/sys/crypto/openssl/aarch64/ |
H A D | aes-gcm-armv8_64.S | 36 lsr x5, x1, #3 //byte_len 40 add x4, x0, x1, lsr #3 //end_input_ptr 57 fmov d3, x10 //CTR block 3 70 rev w9, w12 //CTR block 3 72 orr x9, x11, x9, lsl #32 //CTR block 3 75 add w12, w12, #1 //CTR block 3 76 fmov v3.d[1], x9 //CTR block 3 97 aese v3.16b, v18.16b 98 aesmc v3.16b, v3.16b //AES block 3 - round 0 113 aese v3.16b, v19.16b [all …]
|
H A D | vpaes-armv8.S | 151 tbl v0.16b, {v24.16b}, v3.16b // vpshufb %xmm3, %xmm12, %xmm0 # 0 = sb1t 155 tbl v2.16b, {v26.16b}, v3.16b // vpshufb %xmm3, %xmm14, %xmm2 # 2 = sb2t 157 tbl v3.16b, {v0.16b}, v1.16b // vpshufb %xmm1, %xmm0, %xmm3 # 0 = B 159 tbl v0.16b, {v0.16b}, v4.16b // vpshufb %xmm4, %xmm0, %xmm0 # 3 = D 160 eor v3.16b, v3.16b, v2.16b // vpxor %xmm2, %xmm3, %xmm3 # 0 = 2A+B 161 tbl v4.16b, {v3.16b}, v1.16b // vpshufb %xmm1, %xmm3, %xmm4 # 0 = 2B+C 162 eor v0.16b, v0.16b, v3.16b // vpxor %xmm3, %xmm0, %xmm0 # 3 = 2A+B+D 164 eor v0.16b, v0.16b, v4.16b // vpxor %xmm4, %xmm0, %xmm0 # 0 = 2A+3B+C+D 173 tbl v3.16b, {v18.16b}, v0.16b // vpshufb %xmm0, %xmm10, %xmm3 # 3 = 1/i 175 eor v3.16b, v3.16b, v5.16b // vpxor %xmm5, %xmm3, %xmm3 # 3 = iak = 1/i + a/k [all …]
|
H A D | ghashv8-armx.S | 15 ext v3.16b,v17.16b,v17.16b,#8 19 ushr v18.2d,v3.2d,#63 22 shl v3.2d,v3.2d,#1 25 orr v3.16b,v3.16b,v18.16b //H<<<=1 26 eor v20.16b,v3.16b,v16.16b //twisted H 55 //calculate H^3 and H^4 87 eor v20.16b, v0.16b,v18.16b //H^3 95 st1 {v20.2d,v21.2d,v22.2d},[x0] //store Htable[3..5] 110 ext v3.16b,v17.16b,v17.16b,#8 112 pmull v0.1q,v20.1d,v3.1d //H.lo·Xi.lo [all …]
|
H A D | armv8-mont.S | 15 tst x5,#3 28 tst x5,#3 39 sub x22,sp,x5,lsl#3 41 lsl x5,x5,#3 278 ld1 {v2.4s,v3.4s},[x3],#32 285 umlal v9.2d,v28.2s,v0.s[3] 293 umlal v13.2d,v28.2s,v1.s[3] 300 umlal v9.2d,v29.2s,v2.s[3] 301 umlal v10.2d,v29.2s,v3.s[0] 304 umlal v11.2d,v29.2s,v3.s[1] [all …]
|
/freebsd/contrib/tcpdump/ |
H A D | nfs.h | 18 * 3. All advertising materials mentioning features or use of this software 38 * @(#)nfsproto.h 8.2 (Berkeley) 3/30/95 42 * nfs definitions as per the Version 2 and 3 specs 46 * Constants as defined in the Sun NFS Version 2 and 3 specs. 48 * and in the "NFS: Network File System Version 3 Protocol 55 #define NFS_VER3 3 66 /* Stat numbers for rpc returns (version 2 and 3) */ 74 #define NFSERR_XDEV 18 /* Version 3 only */ 78 #define NFSERR_INVAL 22 /* Version 3 only */ 82 #define NFSERR_MLINK 31 /* Version 3 only */ [all …]
|
/freebsd/sys/nfs/ |
H A D | nfsproto.h | 2 * SPDX-License-Identifier: BSD-3-Clause 18 * 3. Neither the name of the University nor the names of its contributors 39 * nfs definitions as per the Version 2 and 3 specs 43 * Constants as defined in the Sun NFS Version 2 and 3 specs. 45 * and in the "NFS: Network File System Version 3 Protocol 52 #define NFS_VER3 3 65 /* Stat numbers for rpc returns (version 2, 3 and 4) */ 73 #define NFSERR_XDEV 18 /* Version 3 only */ 77 #define NFSERR_INVAL 22 /* Version 3 only */ 81 #define NFSERR_MLINK 31 /* Version 3 only */ [all …]
|
/freebsd/contrib/unbound/util/ |
H A D | siphash.c | 44 (p)[3] = (uint8_t)((v) >> 24); 52 ((uint64_t)((p)[2]) << 16) | ((uint64_t)((p)[3]) << 24) | \ 62 v2 += v3; \ 63 v3 = ROTL(v3, 16); \ 64 v3 ^= v2; \ 65 v0 += v3; \ 66 v3 = ROTL(v3, 21); \ 67 v3 ^= v0; \ 77 printf("(%3d) v0 %08x %08x\n", (int)inlen, (uint32_t)(v0 >> 32), \ 79 printf("(%3d) v1 %08x %08x\n", (int)inlen, (uint32_t)(v1 >> 32), \ [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/mmc/ |
H A D | nvidia,tegra20-sdhci.txt | 52 configurations. Valid pinctrl-names are "sdmmc-3v3" and "sdmmc-1v8" 56 - pinctrl-names : "sdmmc-3v3-drv" and "sdmmc-1v8-drv" are applicable for 59 using pads at 3V3 and 1V8 levels. 62 - nvidia,pad-autocal-pull-up-offset-3v3, 63 nvidia,pad-autocal-pull-down-offset-3v3 : Specify drive strength 68 - nvidia,pad-autocal-pull-up-offset-3v3-timeout, 69 nvidia,pad-autocal-pull-down-offset-3v3-timeout : Specify drive 116 pinctrl-names = "sdmmc-3v3", "sdmmc-1v8"; 119 nvidia,pad-autocal-pull-up-offset-3v3 = <0x00>; 120 nvidia,pad-autocal-pull-down-offset-3v3 = <0x7d>; [all …]
|
H A D | nvidia,tegra20-sdhci.yaml | 122 nvidia,pad-autocal-pull-down-offset-3v3: 127 nvidia,pad-autocal-pull-down-offset-3v3-timeout: 150 nvidia,pad-autocal-pull-up-offset-3v3: 162 nvidia,pad-autocal-pull-up-offset-3v3-timeout: 228 - const: sdmmc-3v3 232 - const: sdmmc-3v3-drv 237 - const: sdmmc-3v3-drv 257 - const: sdmmc-3v3 296 pinctrl-names = "sdmmc-3v3", "sdmmc-1v8", 297 "sdmmc-3v3-drv", "sdmmc-1v8-drv"; [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/hwmon/ |
H A D | ltc2990.txt | 15 2: V1-V2, V3, V4 16 3: TR1, V3, V4 17 4: TR1, V3-V4 19 6: V1-V2, V3-V4 20 7: V1, V2, V3, V4 22 The second integer defines the bits 4..3 in the control register. This 27 2: TR2, V3 or V3-V4 only per mode 28 3: All measurements per mode 35 lltc,meas-mode = <7 3>; /* V1, V2, V3, V4 */
|
/freebsd/crypto/openssl/crypto/aes/asm/ |
H A D | vpaes-armv8.pl | 214 tbl v0.16b, {$sb1u}, v3.16b // vpshufb %xmm3, %xmm12, %xmm0 # 0 = sb1t 218 tbl v2.16b, {$sb2u}, v3.16b // vpshufb %xmm3, %xmm14, %xmm2 # 2 = sb2t 220 tbl v3.16b, {v0.16b}, v1.16b // vpshufb %xmm1, %xmm0, %xmm3 # 0 = B 222 tbl v0.16b, {v0.16b}, v4.16b // vpshufb %xmm4, %xmm0, %xmm0 # 3 = D 223 eor v3.16b, v3.16b, v2.16b // vpxor %xmm2, %xmm3, %xmm3 # 0 = 2A+B 224 tbl v4.16b, {v3.16b}, v1.16b // vpshufb %xmm1, %xmm3, %xmm4 # 0 = 2B+C 225 eor v0.16b, v0.16b, v3.16b // vpxor %xmm3, %xmm0, %xmm0 # 3 = 2A+B+D 227 eor v0.16b, v0.16b, v4.16b // vpxor %xmm4, %xmm0, %xmm0 # 0 = 2A+3B+C+D 236 tbl v3.16b, {$invlo}, v0.16b // vpshufb %xmm0, %xmm10, %xmm3 # 3 = 1/i 238 eor v3.16b, v3.16b, v5.16b // vpxor %xmm5, %xmm3, %xmm3 # 3 = iak = 1/i + a/k [all …]
|
H A D | vpaes-ppc.pl | 177 my ($inp,$out,$key) = map("r$_",(3..5)); 260 vperm v0, $sb1u, v7, v3 # vpshufb %xmm3, %xmm12, %xmm0 # 0 = sb1t 265 vperm v2, $sb2u, v7, v3 # vpshufb %xmm3, %xmm14, %xmm2 # 2 = sb2t 268 vperm v3, v0, v7, v1 # vpshufb %xmm1, %xmm0, %xmm3 # 0 = B 270 vperm v0, v0, v7, v4 # vpshufb %xmm4, %xmm0, %xmm0 # 3 = D 271 vxor v3, v3, v2 # vpxor %xmm2, %xmm3, %xmm3 # 0 = 2A+B 272 vperm v4, v3, v7, v1 # vpshufb %xmm1, %xmm3, %xmm4 # 0 = 2B+C 273 vxor v0, v0, v3 # vpxor %xmm3, %xmm0, %xmm0 # 3 = 2A+B+D 274 vxor v0, v0, v4 # vpxor %xmm4, %xmm0, %xmm0 # 0 = 2A+3B+C+D 281 vperm v3, $invlo, $invlo, v1 # vpshufb %xmm0, %xmm10, %xmm3 # 3 = 1/i [all …]
|
/freebsd/crypto/openssl/crypto/siphash/ |
H A D | siphash.c | 38 (p)[3] = (uint8_t)((v) >> 24); 46 ((uint64_t)((p)[2]) << 16) | ((uint64_t)((p)[3]) << 24) | \ 56 v2 += v3; \ 57 v3 = ROTL(v3, 16); \ 58 v3 ^= v2; \ 59 v0 += v3; \ 60 v3 = ROTL(v3, 21); \ 61 v3 ^= v0; \ 131 ctx->v3 = 0x7465646279746573ULL ^ k1; in SipHash_Init() 148 uint64_t v3 = ctx->v3; in SipHash_Update() local [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_upgrade/ |
H A D | zpool_upgrade.cfg | 70 # v3 pools 71 ZPOOL_VERSION_3_FILES="zfs-pool-v3.dat" 72 ZPOOL_VERSION_3_NAME="v3-pool" 73 # v3 stripe 77 # v3 raidz 81 # v3 mirror 85 # v3 raidz2 89 # v3 hotspares 160 3 3stripe 3raidz 3mirror 3dblraidz 3hotspare \
|
/freebsd/sys/dev/hwpmc/ |
H A D | hwpmc_core.h | 87 * 44 Ctr 3 Adaptive Record (v5) 94 * 15 Ctr 3 PMI 95 * 14 Ctr 3 Any Thread (v3) 96 * 13-12 Ctr 3 Enable 98 * 10 Ctr 2 Any Thread (v3) 101 * 6 Ctr 1 Any Thread (v3) 103 * 3 Ctr 0 PMI 104 * 2 Ctr 0 Any Thread (v3) 105 * 1-0 Ctr 0 Enable (3: All Levels, 2: User, 1: OS, 0: Disable) 124 * 33 IN_TX (v3) [all …]
|
/freebsd/contrib/file/tests/ |
H A D | Makefile.am | 95 pgp-binary-key-v3-lutz.result \ 96 pgp-binary-key-v3-lutz.testfile \ 120 rpm-v3.0-bin-aarch64.result \ 121 rpm-v3.0-bin-aarch64.testfile \ 122 rpm-v3.0-bin-powerpc64.result \ 123 rpm-v3.0-bin-powerpc64.testfile \ 124 rpm-v3.0-bin-s390x.result \ 125 rpm-v3.0-bin-s390x.testfile \ 126 rpm-v3.0-bin-x86_64.result \ 127 rpm-v3.0-bin-x86_64.testfile \ [all …]
|
/freebsd/sys/contrib/openzfs/module/icp/asm-aarch64/blake3/ |
H A D | b3_aarch64_sse2.S | 45 .p2align 3 52 .word 3 82 eor v1.16b, v3.16b, v1.16b 116 mov v3.d[1], v0.d[0] 124 eor v3.16b, v2.16b, v3.16b 126 rev32 v3.8h, v3.8h 127 add v4.4s, v3.4s, v4.4s 133 eor v3 [all...] |
/freebsd/sys/contrib/device-tree/Bindings/pci/ |
H A D | v3-v360epc-pci.txt | 1 V3 Semiconductor V360 EPC PCI bridge 7 "v3,v360epc-pci" 8 "arm,integrator-ap-pci", "v3,v360epc-pci" 10 first the base address of the V3 host bridge controller, 64KB 12 - interrupts: should contain a reference to the V3 error interrupt 29 operate the V3 host bridge. 34 compatible = "arm,integrator-ap-pci", "v3,v360epc-pci"; 37 #address-cells = <3>; 58 0x4800 0 0 3 &pic 15 /* INT C on slot 9 is irq 15 */ 63 0x5000 0 0 3 &pic 16 /* INT C on slot 10 is irq 16 */ [all …]
|
/freebsd/include/rpcsvc/ |
H A D | nfs_prot.x | 83 NFBLK = 3, /* block special */ 320 * Error status (v3) 355 * File types (v3) 360 NF3BLK = 3, /* block special */ 373 * File access handle (v3) 380 * Timeval (v3) 389 * File attributes (v3) 440 * File attributes which can be set (v3) 500 * Arguments for directory operations (v3) 508 * Arguments to getattr (v3). [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ |
H A D | arm,gic-v3.yaml | 4 $id: http://devicetree.org/schemas/interrupt-controller/arm,gic-v3.yaml# 7 title: ARM Generic Interrupt Controller, version 3 26 - qcom,msm8996-gic-v3 27 - const: arm,gic-v3 28 - const: arm,gic-v3 42 Must be a single cell with a value of at least 3. 47 interrupts, 2 for interrupts in the Extended SPI range, 3 for the 55 The 3rd cell is the flags, encoded as follows: 56 bits[3:0] trigger type and level flags. 69 enum: [ 3, 4 ] [all …]
|
/freebsd/contrib/bearssl/src/symcipher/ |
H A D | aes_pwr8.c | 61 * v3 = Rcon (x4 words) in key_schedule_128() 73 vspltisw(3, 1) in key_schedule_128() 103 vxor(4, 4, 3) in key_schedule_128() 105 vsldoi(5, 3, 0, 3) in key_schedule_128() 108 vspltw(4, 4, 3) in key_schedule_128() 128 vadduwm(3, 3, 3) in key_schedule_128() 129 vsrw(4, 3, 6) in key_schedule_128() 132 vxor(3, 3, 4) in key_schedule_128() 141 : "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "ctr", "memory" in key_schedule_128() 169 * v2, v3 = current subkey in key_schedule_192() [all …]
|
/freebsd/sys/contrib/device-tree/src/riscv/allwinner/ |
H A D | sun20i-d1-clockworkpi-v3.14.dts | 12 model = "ClockworkPi v3.14 (R-01)"; 13 compatible = "clockwork,r-01-clockworkpi-v3.14", "allwinner,sun20i-d1"; 90 regulator-name = "sys-3v3"; 104 regulator-name = "aud-3v3"; 110 regulator-name = "disp-3v3"; 122 /* DLDO1 and ELDO1-3 are connected in parallel. */ 132 regulator-name = "vcc-3v3-ext-a"; 139 regulator-name = "vcc-3v3-ext-b"; 146 regulator-name = "vcc-3v3-ext-c";
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_upgrade/ |
H A D | zpool_upgrade.cfg | 78 # This is a v3 pool 79 export ZPOOL_VERSION_3_FILES="zfs-pool-v3.dat" 80 export ZPOOL_VERSION_3_NAME="v3-pool" 81 # v3 stripe 85 # v3 raidz 89 # v3 mirror 93 # v3 raidz2 97 # v3 hotspares 187 3) 188 # we should be able to upgrade pools of version 1, 2 & 3 [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | SipHash.cpp | 40 v2 += v3; \ 41 v3 = ROTL(v3, 16); \ 42 v3 ^= v2; \ 43 v0 += v3; \ 44 v3 = ROTL(v3, 21); \ 45 v3 ^= v0; \ 73 uint64_t v3 = UINT64_C(0x7465646279746573); in siphash() local 81 v3 ^= k1; in siphash() 91 v3 ^= m; in siphash() 110 b |= ((uint64_t)ni[3]) << 24; in siphash() [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/ |
H A D | shorthash_siphashx24_ref.c | 12 uint64_t v3 = 0x7465646279746573ULL; in crypto_shorthash_siphashx24() local 21 v3 ^= k1; in crypto_shorthash_siphashx24() 27 v3 ^= m; in crypto_shorthash_siphashx24() 43 b |= ((uint64_t) in[3]) << 24; in crypto_shorthash_siphashx24() 45 case 3: in crypto_shorthash_siphashx24() 57 v3 ^= b; in crypto_shorthash_siphashx24() 66 b = v0 ^ v1 ^ v2 ^ v3; in crypto_shorthash_siphashx24() 73 b = v0 ^ v1 ^ v2 ^ v3; in crypto_shorthash_siphashx24()
|