| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugFrameDataSubsection.cpp | 28 if (auto EC = Reader.readArray(Frames, Count)) in initialize() 39 uint32_t Size = sizeof(FrameData) * Frames.size(); in calculateSerializedSize() 51 std::vector<FrameData> SortedFrames(Frames.begin(), Frames.end()); in commit() 61 Frames.push_back(Frame); in addFrameData()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugFrameDataSubsection.h | 36 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); } in begin() 37 FixedStreamArray<FrameData>::Iterator end() const { return Frames.end(); } in end() 43 FixedStreamArray<FrameData> Frames; variable 59 void setFrames(ArrayRef<FrameData> Frames); 63 std::vector<FrameData> Frames; variable
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | MemProfRadixTree.h | 78 std::vector<Frame> Frames; in operator() local 85 Frames.reserve(CS.size()); in operator() 87 Frames.push_back(FrameIdToFrame(Id)); in operator() 89 return Frames; in operator() 121 std::vector<Frame> Frames; in operator() local 128 Frames.reserve(NumFrames); in operator() 141 Frames.push_back(FrameIdToFrame(Elem)); in operator() 145 return Frames; in operator() 221 : FrameIdConv(MemProfData.Frames), in IndexedCallstackIdConverter() 233 FrameIdConverter<decltype(IndexedMemProfData::Frames)> FrameIdConv;
|
| H A D | MemProfYAML.h | 182 : Frames(CS.Frames) { 191 CS.Frames = Frames; 201 decltype(memprof::CallSiteInfo::Frames) Frames; 211 Io.mapRequired("Frames", Keys->Frames);
|
| H A D | MemProf.h | 499 std::vector<Frame> Frames; 505 CallSiteInfo(std::vector<Frame> Frames) : Frames(std::move(Frames)) {} 506 CallSiteInfo(std::vector<Frame> Frames, 508 : Frames(std::move(Frames)), CalleeGuids(std::move(CalleeGuids)) {} 511 return Frames == Other.Frames && CalleeGuids == Other.CalleeGuids; 541 for (const Frame &F : CS.Frames) {
|
| H A D | IndexedMemProfData.h | 37 llvm::MapVector<FrameId, Frame> Frames; member 44 Frames.try_emplace(Id, F); in addFrame()
|
| H A D | MemProfReader.h | 93 auto It = MemProfData.Frames.find(Id); in idToFrame() 94 assert(It != MemProfData.Frames.end() && "Id not found in map."); in idToFrame()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/ |
| H A D | DIContext.h | 95 SmallVector<DILineInfo, 4> Frames; variable 103 assert(Index < Frames.size()); in getFrame() 104 return Frames[Index]; in getFrame() 108 assert(Index < Frames.size()); in getMutableFrame() 109 return &Frames[Index]; in getMutableFrame() 112 uint32_t getNumberOfFrames() const { return Frames.size(); } in getNumberOfFrames() 114 void addFrame(const DILineInfo &Frame) { Frames.push_back(Frame); } in addFrame() 116 void resize(unsigned i) { Frames.resize(i); } in resize()
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFCFIChecker/ |
| H A D | DWARFCFIFunctionFrameStreamer.cpp | 29 auto Frames = getDwarfFrameInfos(); in updateReceiver() local 30 assert(FrameIndices.back() < Frames.size()); in updateReceiver() 33 Frames[FrameIndices.back()].Instructions.size(); in updateReceiver() 36 const MCDwarfFrameInfo *LastFrame = &Frames[FrameIndices.back()]; in updateReceiver()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemProfUse.cpp | 321 UndriftCallStack(CS.Frames); in undriftMemProfRecord() 439 ArrayRef<Frame> Frames; in readMemprof() member 448 return Frames.data() == Other.Frames.data() && in readMemprof() 449 Frames.size() == Other.Frames.size(); in readMemprof() 455 return computeFullStackId(Entry.Frames); in readMemprof() 477 for (auto &StackFrame : CS.Frames) { in readMemprof() 479 ArrayRef<Frame> FrameSlice = ArrayRef<Frame>(CS.Frames).drop_front(Idx++); in readMemprof() 488 assert(Idx <= CS.Frames.size() && CS.Frames[Idx - 1].Function == FuncGUID); in readMemprof() 629 if (stackFrameIncludesInlinedCallStack(CallSiteEntry.Frames, in readMemprof()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeFunctionSymbol.cpp | 111 std::vector<SymIndexId> Frames; in findInlineFramesByVA() local 128 Frames.insert(Frames.begin(), Id); in findInlineFramesByVA() 146 return std::make_unique<NativeEnumSymbols>(Session, std::move(Frames)); in findInlineFramesByVA()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBContext.cpp | 111 auto Frames = ParentFunc->findInlineFramesByVA(Address.Address); in getInliningInfoForAddress() local 112 if (!Frames || Frames->getChildCount() == 0) { in getInliningInfoForAddress() 117 while (auto Frame = Frames->getNext()) { in getInliningInfoForAddress()
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | InstrProfWriter.cpp | 255 auto [Iter, Inserted] = MemProfData.Frames.insert({Id, Frame}); in addMemProfFrame() 288 if (Incoming.Frames.empty() && Incoming.CallStacks.empty() && in addMemProfData() 293 assert(!Incoming.Frames.empty() && !Incoming.CallStacks.empty() && in addMemProfData() 296 if (MemProfData.Frames.empty()) in addMemProfData() 297 MemProfData.Frames = std::move(Incoming.Frames); in addMemProfData() 299 for (const auto &[Id, F] : Incoming.Frames) in addMemProfData() 404 MemProfData.Frames.reserve(IPW.MemProfData.Frames.size()); in mergeRecordsFromWriter() 405 for (auto &[FrameId, Frame] : IPW.MemProfData.Frames) { in mergeRecordsFromWriter()
|
| H A D | MemProfReader.cpp | 493 const SmallVector<FrameId> &Frames = SymbolizedFrame[Address]; in mapRawProfileToRecords() local 495 assert(!idToFrame(Frames.back()).IsInlineFrame && in mapRawProfileToRecords() 501 for (size_t J = 0; J < Frames.size(); J++) { in mapRawProfileToRecords() 508 const GlobalValue::GUID Guid = idToFrame(Frames[J]).Function; in mapRawProfileToRecords() 509 PerFunctionCallSites[Guid].insert(&Frames); in mapRawProfileToRecords() 513 Callstack.append(Frames.begin(), Frames.end()); in mapRawProfileToRecords() 827 CallStackId CSId = AddCallStack(CallSite.Frames); in parse()
|
| H A D | IndexedMemProfData.cpp | 205 uint64_t FrameTableOffset = writeMemProfFrames(OS, MemProfData.Frames); in writeMemProfV2() 247 assert(MemProfData.Frames.size() == FrameHistogram.size()); in writeMemProfRadixTreeBased() 250 writeMemProfFrameArray(OS, MemProfData.Frames, FrameHistogram); in writeMemProfRadixTreeBased()
|
| H A D | MemProf.cpp | 337 std::vector<Frame> Frames = Callback(CS.CSId); in toMemProfRecord() local 338 Record.CallSites.emplace_back(std::move(Frames), CS.CalleeGuids); in toMemProfRecord()
|
| H A D | SampleProfWriter.cpp | 400 auto Frames = Context.getContextFrames(); in writeCSNameTableSection() local 401 encodeULEB128(Frames.size(), OS); in writeCSNameTableSection() 402 for (auto &Callsite : Frames) { in writeCSNameTableSection()
|
| /freebsd/sys/dev/e1000/ |
| H A D | README | 165 Jumbo Frames 167 Jumbo Frames support is enabled by changing the Maximum Transmission Unit (MTU) 181 NOTE: The maximum MTU setting for Jumbo Frames is 16110. This value coincides 182 with the maximum Jumbo Frames size of 16132 bytes. 191 NOTE: Some Intel gigabit adapters that support Jumbo Frames have a frame size 217 NOTE: The following adapters limit Jumbo Frames sized packets to a maximum of 221 - The following adapters do not support Jumbo Frames: 238 - Jumbo Frames cannot be configured on an 82579-based Network device if 375 with Jumbo Frames.
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLDebugSections.cpp | 215 const DebugFrameDataSubsectionRef &Frames); 217 std::vector<YAMLFrameData> Frames; member 360 IO.mapRequired("Frames", Frames); in map() 512 for (const auto &YF : Frames) { in toCodeViewSubsection() 708 const DebugFrameDataSubsectionRef &Frames) { in fromCodeViewSubsection() argument 710 for (const auto &F : Frames) { in fromCodeViewSubsection() 729 Result->Frames.push_back(YF); in fromCodeViewSubsection() 868 DebugFrameDataSubsectionRef &Frames, const StringsAndChecksumsRef &State) { in visitFrameData() argument 870 YAMLFrameDataSubsection::fromCodeViewSubsection(State.strings(), Frames); in visitFrameData()
|
| /freebsd/crypto/openssl/doc/designs/quic-design/ |
| H A D | rx-depacketizer.md | 97 Taken from [RFC 9000 12.4 Frames and Frame Types] 132 | ???? | *[Extension Frames]* | - [^8] | ✔ | | |… 173 [RFC 9000 12.4 Frames and Frame Types]: https://datatracker.ietf.org/doc/html/rfc9000#section-12.4 205 [Extension Frames]: https://datatracker.ietf.org/doc/html/rfc9000#section-19.21
|
| H A D | tx-packetiser.md | 257 ### Frames subsection 259 Frames are taken from [RFC 9000 12.4 Frames and Frame Types]. 698 [RFC 9000 12.4 Frames and Frame Types]: https://datatracker.ietf.org/doc/html/rfc9000#section-12.4
|
| H A D | quic-fifm.md | 131 - A state, which is either `NEW` or `TX`. Frames added to the CFQ have 136 Frames in the `NEW` state participate in a priority queue (the NEW queue)
|
| /freebsd/sys/net80211/ |
| H A D | DATAPATH_TRANSMIT.md | 57 * A-MPDU TX decisions, AMSDU and Atheros Fast-Frames decisions. 221 #### Atheros Fast Frames / 802.11n A-MSDU transmit 228 queued for an Atheros Fast Frames MPDU or an A-MSDU. 255 to flush out any pending A-MSDU / Atheros Fast Frames to be transmitted; 259 These calls ensure that any queued frames in Fast Frames / A-MSDU queue
|
| H A D | README.md | 121 * A-MSDU Fast Frames
|
| /freebsd/lib/libc/net/ |
| H A D | protocols | 100 ax.25 93 AX.25 # AX.25 Frames
|