Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/doc/man7/
H A Dopenssl-env.pod78 Traces the OpenSSL trace API itself.
82 Traces OpenSSL library initialization and cleanup.
86 Traces the TLS/SSL protocol.
90 Traces the ciphers used by the TLS/SSL protocol.
109 Traces PKCS#5 v2 key generation.
113 Traces PKCS#12 key generation.
117 Traces PKCS#12 decryption.
126 Traces BIGNUM context operations.
130 Traces CMP client and server activity.
134 Traces STORE operations.
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DOSSL_trace_set_channel.pod122 Traces the OpenSSL trace API itself.
129 Traces OpenSSL library initialization and cleanup.
140 Traces the TLS/SSL protocol.
144 Traces the ciphers used by the TLS/SSL protocol.
148 Traces details about the provider and engine configuration.
152 Traces the ENGINE algorithm table selection.
161 Traces the ENGINE reference counting.
168 Traces PKCS#5 v2 key generation.
172 Traces PKCS#12 key generation.
176 Traces PKCS#12 decryption.
[all …]
/freebsd/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/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StorePairSuppress.cpp36 MachineTraceMetrics *Traces; member in __anondab15a050111::AArch64StorePairSuppress
77 MinInstr = Traces->getEnsemble(MachineTraceStrategy::TS_MinInstrCount); in shouldAddSTPToBlock()
140 Traces = &getAnalysis<MachineTraceMetricsWrapperPass>().getMTM(); in runOnMachineFunction()
H A DAArch64ConditionalCompares.cpp768 MachineTraceMetrics *Traces; member in __anon79d718350211::AArch64ConditionalCompares
842 Traces->invalidate(CmpConv.Head); in invalidateTraces()
843 Traces->invalidate(CmpConv.CmpBB); in invalidateTraces()
854 MinInstr = Traces->getEnsemble(MachineTraceStrategy::TS_MinInstrCount); in shouldConvert()
938 Traces = &getAnalysis<MachineTraceMetricsWrapperPass>().getMTM(); in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DEarlyIfConversion.cpp810 MachineTraceMetrics *Traces = nullptr; member in __anon4c5015260311::EarlyIfConverter
817 : DomTree(&DT), Loops(&LI), Traces(&MTM) {} in EarlyIfConverter()
891 Traces->verifyAnalysis(); in invalidateTraces()
892 Traces->invalidate(IfConv.Head); in invalidateTraces()
893 Traces->invalidate(IfConv.Tail); in invalidateTraces()
894 Traces->invalidate(IfConv.TBB); in invalidateTraces()
895 Traces->invalidate(IfConv.FBB); in invalidateTraces()
896 Traces->verifyAnalysis(); in invalidateTraces()
958 MinInstr = Traces->getEnsemble(MachineTraceStrategy::TS_MinInstrCount); in shouldConvertIf()
H A DMachineCombiner.cpp72 MachineTraceMetrics *Traces = nullptr; member in __anon20cc5c180111::MachineCombiner
566 TraceEnsemble = Traces->getEnsemble(TII->getMachineCombinerTraceStrategy()); in combineInstructions()
686 Traces->verifyAnalysis(); in combineInstructions()
715 Traces->invalidate(MBB); in combineInstructions()
727 Traces = &getAnalysis<MachineTraceMetricsWrapperPass>().getMTM(); in runOnMachineFunction()
/freebsd/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/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp845 auto &Traces = Reader->getTemporalProfTraces(Input.Weight); in loadInput() local
846 if (!Traces.empty()) in loadInput()
848 Traces, Reader->getTemporalProfTraceStreamSize()); in loadInput()
3076 auto &Traces = Reader->getTemporalProfTraces(); in showInstrProfile() local
3077 OS << "Temporal Profile Traces (samples=" << Traces.size() in showInstrProfile()
3079 for (unsigned i = 0; i < Traces.size(); i++) { in showInstrProfile()
3080 OS << " Temporal Profile Trace " << i << " (weight=" << Traces[i].Weight in showInstrProfile()
3081 << " count=" << Traces[i].FunctionNameRefs.size() << "):\n"; in showInstrProfile()
3082 for (auto &NameRef : Traces[i].FunctionNameRefs) in showInstrProfile()
3422 ArrayRef Traces = Reader->getTemporalProfTraces(); in order_main() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp1072 ArrayRef<TemporalProfTraceTy> Traces, std::vector<BPFunctionNode> &Nodes, in createBPFunctionNodes() argument
1082 for (auto &Trace : Traces) { in createBPFunctionNodes()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
H A DCheckers.td552 "Traces memory managed by malloc()/free().">,
641 HelpText<"Check for double-free and use-after-free problems. Traces memory "
647 HelpText<"Check for memory leaks. Traces memory managed by new/delete.">,
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProf.h441 createBPFunctionNodes(ArrayRef<TemporalProfTraceTy> Traces,
/freebsd/contrib/googletest/docs/reference/
H A Dtesting.md465 [Adding Traces to Assertions](../advanced.md#adding-traces-to-assertions).
/freebsd/contrib/googletest/docs/
H A Dadvanced.md655 ### Adding Traces to Assertions