| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | LEB128.cpp | 31 int Sign = Value >> (8 * sizeof(Value) - 1); in getSLEB128Size() local 37 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; in getSLEB128Size()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | CmpInstAnalysis.cpp | 40 Constant *llvm::getPredForICmpCode(unsigned Code, bool Sign, Type *OpTy, in getPredForICmpCode() argument 46 case 1: Pred = Sign ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; break; in getPredForICmpCode() 48 case 3: Pred = Sign ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE; break; in getPredForICmpCode() 49 case 4: Pred = Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT; break; in getPredForICmpCode() 51 case 6: Pred = Sign ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE; break; in getPredForICmpCode()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | BCD.h | 37 uint8_t Sign = Ptr[ByteLen - 1] & 0x0f; variable 39 if (Sign == 0x0d || Sign == 0x0b)
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMAddressingModes.h | 634 uint8_t Sign = (Imm >> 7) & 0x1; in getFPImmFloat() local 643 I |= Sign << 31; in getFPImmFloat() 655 uint32_t Sign = Imm.lshr(15).getZExtValue() & 1; in getFP16Imm() local 670 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP16Imm() 693 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1; in getFP32Imm() local 710 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP32Imm() 721 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1; in getFP64Imm() local 738 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP64Imm()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVBaseInfo.cpp | 275 bool Sign = Imm.extractBitsAsZExtValue(1, 31); in getLoadFPImm() local 288 if (Sign) { in getLoadFPImm() 301 uint32_t Sign = 0; in getFPImm() local 303 Sign = 0b1; in getFPImm() 310 uint32_t I = Sign << 31 | Exp << 23 | Mantissa << 21; in getFPImm()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/ |
| H A D | TargetID.cpp | 89 auto Sign = Splits.first.back(); in parseTargetIDWithFormatCheckingOnly() local 91 if (Sign != '+' && Sign != '-') in parseTargetIDWithFormatCheckingOnly() 93 bool IsOn = Sign == '+'; in parseTargetIDWithFormatCheckingOnly()
|
| /freebsd-14.2/crypto/openssl/doc/man3/ |
| H A D | OPENSSL_s390xcap.pod | 159 # 9 1<<54 KDSA-ECDSA-Sign-P256 160 # 10 1<<53 KDSA-ECDSA-Sign-P384 161 # 11 1<<52 KDSA-ECDSA-Sign-P521 164 # 40 1<<23 KDSA-EdDSA-Sign-Ed25519 165 # 44 1<<19 KDSA-EdDSA-Sign-Ed448
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64AddressingModes.h | 346 uint8_t Sign = (Imm >> 7) & 0x1; in getFPImmFloat() local 356 I |= Sign << 31; in getFPImmFloat() 368 uint32_t Sign = Imm.lshr(15).getZExtValue() & 1; in getFP16Imm() local 383 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP16Imm() 394 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1; in getFP32Imm() local 411 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP32Imm() 422 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1; in getFP64Imm() local 439 return ((int)Sign << 7) | (Exp << 4) | Mantissa; in getFP64Imm()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMMachineFunctionInfo.cpp | 51 if (const auto *Sign = mdconst::extract_or_null<ConstantInt>( in GetSignReturnAddress() local 53 if (Sign->getZExtValue()) { in GetSignReturnAddress()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/ |
| H A D | SourceLocationEncoding.h | 99 UIntTy Sign = (V & (1 << (UIntBits - 1))) ? UIntTy(-1) : UIntTy(0); in zigZag() local 100 return Sign ^ (V << 1); in zigZag()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyIndVar.cpp | 1048 enum class ExtendKind { Zero, Sign, Unknown }; enumerator 1258 bool IsSigned = getExtendKind(NarrowDef) == ExtendKind::Sign; in cloneBitwiseIVUser() 1323 bool SignExtend = getExtendKind(NarrowDef) == ExtendKind::Sign; in cloneArithmeticIVUser() 1394 if (!(ExtKind == ExtendKind::Sign && OBO->hasNoSignedWrap()) && in getExtendedOperandRecurrence() 1404 ExtKind = ExtendKind::Sign; in getExtendedOperandRecurrence() 1413 if (ExtKind == ExtendKind::Sign) in getExtendedOperandRecurrence() 1463 ExtKind = ExtendKind::Sign; in getWideRecurrence() 1468 } else if (getExtendKind(DU.NarrowDef) == ExtendKind::Sign) { in getWideRecurrence() 1470 ExtKind = ExtendKind::Sign; in getWideRecurrence() 1616 if (ExtKind == ExtendKind::Sign) in widenWithVariantUse() [all …]
|
| /freebsd-14.2/contrib/file/magic/Magdir/ |
| H A D | pgp | 109 >11 byte 0x01 RSA (Encrypt or Sign) 1024b 126 >12 byte 0x01 RSA (Encrypt or Sign) 2048b 143 >12 byte 0x01 RSA (Encrypt or Sign) 3072b 160 >12 byte 0x01 RSA (Encrypt or Sign) 4096b 177 >12 byte 0x01 RSA (Encrypt or Sign) 8192b 260 >0 byte 0x01 RSA (Encrypt or Sign) 263 >0 byte 0x03 RSA (Sign-Only) 268 >0 byte 20 ElGamal (Encrypt or Sign) 306 >5 byte 0x01 RSA (Encrypt or Sign) 568 # display key algorithm 1~RSA Encrypt|Sign - 21~Diffie-Hellman
|
| /freebsd-14.2/crypto/openssl/test/recipes/25-test_rusext_data/ |
| H A D | grfc.utf8 | 21 Digital Signature, Certificate Sign, CRL Sign
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXInstrInfo.td | 2905 LdStCode:$Sign, i32imm:$toWidth, imem:$addr), 2906 "st${isVol:volatile}${addsp:addsp}${Vec:vec}.${Sign:sign}$toWidth" 2912 "st${isVol:volatile}${addsp:addsp}${Vec:vec}.${Sign:sign}$toWidth" 2917 LdStCode:$Sign, i32imm:$toWidth, Int64Regs:$addr), 2918 "st${isVol:volatile}${addsp:addsp}${Vec:vec}.${Sign:sign}$toWidth" 2924 "st${isVol:volatile}${addsp:addsp}${Vec:vec}.${Sign:sign}$toWidth" 2930 "st${isVol:volatile}${addsp:addsp}${Vec:vec}.${Sign:sign}$toWidth" 2935 LdStCode:$Sign, i32imm:$toWidth, imem:$addr, i32imm:$offset), 2936 "st${isVol:volatile}${addsp:addsp}${Vec:vec}.${Sign:sign}$toWidth" 3071 LdStCode:$Vec, LdStCode:$Sign, i32imm:$fromWidth, imem:$addr, [all …]
|
| /freebsd-14.2/secure/caroot/trusted/ |
| H A D | GlobalSign_ECC_Root_CA_-_R4.pem | 38 Digital Signature, Certificate Sign, CRL Sign
|
| H A D | Amazon_Root_CA_3.pem | 40 Digital Signature, Certificate Sign, CRL Sign
|
| H A D | CommScope_Public_Trust_ECC_Root-01.pem | 42 Certificate Sign, CRL Sign
|
| H A D | Certainly_Root_E1.pem | 40 Certificate Sign, CRL Sign
|
| H A D | AffirmTrust_Premium_ECC.pem | 43 Certificate Sign, CRL Sign
|
| H A D | DigiCert_TLS_ECC_P384_Root_G5.pem | 42 Digital Signature, Certificate Sign, CRL Sign
|
| /freebsd-14.2/contrib/file/tests/ |
| H A D | pgp-binary-key-v2-phil.result | 1 OpenPGP Public Key Version 2, Created Fri May 21 05:20:00 1993, RSA (Encrypt or Sign, 1024 bits); U…
|
| H A D | pgp-binary-key-v3-lutz.result | 1 OpenPGP Public Key Version 3, Created Mon Mar 17 11:14:30 1997, RSA (Encrypt or Sign, 1127 bits); U…
|
| H A D | pgp-binary-key-v4-rsa-no-userid-secret.result | 1 OpenPGP Secret Key Version 4, Created Sat Aug 22 20:13:52 2020, RSA (Encrypt or Sign, 3072 bits); S…
|
| H A D | pgp-binary-key-v4-rsa-secret-key.result | 1 OpenPGP Secret Key Version 4, Created Sat Aug 22 14:05:57 2020, RSA (Encrypt or Sign, 3072 bits); U…
|
| H A D | pgp-binary-key-v4-rsa-key.result | 1 OpenPGP Secret Key Version 4, Created Sat Aug 22 14:05:57 2020, RSA (Encrypt or Sign, 3072 bits); U…
|