| /src/external/public-domain/xz/dist/src/liblzma/check/ |
| crc_common.h | 31 # define S32(x) ((x) << 32) 40 # define S32(x) ((x) >> 32)
|
| /src/common/lib/libc/md/ |
| md4c.c | 75 #define S32 9 268 HH (d, a, b, c, x[ 8], S32); /* 34 */ 272 HH (d, a, b, c, x[10], S32); /* 38 */ 276 HH (d, a, b, c, x[ 9], S32); /* 42 */ 280 HH (d, a, b, c, x[11], S32); /* 46 */
|
| md5c.c | 72 #define S32 11 314 HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */ 318 HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */ 322 HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */ 326 HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/ |
| MipsABIFlagsSection.h | 23 enum class FpABIKind { ANY, XX, S32, S64, SOFT }; 188 FpABI = FpABIKind::S32;
|
| /src/external/bsd/libarchive/dist/libarchive/test/ |
| test_archive_string.c | 305 #define S32 S16 S16 306 #define S64 S32 S32 308 const char *s32 = S32; local 309 const char *s33 = S32 "0"; 315 #undef S32 326 archive_string_sprintf(&s, "%s", s32); 327 assertExactString(32, 2 * EXTENT, s32, s);
|
| /src/common/lib/libc/hash/sha2/ |
| sha2.c | 103 #define S32(b,x) (((x) >> (b)) | ((x) << (32 - (b)))) 112 #define Sigma0_256(x) (S32(2, (x)) ^ S32(13, (x)) ^ S32(22, (x))) 113 #define Sigma1_256(x) (S32(6, (x)) ^ S32(11, (x)) ^ S32(25, (x))) 114 #define sigma0_256(x) (S32(7, (x)) ^ S32(18, (x)) ^ R(3 , (x))) 115 #define sigma1_256(x) (S32(17, (x)) ^ S32(19, (x)) ^ R(10, (x)) [all...] |
| /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/ |
| md5c.c | 58 #define S32 11 285 HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */ 289 HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */ 293 HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */ 297 HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
|
| sha2.c | 139 #define S32(b,x) (((x) >> (b)) | ((x) << (32 - (b)))) 148 #define Sigma0_256(x) (S32(2, (x)) ^ S32(13, (x)) ^ S32(22, (x))) 149 #define Sigma1_256(x) (S32(6, (x)) ^ S32(11, (x)) ^ S32(25, (x))) 150 #define sigma0_256(x) (S32(7, (x)) ^ S32(18, (x)) ^ R(3 , (x))) 151 #define sigma1_256(x) (S32(17, (x)) ^ S32(19, (x)) ^ R(10, (x)) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| AMDGPUPostLegalizerCombiner.cpp | 183 const LLT S32 = LLT::scalar(32); 189 if (SrcTy != S32) 190 SrcReg = B.buildAnyExtOrTrunc(S32, SrcReg).getReg(0); 192 if (Ty == S32) { 196 auto Cvt0 = B.buildInstr(AMDGPU::G_AMDGPU_CVT_F32_UBYTE0, {S32}, 237 const LLT S32 = LLT::scalar(32); 240 if (SrcTy != S32) { 242 CvtSrc = B.buildAnyExt(S32, CvtSrc).getReg(0);
|
| AMDGPUPreLegalizerCombiner.cpp | 124 const LLT S32 = LLT::scalar(32); 129 auto Unmerge = B.buildUnmerge(S32, Src); 140 auto MinBoundaryDst = B.buildConstant(S32, MinBoundary); 141 auto MaxBoundaryDst = B.buildConstant(S32, MaxBoundary); 143 auto Bitcast = B.buildBitcast({S32}, CvtPk); 146 AMDGPU::G_AMDGPU_SMED3, {S32},
|
| AMDGPUCallLowering.cpp | 188 const LLT S32 = LLT::scalar(32); 203 auto OffsetReg = MIRBuilder.buildConstant(S32, Offset); 843 const LLT S32 = LLT::scalar(32); 849 InputReg = MRI.createGenericVirtualRegister(S32); 855 Register Y = MRI.createGenericVirtualRegister(S32); 859 Y = MIRBuilder.buildShl(S32, Y, MIRBuilder.buildConstant(S32, 10)).getReg(0); 860 InputReg = InputReg ? MIRBuilder.buildOr(S32, InputReg, Y).getReg(0) : Y; 864 Register Z = MRI.createGenericVirtualRegister(S32); 868 Z = MIRBuilder.buildShl(S32, Z, MIRBuilder.buildConstant(S32, 20)).getReg(0) [all...] |
| AMDGPUInstructionSelector.cpp | 100 // TODO: This should be legalized to s32 if needed 592 const LLT S32 = LLT::scalar(32); 605 if (MRI->getType(Src0) != S32) 3503 // Match legalized form %zext = G_MERGE_VALUES (s32 %x), (s32 0)
|
| AMDGPURegisterBankInfo.cpp | 126 const LLT S32 = LLT::scalar(32); 128 assert(MRI.getType(DstReg) == S32); 134 auto True = B.buildConstant(S32, Opc == AMDGPU::G_SEXT ? -1 : 1); 135 auto False = B.buildConstant(S32, 0); 888 LLT S32 = LLT::scalar(32); 915 Register CurrentLaneOpRegLo = MRI.createGenericVirtualRegister(S32); 916 Register CurrentLaneOpRegHi = MRI.createGenericVirtualRegister(S32); 949 CurrentLaneOpReg = MRI.createGenericVirtualRegister(S32); 1173 const LLT S32 = LLT::scalar(32); 1176 auto WideLoad = B.buildLoadFromOffset(S32, PtrReg, *MMO, 0) [all...] |
| /src/external/bsd/ipf/dist/ |
| md5.c | 267 #define S32 11 271 HH ( d, a, b, c, in[ 8], S32, UL(2272392833)); /* 34 */ 275 HH ( d, a, b, c, in[ 4], S32, UL(1272893353)); /* 38 */ 279 HH ( d, a, b, c, in[ 0], S32, UL(3936430074)); /* 42 */ 283 HH ( d, a, b, c, in[12], S32, UL(3873151461)); /* 46 */
|
| /src/external/bsd/iscsi/dist/src/lib/ |
| md5c.c | 74 #define S32 11 327 HH (d, a, b, c, x[ 8], S32, 0x8771f681); /* 34 */ 331 HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); /* 38 */ 335 HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); /* 42 */ 339 HH (d, a, b, c, x[12], S32, 0xe6db99e5); /* 46 */
|
| /src/external/bsd/ppp/dist/pppd/ |
| ppp-md5.c | 351 #define S32 11 355 HH ( d, a, b, c, in[ 8], S32, UL(2272392833)); /* 34 */ 359 HH ( d, a, b, c, in[ 4], S32, UL(1272893353)); /* 38 */ 363 HH ( d, a, b, c, in[ 0], S32, UL(3936430074)); /* 42 */ 367 HH ( d, a, b, c, in[12], S32, UL(3873151461)); /* 46 */
|
| /src/external/bsd/zstd/dist/contrib/linux-kernel/ |
| mem.h | 39 typedef int32_t S32;
|
| /src/external/bsd/zstd/dist/lib/common/ |
| mem.h | 48 typedef int32_t S32; 68 typedef signed int S32;
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| xxhash.c | 114 typedef int32_t S32; 120 typedef signed int S32;
|
| /src/external/bsd/openldap/dist/contrib/slapd-modules/passwd/sha2/ |
| sha2.c | 200 #define S32(b,x) (((x) >> (b)) | ((x) << (32 - (b)))) 209 #define Sigma0_256(x) (S32(2, (x)) ^ S32(13, (x)) ^ S32(22, (x))) 210 #define Sigma1_256(x) (S32(6, (x)) ^ S32(11, (x)) ^ S32(25, (x))) 211 #define sigma0_256(x) (S32(7, (x)) ^ S32(18, (x)) ^ R(3 , (x))) 212 #define sigma1_256(x) (S32(17, (x)) ^ S32(19, (x)) ^ R(10, (x)) [all...] |
| /src/crypto/dist/ipsec-tools/src/racoon/missing/crypto/sha2/ |
| sha2.c | 193 #define S32(b,x) (((x) >> (b)) | ((x) << (32 - (b)))) 202 #define Sigma0_256(x) (S32(2, (x)) ^ S32(13, (x)) ^ S32(22, (x))) 203 #define Sigma1_256(x) (S32(6, (x)) ^ S32(11, (x)) ^ S32(25, (x))) 204 #define sigma0_256(x) (S32(7, (x)) ^ S32(18, (x)) ^ R(3 , (x))) 205 #define sigma1_256(x) (S32(17, (x)) ^ S32(19, (x)) ^ R(10, (x)) [all...] |
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| lz4.c | 268 #define S32 int32_t 445 return DeBruijnBytePos[((U32) ((val & -(S32) val) * 0x077CB531U)) >>
|
| /src/external/bsd/zstd/dist/lib/legacy/ |
| zstd_v01.c | 176 typedef int32_t S32; 184 typedef signed int S32; 1250 typedef int32_t S32; 1257 typedef signed int S32;
|
| zstd_v03.c | 89 typedef int32_t S32; 97 typedef signed int S32;
|
| zstd_v04.c | 56 typedef int32_t S32; 64 typedef signed int S32;
|