Home
last modified time | relevance | path

Searched refs:Traces (Results 1 – 15 of 15) sorted by relevance

/freebsd-14.2/crypto/openssl/doc/man7/
H A Dopenssl-env.pod71 Traces the OpenSSL trace API itself.
79 Traces the TLS/SSL protocol.
83 Traces the ciphers used by the TLS/SSL protocol.
102 Traces PKCS#5 v2 key generation.
106 Traces PKCS#12 key generation.
110 Traces PKCS#12 decryption.
119 Traces BIGNUM context operations.
123 Traces CMP client and server activity.
127 Traces STORE operations.
131 Traces decoder operations.
[all …]
/freebsd-14.2/crypto/openssl/doc/man3/
H A DOSSL_trace_set_channel.pod117 Traces the OpenSSL trace API itself.
135 Traces the TLS/SSL protocol.
156 Traces the ENGINE reference counting.
163 Traces PKCS#5 v2 key generation.
167 Traces PKCS#12 key generation.
171 Traces PKCS#12 decryption.
175 Traces X509v3 policy processing.
182 Traces BIGNUM context operations.
190 Traces STORE operations.
194 Traces decoder operations.
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.h121 void Clear() { Traces.clear(); } in Clear()
123 auto It = Traces.find(InputSha1); in Get()
124 if (It != Traces.end()) in Get()
131 std::unordered_map<std::string, std::vector<uint8_t>> Traces;
H A DFuzzerDataFlowTrace.cpp235 Traces[Name] = DFTStringToVector(DFTString); in Init()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StorePairSuppress.cpp36 MachineTraceMetrics *Traces; member in __anon5d7827fb0111::AArch64StorePairSuppress
79 MinInstr = Traces->getEnsemble(MachineTraceStrategy::TS_MinInstrCount); in shouldAddSTPToBlock()
134 Traces = &getAnalysis<MachineTraceMetrics>(); in runOnMachineFunction()
H A DAArch64ConditionalCompares.cpp769 MachineTraceMetrics *Traces; member in __anonc9893bab0211::AArch64ConditionalCompares
845 Traces->invalidate(CmpConv.Head); in invalidateTraces()
846 Traces->invalidate(CmpConv.CmpBB); in invalidateTraces()
857 MinInstr = Traces->getEnsemble(MachineTraceStrategy::TS_MinInstrCount); in shouldConvert()
939 Traces = &getAnalysis<MachineTraceMetrics>(); in runOnMachineFunction()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DEarlyIfConversion.cpp769 MachineTraceMetrics *Traces = nullptr; member in __anone8860c9c0311::EarlyIfConverter
840 Traces->verifyAnalysis(); in invalidateTraces()
841 Traces->invalidate(IfConv.Head); in invalidateTraces()
842 Traces->invalidate(IfConv.Tail); in invalidateTraces()
843 Traces->invalidate(IfConv.TBB); in invalidateTraces()
844 Traces->invalidate(IfConv.FBB); in invalidateTraces()
845 Traces->verifyAnalysis(); in invalidateTraces()
907 MinInstr = Traces->getEnsemble(MachineTraceStrategy::TS_MinInstrCount); in shouldConvertIf()
1094 Traces = &getAnalysis<MachineTraceMetrics>(); in runOnMachineFunction()
H A DMachineCombiner.cpp72 MachineTraceMetrics *Traces = nullptr; member in __anon9511fe0e0111::MachineCombiner
584 TraceEnsemble = Traces->getEnsemble(TII->getMachineCombinerTraceStrategy()); in combineInstructions()
704 Traces->verifyAnalysis(); in combineInstructions()
733 Traces->invalidate(MBB); in combineInstructions()
745 Traces = &getAnalysis<MachineTraceMetrics>(); in runOnMachineFunction()
/freebsd-14.2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dman.TraceProvider69 * RESULT: Traces of all the matching profile probes with the
79 * RESULT: Traces of the matching profile probe with the
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp726 auto &Traces = Reader->getTemporalProfTraces(Input.Weight); in loadInput() local
727 if (!Traces.empty()) in loadInput()
729 Traces, Reader->getTemporalProfTraceStreamSize()); in loadInput()
2908 auto &Traces = Reader->getTemporalProfTraces(); in showInstrProfile() local
2909 OS << "Temporal Profile Traces (samples=" << Traces.size() in showInstrProfile()
2911 for (unsigned i = 0; i < Traces.size(); i++) { in showInstrProfile()
2912 OS << " Temporal Profile Trace " << i << " (weight=" << Traces[i].Weight in showInstrProfile()
2913 << " count=" << Traces[i].FunctionNameRefs.size() << "):\n"; in showInstrProfile()
2914 for (auto &NameRef : Traces[i].FunctionNameRefs) in showInstrProfile()
3221 auto &Traces = Reader->getTemporalProfTraces(); in order_main() local
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp909 ArrayRef<TemporalProfTraceTy> Traces) { in createBPFunctionNodes() argument
916 for (auto &Trace : Traces) in createBPFunctionNodes()
920 for (auto &Trace : Traces) in createBPFunctionNodes()
929 for (size_t TraceIdx = 0; TraceIdx < Traces.size(); TraceIdx++) { in createBPFunctionNodes()
930 auto &Trace = Traces[TraceIdx].FunctionNameRefs; in createBPFunctionNodes()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td553 "Traces memory managed by malloc()/free().">,
632 HelpText<"Check for double-free and use-after-free problems. Traces memory "
638 HelpText<"Check for memory leaks. Traces memory managed by new/delete.">,
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h366 createBPFunctionNodes(ArrayRef<TemporalProfTraceTy> Traces);
/freebsd-14.2/contrib/googletest/docs/reference/
H A Dtesting.md349 [Adding Traces to Assertions](../advanced.md#adding-traces-to-assertions).
/freebsd-14.2/contrib/googletest/docs/
H A Dadvanced.md649 ### Adding Traces to Assertions