Home
last modified time | relevance | path

Searched refs:S64 (Results 1 – 21 of 21) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPULegalizerInfo.cpp426 const LLT S64 = LLT::scalar(64); in AMDGPULegalizerInfo() local
487 S32, S64 in AMDGPULegalizerInfo()
491 S32, S64, S16 in AMDGPULegalizerInfo()
495 S32, S64, S16, V2S16 in AMDGPULegalizerInfo()
506 .legalFor({S32, S64, V2S16, S16, V4S16, S1, S128, S256}) in AMDGPULegalizerInfo()
585 .customFor({S32, S64}) in AMDGPULegalizerInfo()
586 .clampScalar(0, S32, S64) in AMDGPULegalizerInfo()
607 .legalFor({S32, S1, S64, V2S32, S16, V2S16, V4S16}) in AMDGPULegalizerInfo()
608 .clampScalar(0, S32, S64) in AMDGPULegalizerInfo()
628 .legalFor({S1, S32, S64, S16, GlobalPtr, in AMDGPULegalizerInfo()
[all …]
/netbsd-src/external/bsd/unbound/dist/compat/
H A Dsha512.c187 #define S64(b,x) (((x) >> (b)) | ((x) << (64 - (b)))) macro
194 #define Sigma0_512(x) (S64(28, (x)) ^ S64(34, (x)) ^ S64(39, (x)))
195 #define Sigma1_512(x) (S64(14, (x)) ^ S64(18, (x)) ^ S64(41, (x)))
196 #define sigma0_512(x) (S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7, (x)))
197 #define sigma1_512(x) (S64(19, (x)) ^ S64(61, (x)) ^ R( 6, (x)))
/netbsd-src/common/lib/libc/hash/sha2/
H A Dsha2.c105 #define S64(b,x) (((x) >> (b)) | ((x) << (64 - (b)))) macro
118 #define Sigma0_512(x) (S64(28, (x)) ^ S64(34, (x)) ^ S64(39, (x)))
119 #define Sigma1_512(x) (S64(14, (x)) ^ S64(18, (x)) ^ S64(41, (x)))
120 #define sigma0_512(x) (S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7, (x)))
121 #define sigma1_512(x) (S64(19, (x)) ^ S64(61, (x)) ^ R( 6, (x)))
/netbsd-src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
H A Dsha2.c141 #define S64(b,x) (((x) >> (b)) | ((x) << (64 - (b)))) macro
154 #define Sigma0_512(x) (S64(28, (x)) ^ S64(34, (x)) ^ S64(39, (x)))
155 #define Sigma1_512(x) (S64(14, (x)) ^ S64(18, (x)) ^ S64(41, (x)))
156 #define sigma0_512(x) (S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7, (x)))
157 #define sigma1_512(x) (S64(19, (x)) ^ S64(61, (x)) ^ R( 6, (x)))
/netbsd-src/external/bsd/openldap/dist/contrib/slapd-modules/passwd/sha2/
H A Dsha2.c202 #define S64(b,x) (((x) >> (b)) | ((x) << (64 - (b)))) macro
215 #define Sigma0_512(x) (S64(28, (x)) ^ S64(34, (x)) ^ S64(39, (x)))
216 #define Sigma1_512(x) (S64(14, (x)) ^ S64(18, (x)) ^ S64(41, (x)))
217 #define sigma0_512(x) (S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7, (x)))
218 #define sigma1_512(x) (S64(19, (x)) ^ S64(61, (x)) ^ R( 6, (x)))
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsABIFlagsSection.h23 enum class FpABIKind { ANY, XX, S32, S64, SOFT }; enumerator
181 FpABI = FpABIKind::S64; in setFpAbiFromPredicates()
186 FpABI = FpABIKind::S64; in setFpAbiFromPredicates()
H A DMipsABIFlagsSection.cpp27 case FpABIKind::S64: in getFpABIValue()
43 case FpABIKind::S64: in getFpABIString()
/netbsd-src/crypto/dist/ipsec-tools/src/racoon/missing/crypto/sha2/
H A Dsha2.c195 #define S64(b,x) (((x) >> (b)) | ((x) << (64 - (b)))) macro
208 #define Sigma0_512(x) (S64(28, (x)) ^ S64(34, (x)) ^ S64(39, (x)))
209 #define Sigma1_512(x) (S64(14, (x)) ^ S64(18, (x)) ^ S64(41, (x)))
210 #define sigma0_512(x) (S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7, (x)))
211 #define sigma1_512(x) (S64(19, (x)) ^ S64(61, (x)) ^ R( 6, (x)))
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp5598 const LLT S64 = LLT::scalar(64); in lowerU64ToF32BitOps() local
5602 assert(MRI.getType(Src) == S64 && MRI.getType(Dst) == S32); in lowerU64ToF32BitOps()
5615 auto Zero64 = MIRBuilder.buildConstant(S64, 0); in lowerU64ToF32BitOps()
5625 auto Mask0 = MIRBuilder.buildConstant(S64, (-1ULL) >> 1); in lowerU64ToF32BitOps()
5626 auto ShlLZ = MIRBuilder.buildShl(S64, Src, LZ); in lowerU64ToF32BitOps()
5628 auto U = MIRBuilder.buildAnd(S64, ShlLZ, Mask0); in lowerU64ToF32BitOps()
5630 auto Mask1 = MIRBuilder.buildConstant(S64, 0xffffffffffULL); in lowerU64ToF32BitOps()
5631 auto T = MIRBuilder.buildAnd(S64, U, Mask1); in lowerU64ToF32BitOps()
5633 auto UShl = MIRBuilder.buildLShr(S64, U, MIRBuilder.buildConstant(S64, 40)); in lowerU64ToF32BitOps()
5637 auto C = MIRBuilder.buildConstant(S64, 0x8000000000ULL); in lowerU64ToF32BitOps()
[all …]
/netbsd-src/external/mit/isl/dist/test_inputs/codegen/cloog/
H A Dswim.st1 …<= R; S46[i0, i1] : M = 1 and i0 >= 2 and i0 <= P and i1 >= 1 and i1 <= Q; S64[i0, i1] : M = 1 and…
55 …[i0]; S81[i0]; S63[i0, i1]; S118[i0, i1]; S96[i0, i1, i2]; S40[i0, i1, i2]; S94[i0]; S64[i0, i1] }"
57 …1] -> [(i0)]; S91[i0] -> [(i0)]; S67[i0, i1] -> [(i0)]; S74[i0] -> [(i0)]; S64[i0, i1] -> [(i0)]; …
115 - filter: "[M, N, O, P, Q, R] -> { S62[i0, i1]; S63[i0, i1]; S64[i0, i1] }"
117 …schedule: "[M, N, O, P, Q, R] -> [{ S64[i0, i1] -> [(i1)]; S62[i0, i1] -> [(i1)]; S63[i0, i1] -> […
123 - filter: "[M, N, O, P, Q, R] -> { S64[i0, i1] }"
H A Dswim.c82 S64(c0, c1);
/netbsd-src/sys/dev/ic/
H A Dmpt_mpilib.h98 } S64; typedef
117 typedef S64 *PS64;
/netbsd-src/external/gpl3/binutils/dist/include/opcode/
H A Dkvx.h119 S64, enumerator
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsInstrFPU.td105 // S64 - single precision in 32 64bit fp registers (In64BitMode)
/netbsd-src/external/gpl3/binutils/dist/opcodes/
H A Dkvx-opc.c4032 .reloc_type = S64,
4055 .reloc_type = S64,
39892 .reloc_type = S64,
39915 .reloc_type = S64,
77528 .reloc_type = S64,
77551 .reloc_type = S64,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp8548 FpABI = MipsABIFlagsSection::FpABIKind::S64; in parseFpABIValue()
/netbsd-src/external/gpl3/gdb.old/dist/gdb/
H A DChangeLog-20072423 (STR, R, R4, R8, R16, F, P8, R32, R64, R0, A4, S, S4, SN4, S64)
H A DChangeLog-20045589 (S, S4, SN4, S64): New macros for defining special-purpose
/netbsd-src/external/gpl3/gdb/dist/gdb/
H A DChangeLog-20072423 (STR, R, R4, R8, R16, F, P8, R32, R64, R0, A4, S, S4, SN4, S64)
H A DChangeLog-20045589 (S, S4, SN4, S64): New macros for defining special-purpose
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A DChangeLog-201230139 (Vget_lane [sizes S64 and U64]): Add Fixed_core_reg. Allow fmrrd in