/freebsd/sys/contrib/libsodium/test/ |
H A D | constcheck.sh | 3 CT='ct.c' 5 echo '#include <assert.h>' > "$CT" 6 echo '#include <sodium.h>' >> "$CT" 7 echo 'int main(void) {' >> "$CT" 12 echo " assert($func() == $macro);" >> "$CT" 14 echo "return 0; }" >> "$CT" 16 ${CC:-cc} "$CT" $CPPFLAGS $CFLAGS $LDFLAGS -lsodium || exit 1 18 rm -f a.out "$CT"
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExceptionSpec.cpp | 1052 CanThrowResult CT = CT_Cannot; in canVarDeclThrow() local 1057 CT = mergeCanThrow(CT, Self.canThrow(Init)); in canVarDeclThrow() 1064 CT = mergeCanThrow( in canVarDeclThrow() 1065 CT, Sema::canCalleeThrow(Self, nullptr, Dtor, VD->getLocation())); in canVarDeclThrow() 1074 CT = mergeCanThrow(CT, canVarDeclThrow(Self, HD)); in canVarDeclThrow() 1076 return CT; in canVarDeclThrow() 1130 CanThrowResult CT = canDynamicCastThrow(CE); in canThrow() local 1131 if (CT == CT_Can) in canThrow() 1132 return CT; in canThrow() 1133 return mergeCanThrow(CT, canSubStmtsThrow(*this, CE)); in canThrow() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxdump/ |
H A D | llvm-cxxdump.cpp | 302 CatchableType CT; in dumpCXXData() local 303 CT.Flags = DataPtr[0]; in dumpCXXData() 304 CT.NonVirtualBaseAdjustmentOffset = DataPtr[2]; in dumpCXXData() 305 CT.VirtualBasePointerOffset = DataPtr[3]; in dumpCXXData() 306 CT.VirtualBaseAdjustmentOffset = DataPtr[4]; in dumpCXXData() 307 CT.Size = DataPtr[5]; in dumpCXXData() 308 StringRef *I = std::begin(CT.Symbols), *E = std::end(CT.Symbols); in dumpCXXData() 310 CTs[SymName] = CT; in dumpCXXData() 437 const CatchableType &CT in dumpCXXData() local [all...] |
/freebsd/crypto/openssl/doc/man7/ |
H A D | ct.pod | 13 This library implements Certificate Transparency (CT) verification for TLS 15 that a certificate has been publicly logged in a set of CT logs. 20 This library can also be used to parse and examine CT data structures, such as 21 Signed Certificate Timestamps (SCTs), or to read a list of CT logs. There are 26 - loading a CT log list from a CONF file.
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | ct.h.in | 77 * CT policy evaluation context functions * 118 /* Gets the CT logs that are trusted sources of SCTs */ 228 * For CT v1, this will be either NID_sha256WithRSAEncryption or 235 * For CT v1, this should be either NID_sha256WithRSAEncryption or 301 * If |logs| is not NULL, it will be used to lookup the CT log that the SCT came 310 * If |logs| is not NULL, it will be used to lookup the CT log that each SCT 425 * CT log functions * 429 * Creates a new CT log instance with the given |public_key| and |name| and 466 * Deletes a CT log instance and its fields. 470 /* Gets the name of the CT log */ [all …]
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | CTLOG_STORE_new.pod | 27 CTLOG_STORE_new_ex() creates an empty list of CT logs associated with 38 path instead. Both of these functions append any loaded CT logs to the 59 If there are any invalid CT logs in a file, they are skipped and the remaining 60 valid logs will still be added to the CTLOG_STORE. A CT log will be considered 66 all CT logs in the file are successfully parsed and loaded, 0 otherwise.
|
H A D | SSL_CTX_set_ctlog_list_file.pod | 18 (CT) logs from the default file location, "ct_log_list.cnf", found in the 21 SSL_CTX_set_ctlog_list_file() loads a list of CT logs from a specific path. 26 These functions will not clear the existing CT log list - it will be appended
|
H A D | CTLOG_new.pod | 32 Transparency (CT) log with the given public key and associates it with the 60 v1 CT log, the LogID will be a SHA-256 hash (i.e. 32 bytes long). Ownership of 63 CTLOG_get0_public_key() returns the public key of the CT log. Ownership of the
|
H A D | SSL_CTX_set_ct_validation_callback.pod | 35 This is accomplished by setting a built-in CT validation callback. 91 SSL_disable_ct() and SSL_CTX_disable_ct() turn off CT processing, whether 95 SSL_ct_is_enabled() and SSL_CTX_ct_is_enabled() return 1 if CT processing is 123 SSL_CTX_ct_is_enabled() and SSL_ct_is_enabled() return a 1 if a non-null CT
|
/freebsd/crypto/openssl/test/ |
H A D | serverinfo2.pem | 1 -----BEGIN SERVERINFOV2 FOR CT----- 8 -----END SERVERINFOV2 FOR CT-----
|
H A D | serverinfo.pem | 1 -----BEGIN SERVERINFO FOR CT----- 5 -----END SERVERINFO FOR CT-----
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | DAGISelMatcher.cpp | 360 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M)) { in isContradictoryImpl() local 362 if (CT->getResNo() >= getOpcode().getNumResults()) in isContradictoryImpl() 365 MVT::SimpleValueType NodeType = getOpcode().getKnownType(CT->getResNo()); in isContradictoryImpl() 367 return TypesAreContradictory(NodeType, CT->getType()); in isContradictoryImpl() 374 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M)) in isContradictoryImpl() local 375 return TypesAreContradictory(getType(), CT->getType()); in isContradictoryImpl()
|
/freebsd/sys/contrib/device-tree/Bindings/display/ti/ |
H A D | ti,tpd12s015.txt | 8 - gpios: CT CP HPD, LS OE and HPD gpios 20 gpios = <&gpio2 28 GPIO_ACTIVE_HIGH>, /* 60, CT CP HPD */
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/Analysis/ |
H A D | SPIRVConvergenceRegionAnalysis.cpp | 281 auto CT = getConvergenceToken(L->getHeader()); in analyze() local 286 if (CT.has_value()) { in analyze() 288 auto N = findPathsToMatch(LI, Exit, [&CT](const BasicBlock *block) { in analyze() 292 return Token.value() == CT.value(); in analyze() 300 DT, LI, CT, L->getHeader(), std::move(RegionBlocks), in analyze()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertWaitcnts.cpp | 1378 std::optional<InstCounterType> CT = counterTypeForInstr(Opcode); in applyPreexistingWaitcnt() local 1379 assert(CT.has_value()); in applyPreexistingWaitcnt() 1383 ScoreBrackets.simplifyWaitcnt(CT.value(), OldCnt); in applyPreexistingWaitcnt() 1384 addWait(Wait, CT.value(), OldCnt); in applyPreexistingWaitcnt() 1385 UpdatableInstr = &WaitInstrs[CT.value()]; in applyPreexistingWaitcnt() 1486 for (auto CT : inst_counter_types(NUM_EXTENDED_INST_CNTS)) { in applyPreexistingWaitcnt() local 1487 if (!WaitInstrs[CT]) in applyPreexistingWaitcnt() 1490 unsigned NewCnt = getWait(Wait, CT); in applyPreexistingWaitcnt() 1492 Modified |= updateOperandIfDifferent(*WaitInstrs[CT], in applyPreexistingWaitcnt() 1494 Modified |= promoteSoftWaitCnt(WaitInstrs[CT]); in applyPreexistingWaitcnt() [all …]
|
/freebsd/crypto/openssl/util/ |
H A D | libssl.num | 375 SSL_CTX_set_ctlog_list_file 376 3_0_0 EXIST::FUNCTION:CT 376 SSL_set_ct_validation_callback 377 3_0_0 EXIST::FUNCTION:CT 377 SSL_CTX_set_default_ctlog_list_file 378 3_0_0 EXIST::FUNCTION:CT 379 SSL_ct_is_enabled 380 3_0_0 EXIST::FUNCTION:CT 380 SSL_get0_peer_scts 381 3_0_0 EXIST::FUNCTION:CT 381 SSL_CTX_set_ct_validation_callback 382 3_0_0 EXIST::FUNCTION:CT 382 SSL_CTX_ct_is_enabled 383 3_0_0 EXIST::FUNCTION:CT 390 SSL_CTX_set0_ctlog_store 391 3_0_0 EXIST::FUNCTION:CT 391 SSL_CTX_get0_ctlog_store 392 3_0_0 EXIST::FUNCTION:CT 392 SSL_enable_ct 393 3_0_0 EXIST::FUNCTION:CT [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ModuleDebugInfoPrinter.cpp | 94 if (auto *CT = dyn_cast<DICompositeType>(T)) { in printModuleDebugInfo() local 95 if (auto *S = CT->getRawIdentifier()) in printModuleDebugInfo()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprClassification.cpp | 682 CanQualType CT = Ctx.getCanonicalType(E->getType()); in IsModifiable() local 684 if (CT.isConstQualified()) in IsModifiable() 687 CT.getQualifiers().getAddressSpace() == LangAS::opencl_constant) in IsModifiable() 691 if (CT->isArrayType()) in IsModifiable() 694 if (CT->isIncompleteType()) in IsModifiable() 698 if (const RecordType *R = CT->getAs<RecordType>()) in IsModifiable()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVDuplicatesTracker.h | 197 SPIRVDuplicatesTracker<Constant> CT; variable 231 CT.add(C, MF, R); in add() 266 return CT.find(const_cast<Constant *>(C), MF); in find()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DebugInfoMetadata.cpp | 803 auto *&CT = (*Context.pImpl->DITypeMap)[&Identifier]; in buildODRType() local 804 if (!CT) in buildODRType() 805 return CT = DICompositeType::getDistinct( in buildODRType() 811 if (CT->getTag() != Tag) in buildODRType() 815 assert(CT->getRawIdentifier() == &Identifier && "Wrong ODR identifier?"); in buildODRType() 816 if (!CT->isForwardDecl() || (Flags & DINode::FlagFwdDecl)) in buildODRType() 817 return CT; in buildODRType() 820 CT->mutate(Tag, Line, RuntimeLang, SizeInBits, AlignInBits, OffsetInBits, in buildODRType() 826 assert((std::end(Ops) - std::begin(Ops)) == (int)CT->getNumOperands() && in buildODRType() 828 for (unsigned I = 0, E = CT->getNumOperands(); I != E; ++I) in buildODRType() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
H A D | MetadataLoader.cpp | 172 void addTypeRef(MDString &UUID, DICompositeType &CT); 262 if (DICompositeType *CT = OldTypeRefs.Final.lookup(Ref.first)) in tryToResolveCycles() local 263 Ref.second->replaceAllUsesWith(CT); in tryToResolveCycles() 289 DICompositeType &CT) { in addTypeRef() argument 290 assert(CT.getRawIdentifier() == &UUID && "Mismatched UUID"); in addTypeRef() 291 if (CT.isForwardDecl()) in addTypeRef() 292 OldTypeRefs.FwdDecls.insert(std::make_pair(&UUID, &CT)); in addTypeRef() 294 OldTypeRefs.Final.insert(std::make_pair(&UUID, &CT)); in addTypeRef() 302 if (auto *CT = OldTypeRefs.Final.lookup(UUID)) in upgradeTypeRef() local 303 return CT; in upgradeTypeRef() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | CheckerManager.cpp | 743 for (const auto &CT : CheckerTags) { in runCheckersForPrintStateJson() local 745 CT.second->printState(TempOut, State, /*NL=*/NewLine.c_str(), /*Sep=*/""); in runCheckersForPrintStateJson() 755 LastCT = &CT; in runCheckersForPrintStateJson() 759 for (const auto &CT : CheckerTags) { in runCheckersForPrintStateJson() local 761 CT.second->printState(TempOut, State, /*NL=*/NewLine.c_str(), /*Sep=*/""); in runCheckersForPrintStateJson() 767 << "{ \"checker\": \"" << CT.second->getCheckerName().getName() in runCheckersForPrintStateJson() 773 if (&CT != LastCT) in runCheckersForPrintStateJson()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | StraightLineStrengthReduce.cpp | 142 Candidate(Kind CT, const SCEV *B, ConstantInt *Idx, Value *S, in Candidate() 144 : CandidateKind(CT), Base(B), Index(Idx), Stride(S), Ins(I) {} in Candidate() 223 void allocateCandidatesAndFindBasis(Candidate::Kind CT, const SCEV *B, 343 Candidate::Kind CT, const SCEV *B, ConstantInt *Idx, Value *S, in allocateCandidatesAndFindBasis() argument 345 Candidate C(CT, B, Idx, S, I); in allocateCandidatesAndFindBasis()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | DAGDeltaAlgorithm.cpp | 335 for (change_ty CT : CurrentMinSet) in Run() local 336 CurrentSet.insert(pred_begin(CT), pred_end(CT)); in Run()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
H A D | R600InstPrinter.cpp | 63 unsigned CT = MI->getOperand(OpNo).getImm(); in printCT() local 64 switch (CT) { in printCT()
|