Home
last modified time | relevance | path

Searched refs:CT (Results 1 – 25 of 128) sorted by relevance

123456

/freebsd-14.2/sys/contrib/libsodium/test/
H A Dconstcheck.sh3 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-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp1077 CT = mergeCanThrow(CT, Self.canThrow(Init)); in canVarDeclThrow()
1094 CT = mergeCanThrow(CT, canVarDeclThrow(Self, HD)); in canVarDeclThrow()
1096 return CT; in canVarDeclThrow()
1207 CT = mergeCanThrow(CT, canThrow(*Cap)); in canThrow()
1208 return CT; in canThrow()
1257 CT = mergeCanThrow(CT, canThrow(E)); in canThrow()
1553 CT = mergeCanThrow(CT, canThrow(Init)); in canThrow()
1555 CT = mergeCanThrow(CT, canThrow(CondDS)); in canThrow()
1556 CT = mergeCanThrow(CT, canThrow(IS->getCond())); in canThrow()
1594 CT = mergeCanThrow(CT, canThrow(Finally)); in canThrow()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp302 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 = CTPair.second; in dumpCXXData() local
452 << CT.VirtualBaseAdjustmentOffset << '\n'; in dumpCXXData()
[all …]
/freebsd-14.2/crypto/openssl/doc/man7/
H A Dct.pod13 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-14.2/crypto/openssl/include/openssl/
H A Dct.h.in77 * CT policy evaluation context functions *
118 /* Gets the CT logs that are trusted sources of SCTs */
425 * CT log functions *
466 * Deletes a CT log instance and its fields.
470 /* Gets the name of the CT log */
472 /* Gets the ID of the CT log */
475 /* Gets the public key of the CT log */
479 * CT log store functions *
497 * Deletes a CT log store and all of the CT log instances held within.
502 * Finds a CT log in the store based on its log ID.
[all …]
/freebsd-14.2/crypto/openssl/doc/man3/
H A DCTLOG_STORE_new.pod27 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 DSSL_CTX_set_ctlog_list_file.pod18 (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 DCTLOG_new.pod32 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 DSSL_CTX_set_ct_validation_callback.pod35 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-14.2/crypto/openssl/test/
H A Dserverinfo2.pem1 -----BEGIN SERVERINFOV2 FOR CT-----
8 -----END SERVERINFOV2 FOR CT-----
H A Dserverinfo.pem1 -----BEGIN SERVERINFO FOR CT-----
5 -----END SERVERINFO FOR CT-----
/freebsd-14.2/sys/contrib/device-tree/Bindings/display/ti/
H A Dti,tpd12s015.txt8 - gpios: CT CP HPD, LS OE and HPD gpios
20 gpios = <&gpio2 28 GPIO_ACTIVE_HIGH>, /* 60, CT CP HPD */
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp365 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M)) { in isContradictoryImpl() local
367 if (CT->getResNo() >= getOpcode().getNumResults()) in isContradictoryImpl()
370 MVT::SimpleValueType NodeType = getOpcode().getKnownType(CT->getResNo()); in isContradictoryImpl()
372 return TypesAreContradictory(NodeType, CT->getType()); in isContradictoryImpl()
379 if (const CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(M)) in isContradictoryImpl() local
380 return TypesAreContradictory(getType(), CT->getType()); in isContradictoryImpl()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleDebugInfoPrinter.cpp94 if (auto *CT = dyn_cast<DICompositeType>(T)) { in printModuleDebugInfo() local
95 if (auto *S = CT->getRawIdentifier()) in printModuleDebugInfo()
/freebsd-14.2/crypto/openssl/util/
H A Dlibssl.num375 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-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInsertWaitcnts.cpp1353 assert(CT.has_value()); in applyPreexistingWaitcnt()
1358 addWait(Wait, CT.value(), OldCnt); in applyPreexistingWaitcnt()
1359 UpdatableInstr = &WaitInstrs[CT.value()]; in applyPreexistingWaitcnt()
1461 if (!WaitInstrs[CT]) in applyPreexistingWaitcnt()
1464 unsigned NewCnt = getWait(Wait, CT); in applyPreexistingWaitcnt()
1468 Modified |= promoteSoftWaitCnt(WaitInstrs[CT]); in applyPreexistingWaitcnt()
1470 ScoreBrackets.applyWaitcnt(CT, NewCnt); in applyPreexistingWaitcnt()
1471 setNoWait(Wait, CT); in applyPreexistingWaitcnt()
1481 WaitInstrs[CT]->eraseFromParent(); in applyPreexistingWaitcnt()
1535 unsigned Count = getWait(Wait, CT); in createNewWaitcnt()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExprClassification.cpp669 CanQualType CT = Ctx.getCanonicalType(E->getType()); in IsModifiable() local
671 if (CT.isConstQualified()) in IsModifiable()
674 CT.getQualifiers().getAddressSpace() == LangAS::opencl_constant) in IsModifiable()
678 if (CT->isArrayType()) in IsModifiable()
681 if (CT->isIncompleteType()) in IsModifiable()
685 if (const RecordType *R = CT->getAs<RecordType>()) in IsModifiable()
/freebsd-14.2/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/
H A DDylibReader.cpp35 auto I = partition_point(Container, [=](const Triple &CT) { in emplace() argument
36 return std::forward_as_tuple(CT.getArch(), CT.getOS(), in emplace()
37 CT.getEnvironment()) < in emplace()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfoMetadata.cpp794 if (!CT) in buildODRType()
795 return CT = DICompositeType::getDistinct( in buildODRType()
801 if (CT->getTag() != Tag) in buildODRType()
807 return CT; in buildODRType()
819 if (Ops[I] != CT->getOperand(I)) in buildODRType()
820 CT->setOperand(I, Ops[I]); in buildODRType()
821 return CT; in buildODRType()
836 if (!CT) { in getODRType()
837 CT = DICompositeType::getDistinct( in getODRType()
843 if (CT->getTag() != Tag) in getODRType()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp172 void addTypeRef(MDString &UUID, DICompositeType &CT);
263 Ref.second->replaceAllUsesWith(CT); in tryToResolveCycles()
291 if (CT.isForwardDecl()) 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()
1665 DICompositeType *CT = nullptr; in parseOneMetadata() local
1667 CT = DICompositeType::buildODRType( in parseOneMetadata()
1674 if (!CT) in parseOneMetadata()
1675 CT = GET_OR_DISTINCT(DICompositeType, in parseOneMetadata()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DR600InstPrinter.cpp64 unsigned CT = MI->getOperand(OpNo).getImm(); in printCT() local
65 switch (CT) { in printCT()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp743 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-14.2/contrib/llvm-project/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp335 for (change_ty CT : CurrentMinSet) in Run() local
336 CurrentSet.insert(pred_begin(CT), pred_end(CT)); in Run()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DStraightLineStrengthReduce.cpp142 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-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DABIInfo.cpp129 if (const ComplexType *CT = Ty->getAs<ComplexType>()) { in isHomogeneousAggregate() local
131 Ty = CT->getElementType(); in isHomogeneousAggregate()

123456