Home
last modified time | relevance | path

Searched refs:payload (Results 1 – 25 of 82) sorted by relevance

1234

/llvm-project-15.0.7/lldb/test/API/macosx/lc-note/firmware-corefile/
H A Dcreate-empty-corefile.cpp122 payload.push_back(ident[i]); in add_lc_note_kern_ver_str_load_command()
153 add_uint32(payload, 2); // version in add_lc_note_main_bin_spec_load_command()
155 add_uint64(payload, address); // load address in add_lc_note_main_bin_spec_load_command()
156 add_uint64(payload, slide); // slide in add_lc_note_main_bin_spec_load_command()
160 payload.push_back(uuid[i]); in add_lc_note_main_bin_spec_load_command()
162 add_uint32(payload, 0); // platform unspecified in add_lc_note_main_bin_spec_load_command()
174 seg.fileoff = payload.size() + payload_file_offset; in add_lc_segment()
314 std::vector<uint8_t> payload; in main() local
339 add_lc_segment(load_commands, payload, 0); in main()
351 payload.clear(); in main()
[all …]
/llvm-project-15.0.7/libcxx/test/libcxx/fuzzing/
H A Dfuzz.h25 std::size_t payload; member
27 ByteWithPayload(std::uint8_t k) : key(k), payload(0) { } in ByteWithPayload()
28 ByteWithPayload(std::uint8_t k, std::size_t p) : key(k), payload(p) { } in ByteWithPayload()
31 return x.key == y.key && x.payload == y.payload;
45 { return x.payload < y.payload; } in operator()
50 return x.key == y.key ? x.payload < y.payload : x.key < y.key; in operator()
56 std::swap(lhs.payload, rhs.payload); in swap()
76 xPayloads[first1->key] += first1->payload; in fast_is_permutation()
79 yPayloads[first2->key] += first2->payload; in fast_is_permutation()
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dcallback_annotated.c4 __attribute__((callback(1, 2))) void *broker0(void *(*callee)(void *), void *payload) { in broker0() argument
5 return callee(payload); in broker0()
9 __attribute__((callback(callee, payload))) void *broker1(void *payload, void *(*callee)(void *)) { in broker1() argument
10 return broker0(callee, payload); in broker1()
29 static void *VoidPtr2VoidPtr(void *payload) { in VoidPtr2VoidPtr() argument
30 return payload; in VoidPtr2VoidPtr()
H A Dcallback_pthread_create.c26 static void *callee0(void *payload) { in callee0() argument
27 return payload; in callee0()
30 static void *callee1(void *payload) { in callee1() argument
31 return payload; in callee1()
/llvm-project-15.0.7/lldb/test/API/macosx/lc-note/kern-ver-str/
H A Dcreate-empty-corefile.cpp79 std::vector<uint8_t> &payload, in add_lc_note_kern_ver_str_load_command() argument
97 uint64_t current_payload_offset = payload.size() + payload_file_offset; in add_lc_note_kern_ver_str_load_command()
104 add_uint32 (payload, 1); // kerneL_version_string.version in add_lc_note_kern_ver_str_load_command()
107 payload.push_back (ident[i]); in add_lc_note_kern_ver_str_load_command()
113 std::vector<uint8_t> &payload, in add_lc_segment() argument
123 seg.fileoff = payload.size() + payload_file_offset; in add_lc_segment()
263 std::vector<uint8_t> payload; in main() local
269 add_lc_segment (load_commands, payload, 0); in main()
280 payload.clear(); in main()
284 add_lc_segment (load_commands, payload, header_and_load_cmd_room); in main()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.cpp41 llvm::StringRef payload, std::chrono::seconds interrupt_timeout, in SendContinuePacketAndWaitForResponse() argument
48 m_continue_packet = std::string(payload); in SendContinuePacketAndWaitForResponse()
183 llvm::StringRef payload, StringExtractorGDBRemote &response, in SendPacketAndWaitForResponse() argument
191 __FUNCTION__, int(payload.size()), payload.data()); in SendPacketAndWaitForResponse()
195 return SendPacketAndWaitForResponseNoLock(payload, response); in SendPacketAndWaitForResponse()
200 llvm::StringRef payload, StringExtractorGDBRemote &response, in SendPacketAndReceiveResponseWithOutputSupport() argument
209 __FUNCTION__, int(payload.size()), payload.data()); in SendPacketAndReceiveResponseWithOutputSupport()
213 PacketResult packet_result = SendPacketNoLock(payload); in SendPacketAndReceiveResponseWithOutputSupport()
223 llvm::StringRef payload, StringExtractorGDBRemote &response) { in SendPacketAndWaitForResponseNoLock() argument
224 PacketResult packet_result = SendPacketNoLock(payload); in SendPacketAndWaitForResponseNoLock()
[all …]
H A DGDBRemoteClientBase.h42 llvm::StringRef payload, std::chrono::seconds interrupt_timeout,
54 llvm::StringRef payload, StringExtractorGDBRemote &response,
58 llvm::StringRef payload, StringExtractorGDBRemote &response,
92 SendPacketAndWaitForResponseNoLock(llvm::StringRef payload,
H A DGDBRemoteCommunication.h133 char CalculcateChecksum(llvm::StringRef payload);
185 PacketResult SendPacketNoLock(llvm::StringRef payload);
188 llvm::StringRef payload);
189 PacketResult SendRawPacketNoLock(llvm::StringRef payload,
H A DGDBRemoteCommunication.cpp86 char GDBRemoteCommunication::CalculcateChecksum(llvm::StringRef payload) { in CalculcateChecksum() argument
89 for (char c : payload) in CalculcateChecksum()
116 GDBRemoteCommunication::SendPacketNoLock(llvm::StringRef payload) { in SendPacketNoLock() argument
119 packet.Write(payload.data(), payload.size()); in SendPacketNoLock()
121 packet.PutHex8(CalculcateChecksum(payload)); in SendPacketNoLock()
130 llvm::StringRef payload) { in SendNotificationPacketNoLock() argument
140 packet.Write(payload.data(), payload.size()); in SendNotificationPacketNoLock()
142 packet.PutHex8(CalculcateChecksum(payload)); in SendNotificationPacketNoLock()
146 queue.push_back(payload.str()); in SendNotificationPacketNoLock()
/llvm-project-15.0.7/lldb/test/API/commands/expression/issue_11588/
H A Dmain.cpp28 StgClosure* payload[1]; member in StgClosure
33 payload[0] = new StgClosure(false); in StgClosure()
35 payload[0] = NULL; in StgClosure()
39 if (payload[0]) in ~StgClosure()
40 delete payload[0]; in ~StgClosure()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_addrhashmap_test.cpp17 int payload; member
19 return payload == rhs.payload; in operator ==()
53 h->payload = val.payload; in TEST()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.h40 uint64_t *payload = nullptr) override {
46 uint64_t *payload = nullptr) override {
247 ClassDescriptorV2Tagged(ConstString class_name, uint64_t payload) { in ClassDescriptorV2Tagged() argument
254 m_payload = payload; in ClassDescriptorV2Tagged()
307 uint64_t *payload = nullptr) override {
312 if (payload)
313 *payload = GetPayload();
319 uint64_t *payload = nullptr) override {
324 if (payload)
325 *payload = GetPayload();
/llvm-project-15.0.7/mlir/test/Dialect/Transform/
H A Dtransform-state-extension.mlir3 // expected-note @below {{associated payload op}}
20 // expected-note @below {{associated payload op}}
34 // expected-note @below {{associated payload op}}
41 // expected-note @below {{associated payload op}}
H A Dexpensive-checks.mlir23 …// expected-error @below {{invalidated the handle to payload operations nested in the payload oper…
57 …a handle passed as operand #0 and consumed by this operation points to a payload operation more th…
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Transform/IR/
H A DTransformDialect.td37 transformed as payload IR, and to the IR guiding the transformation as
48 and applied to the payload IR by a pass. Transformations expressed by the
63 set of loops found in the payload IR that satisfy the condition, and `%1`
107 transformation on the payload IR.
126 mapping between transform IR values and payload IR operations.
165 and applies to some payload IR scope, identified by the payload IR op that
196 The execution model of the transform dialect expects that a payload IR
210 operations associated with it are not nested in payload IR operations
223 payload IR.
275 and operations in the payload IR, or the function that applies the
[all …]
H A DTransformOps.td31 sequence of transform operations to be applied to the same payload IR. The
45 transformation sequences are attempted, that is, an operation in the payload
52 remaining alternatives. Note that the payload IR outside of the given scope
105 let summary = "Executes the body for each payload op";
110 mapped to exactly one payload op.
220 let summary = "Lists payload ops multiple times in the new handle";
222 Produces a new handle associated with a list of payload IR ops that is
223 computed by repeating the list of payload IR ops associated with the
229 This transformation is useful to "align" the sizes of payload IR lists
238 that the associated payload IR ops are destroyed, so having the same op
[all …]
/llvm-project-15.0.7/mlir/test/lib/Dialect/Transform/
H A DTestTransformDialectExtension.cpp132 ArrayRef<Operation *> payload = state.getPayloadOps(getOperand()); in apply() local
133 assert(payload.size() == 1 && "expected a single target op"); in apply()
134 auto value = reinterpret_cast<intptr_t>(payload[0]); in apply()
147 ArrayRef<Operation *> payload = state.getPayloadOps(getOperand()); in apply() local
148 for (Operation *op : payload) in apply()
172 for (Operation *payload : state.getPayloadOps(getOperand())) { in apply()
173 diag.attachNote(payload->getLoc()) << "associated payload op"; in apply()
174 assert(state.getHandleForPayloadOp(payload) == getOperand() && in apply()
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dnote-sections.ll3 %struct.note = type { %struct.Elf32_Nhdr, [7 x i8], %struct.payload }
5 %struct.payload = type { i16 }
7 …ruct.Elf32_Nhdr { i32 7, i32 2, i32 17 }, [7 x i8] c"foobar\00", %struct.payload { i16 23 } }, sec…
/llvm-project-15.0.7/libc/src/string/memory_utils/
H A Dsized_op.h82 alignas(alignof(type)) ubyte payload[Size];
104 const auto payload = nativeLoad(src); in move() local
107 nativeStore(payload, dst); in move()
169 copy(DstAddr<alignof(type)>(output.payload), src); in load()
174 copy(dst, SrcAddr<alignof(type)>(value.payload)); in store()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
H A Dlldbgdbserverutils.py218 payload = "A"
225 payload += ','
231 payload += "{},{},{}".format(len(hex_arg), arg_index, hex_arg)
237 return gdbremote_packet_encode_string(payload)
534 payload = self._first_query
536 payload = self._next_query
540 payload += "%x" % self._iteration
550 return gdbremote_packet_encode_string(payload)
937 payload = frame[1:-3]
939 if checksum != Server._checksum(payload):
[all …]
/llvm-project-15.0.7/mlir/test/Conversion/SCFToOpenMP/
H A Dscf-to-openmp.mlir10 // CHECK: "test.payload"(%[[LVAR1]], %[[LVAR2]]) : (index, index) -> ()
11 "test.payload"(%i, %j) : (index, index) -> ()
31 // CHECK: "test.payload"(%[[LVAR_OUT1]], %[[LVAR_IN1]]) : (index, index) -> ()
32 "test.payload"(%i, %j) : (index, index) -> ()
/llvm-project-15.0.7/mlir/test/Conversion/OpenMPToLLVM/
H A Dconvert-to-llvmir.mlir29 // CHECK-NEXT: "test.payload"(%[[CAST_ARG1]], %[[CAST_ARG2]]) : (index, index) -> ()
30 "test.payload"(%arg1, %arg2) : (index, index) -> ()
79 // CHECK: "test.payload"(%[[CAST_ARG6]], %[[CAST_ARG7]]) : (index, index) -> ()
80 "test.payload"(%arg6, %arg7) : (index, index) -> ()
/llvm-project-15.0.7/llvm/test/tools/llvm-dwarfdump/X86/
H A Ddebug_rnglists_invalid.s54 .quad 0x10, 0x20 # Encoding payload
125 .quad 0x10, 0x20 # Encoding payload
137 .quad 0x10, 0x20 # Encoding payload
148 .quad 0x30, 0x40 # Encoding payload
/llvm-project-15.0.7/lldb/unittests/Process/gdb-remote/
H A DGDBRemoteTestUtils.h62 PacketResult SendPacket(llvm::StringRef payload) { in SendPacket() argument
63 return GDBRemoteCommunicationServer::SendPacketNoLock(payload); in SendPacket()
/llvm-project-15.0.7/.github/workflows/
H A Dllvm-bugs.yml36 const payload = {
52 'h:X-Mailgun-Variables': JSON.stringify(payload)

1234