| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | flexible-array.m | 168 struct Packet { struct 175 struct Packet flexible; argument 180 …struct Packet flexible; // expected-error {{field 'flexible' with variable sized type 'struct Pack… 189 …struct Packet flexible; // expected-warning {{field 'flexible' with variable sized type 'struct Pa… 196 …struct Packet flexible; // expected-error {{field 'flexible' with variable sized type 'struct Pack… 197 …// expected-warning@-1 {{field 'flexible' with variable sized type 'struct Packet' is not visible … 203 …struct Packet flexible; // expected-error {{field 'flexible' with variable sized type 'struct Pack… 214 @property struct Packet flexible; // expected-error {{synthesized property with variable size type … 220 @property struct Packet flexible; // expected-error {{synthesized property with variable size type … 227 struct Packet _flexible; [all …]
|
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | gdbremote.py | 409 class Packet: class 592 packet = Packet(args) 604 packet = Packet(rsp) 726 packet = Packet(args) 747 packet = Packet(rsp) 938 packet = Packet(rsp) 962 packet = Packet(args) 981 packet = Packet(args) 1013 packet = Packet(args) 1038 packet = Packet(rsp) [all …]
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | GDBRemote.cpp | 85 GDBRemotePacket &Packet) { in mapping() argument 86 io.mapRequired("packet", Packet.packet); in mapping() 87 io.mapRequired("type", Packet.type); in mapping() 88 io.mapRequired("bytes", Packet.bytes_transmitted); in mapping() 89 io.mapRequired("index", Packet.packet_idx); in mapping() 90 io.mapRequired("tid", Packet.tid); in mapping() 95 GDBRemotePacket &Packet) { in validate() argument
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/ |
| H A D | RNBRemote.cpp | 329 t.push_back(Packet( in CreatePacketTable() 336 t.push_back(Packet( in CreatePacketTable() 354 t.push_back(Packet( in CreatePacketTable() 357 t.push_back(Packet( in CreatePacketTable() 361 t.push_back(Packet( in CreatePacketTable() 365 t.push_back(Packet( in CreatePacketTable() 403 t.push_back(Packet( in CreatePacketTable() 407 t.push_back(Packet( in CreatePacketTable() 447 t.push_back(Packet( in CreatePacketTable() 459 t.push_back(Packet( in CreatePacketTable() [all …]
|
| H A D | RNBRemote.h | 268 struct Packet { struct 269 typedef std::vector<Packet> collection; argument 288 Packet() in Packet() argument 292 Packet(PacketEnum in_type, HandlePacketCallback in_normal, in Packet() function 354 rnb_err_t GetPacket(std::string &packet_data, RNBRemote::Packet &packet_info, 383 Packet::collection m_packets;
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonShuffler.h | 159 HexagonPacket Packet; variable 204 unsigned size() const { return (Packet.size()); } in size() 210 iterator begin() { return (Packet.begin()); } in begin() 211 iterator end() { return (Packet.end()); } in end() 212 const_iterator cbegin() const { return (Packet.begin()); } in cbegin() 213 const_iterator cend() const { return (Packet.end()); } in cend()
|
| H A D | HexagonShuffler.cpp | 176 Packet.clear(); in reset() 185 Packet.push_back(PI); in append() 294 const HexagonPacket PacketSave = Packet; in restrictBranchOrder() 304 Packet = PacketSave; in restrictBranchOrder() 351 Packet = *ShuffledPacket; in ValidResourceUsage() 628 HexagonPacket PacketResult = Packet; in tryAuction() 670 for (ISJ = ISK = Packet.begin(), slotSkip = slotWeight = 0; in shuffle() 671 ISK != Packet.end(); ++ISK, ++slotSkip) in shuffle() 682 std::stable_sort(ISJ, Packet.end()); in shuffle()
|
| /llvm-project-15.0.7/clang/test/CodeGenObjC/ |
| H A D | ivar-layout-flexible-array.m | 16 struct Packet { struct 22 struct Packet flexible_struct; argument 28 // CHECK-NEXT: @OBJC_METH_VAR_TYPE_{{.*}} = private unnamed_addr constant {{.*}} c"{Packet=\22size\…
|
| /llvm-project-15.0.7/lldb/unittests/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationTest.cpp | 52 llvm::StringLiteral Packet; in TEST_F() member 64 SCOPED_TRACE(Test.Packet + " -> " + Test.Payload); in TEST_F() 66 ASSERT_TRUE(Write(Test.Packet)); in TEST_F()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | VLIWMachineScheduler.cpp | 74 Packet.reserve(SchedModel->getIssueWidth()); in VLIWResourceModel() 75 Packet.clear(); in VLIWResourceModel() 80 Packet.clear(); in reset() 133 for (unsigned i = 0, e = Packet.size(); i != e; ++i) in isResourceAvailable() 134 if (hasDependence(Packet[i], SU)) in isResourceAvailable() 137 for (unsigned i = 0, e = Packet.size(); i != e; ++i) in isResourceAvailable() 138 if (hasDependence(SU, Packet[i])) in isResourceAvailable() 156 Packet.size() >= SchedModel->getIssueWidth()) { in reserveResources() 179 Packet.push_back(SU); in reserveResources() 185 LLVM_DEBUG(dbgs() << Packet[i]->NodeNum << ")\t"); in reserveResources() [all …]
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ResourcePriorityQueue.cpp | 266 for (const SUnit *S : Packet) in isResourceAvailable() 286 Packet.clear(); in reserveResources() 302 Packet.push_back(SU); in reserveResources() 307 Packet.clear(); in reserveResources() 312 if (Packet.size() >= InstrItins->SchedModel.IssueWidth) { in reserveResources() 314 Packet.clear(); in reserveResources() 464 Packet.clear(); in scheduledNode()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | VLIWMachineScheduler.h | 44 SmallVector<SUnit *> Packet; variable 60 size_t getPacketInstCount() const { return Packet.size(); } in getPacketInstCount() 61 bool isInPacket(SUnit *SU) const { return is_contained(Packet, SU); } in isInPacket()
|
| H A D | ResourcePriorityQueue.h | 70 std::vector<SUnit*> Packet; variable
|
| /llvm-project-15.0.7/openmp/libomptarget/plugins/amdgpu/src/ |
| H A D | rtl.cpp | 1438 hsa_kernel_dispatch_packet_t *Packet = in runRegionLocked() local 1443 Packet->workgroup_size_x = WorkgroupSize; in runRegionLocked() 1444 Packet->workgroup_size_y = 1; in runRegionLocked() 1445 Packet->workgroup_size_z = 1; in runRegionLocked() 1446 Packet->reserved0 = 0; in runRegionLocked() 1447 Packet->grid_size_x = GridSize; in runRegionLocked() 1448 Packet->grid_size_y = 1; in runRegionLocked() 1449 Packet->grid_size_z = 1; in runRegionLocked() 1451 Packet->group_segment_size = GroupSegmentSize; in runRegionLocked() 1530 Packet->kernarg_address = KernArg; in runRegionLocked() [all …]
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | GDBRemote.h | 148 static void mapping(IO &io, lldb_private::GDBRemotePacket &Packet); in LLVM_YAML_IS_DOCUMENT_LIST_VECTOR()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86InstrSystem.td | 720 // PTWRITE Instruction - Write Data to a Processor Trace Packet
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | CodeGenerator.rst | 2287 The extended Berkeley Packet Filter (eBPF) backend 2410 Packet data access (BPF_ABS, BPF_IND)
|