Home
last modified time | relevance | path

Searched refs:req (Results 1 – 25 of 46) sorted by relevance

12

/llvm-project-15.0.7/clang/test/Analysis/
H A Dmpichecker.cpp90 MPI_Request req; in doubleNonblocking2() local
114 MPI_Request req; in doubleNonblocking4() local
169 &req[0]); in missingNonBlockingWaitall()
171 &req[1]); in missingNonBlockingWaitall()
173 &req[3]); in missingNonBlockingWaitall()
185 &req[0]); in missingNonBlockingWaitall2()
187 &req[3]); in missingNonBlockingWaitall2()
199 &req[0]); in missingNonBlockingWaitall3()
201 &req[2]); in missingNonBlockingWaitall3()
288 MPI_Request req; in multiRequestUsage() local
[all …]
H A DMemRegion.cpp24 typedef struct { MPI_Request req; } ReqStruct; in testGetDescriptiveName3() member
26 MPI_Request *r = &rs.req; in testGetDescriptiveName3()
33 typedef struct { MPI_Request req[2][2]; } ReqStruct; in testGetDescriptiveName4() member
35 MPI_Request *r = &rs.req[0][1]; in testGetDescriptiveName4()
42 typedef struct { MPI_Request req; } ReqStructInner; in testGetDescriptiveName5() member
43 typedef struct { ReqStructInner req; } ReqStruct; in testGetDescriptiveName5() member
45 MPI_Request *r = &rs.req.req; in testGetDescriptiveName5()
/llvm-project-15.0.7/llvm/test/MC/AArch64/
H A Ddot-req.s4 fred .req x5
6 fred .req x5
9 fred .req w6
12 bob .req fred
13 ada .req w1
22 bob .req b6
23 hanah .req h5
24 sam .req s4
25 dora .req d3
41 peter .req x6
[all …]
H A Ddot-req-diagnostics.s4 fred .req x5
5 fred .req x6
10 ada .req v2.8b
15 bob .req lisa
20 lisa .req x1, 23
H A Ddot-req-case-insensitive.s3 OBJECT .req x2
9 OBJECT .req w5
/llvm-project-15.0.7/llvm/test/MC/AArch64/SVE/
H A Ddot-req-diagnostics.s5 pbarb .req p1.b
7 pbarh .req p1.h
9 pbars .req p1.s
11 pbard .req p1.d
14 zbarb .req z1.b
16 zbarh .req z1.h
18 zbars .req z1.s
20 zbard .req z1.d
H A Ddot-req.s5 pbar .req p1
8 zbar .req z1
/llvm-project-15.0.7/llvm/test/MC/AsmParser/
H A Dmacro-required-argument-err.s19 # CHECK-NEXT:.macro pointless_default parameter:req=default
21 .macro pointless_default parameter:req=default argument
27 .macro missing_required parameter:req argument
34 .macro missing_second_required first=0 second:req
44 .macro second_third_required first=0 second:req third:req
H A Dmacro-vararg-err.s9 # CHECK-NEXT:.macro one a:req:vararg
11 .macro one a:req:vararg argument
14 # CHECK-NEXT:.macro pointless_default a:req=default
16 .macro pointless_default a:req=default argument
H A Dmacro-required-argument.s3 .macro required parameter:req argument
10 .macro required_with_default parameter:req=0 argument
/llvm-project-15.0.7/llvm/test/MC/ARM/
H A Ddot-req.s4 @ The line is duplicated on purpose, it is legal to redefine a req with
6 fred .req r5
7 fred .req r5
10 fred .req r6
H A Ddot-req-case-insensitive.s5 OBJECT .req r2
11 OBJECT .req r5
H A Ddirective_parsing.s39 fred .req r5
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_ioctl.inc17 unsigned req;
479 return left.req < right.req;
489 if (ioctl_table[i].req >= ioctl_table[i + 1].req) {
491 ioctl_table[i].req, ioctl_table[i + 1].req, ioctl_table[i].name,
516 return req;
524 if (ioctl_table[mid].req < req)
529 if (left == right && ioctl_table[left].req == req)
537 desc->req = req;
539 desc->size = IOC_SIZE(req);
542 unsigned dir = IOC_DIR(req);
[all …]
H A Dsanitizer_interceptors_ioctl_netbsd.inc17 unsigned req;
1415 return left.req < right.req;
1425 if (ioctl_table[i].req >= ioctl_table[i + 1].req) {
1427 ioctl_table[i].req, ioctl_table[i + 1].req, ioctl_table[i].name,
1444 if (ioctl_table[mid].req < req)
1449 if (left == right && ioctl_table[left].req == req)
1457 desc->req = req;
1459 desc->size = IOC_SIZE(req);
1463 unsigned dir = IOC_DIR(req);
1484 if (IOC_TYPE(req) == 0)
[all …]
/llvm-project-15.0.7/mlir/utils/mbr/
H A Dmlir-mbr.in82 req = request.Request(args.url, request_data)
84 resp = request.urlopen(req)
/llvm-project-15.0.7/lldb/scripts/
H A Dmacos-setup-codesign.sh26 [ req ]
42 openssl req -new -newkey rsa:2048 -x509 -days 3650 -nodes -config "$TMPDIR/$CERT.tmpl" -extensions …
/llvm-project-15.0.7/libcxx/docs/Status/
H A DRangesPaper.csv60 `[alg.req] <https://wg21.link/alg.req>`_: pt. 1,"| `indirectly_movable <https://llvm.org/D102639>`_
64 `[alg.req] <https://wg21.link/alg.req>`_: pt. 2,`indirectly_swappable <https://llvm.org/D105304>`_,…
66 `[alg.req] <https://wg21.link/alg.req>`_: pt. 3,`indirectly_comparable <https://llvm.org/D116268>`_…
67 `[alg.req] <https://wg21.link/alg.req>`_: pt. 4,"| `permutable <https://llvm.org/D119222>`_
/llvm-project-15.0.7/clang/test/CodeGen/
H A DPR15826.c9 int (*oid_handler)(struct sysctl_req *req);
/llvm-project-15.0.7/lldb/source/Plugins/Process/NetBSD/
H A DNativeRegisterContextNetBSD.h36 Status DoRegisterSet(int req, void *buf);
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.cpp146 static void PtraceDisplayBytes(int &req, void *data, size_t data_size) { in PtraceDisplayBytes() argument
152 switch (req) { in PtraceDisplayBytes()
1283 int req = SupportHardwareSingleStepping() ? PTRACE_SINGLESTEP : PTRACE_CONT; in Syscall() local
1285 PtraceWrapper(req, thread.GetID(), nullptr, nullptr).ToError()) in Syscall()
1935 Status NativeProcessLinux::PtraceWrapper(int req, lldb::pid_t pid, void *addr, in PtraceWrapper() argument
1943 PtraceDisplayBytes(req, data, data_size); in PtraceWrapper()
1946 if (req == PTRACE_GETREGSET || req == PTRACE_SETREGSET) in PtraceWrapper()
1947 ret = ptrace(static_cast<__ptrace_request>(req), static_cast<::pid_t>(pid), in PtraceWrapper()
1950 ret = ptrace(static_cast<__ptrace_request>(req), static_cast<::pid_t>(pid), in PtraceWrapper()
1959 LLDB_LOG(log, "ptrace({0}, {1}, {2}, {3}, {4})={5:x}", req, pid, addr, data, in PtraceWrapper()
[all …]
/llvm-project-15.0.7/clang/test/Rewriter/
H A Drewrite-modern-protocol.mm21 - (id) req; method
/llvm-project-15.0.7/llvm/test/tools/llvm-ml/
H A Dmacro.asm11 SubstitutionMacro macro a1:req, a2:=<7>
134 OptionalParameterMacro MACRO a1:req, a2
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_ioctl_test.cpp74 EXPECT_EQ(EVIOCGKEY(0), desc->req); in TEST()
/llvm-project-15.0.7/clang/test/CXX/over/over.match/over.match.funcs/over.match.oper/
H A Dp3-2a.cpp102 bool req = x2 == x1; // expected-error {{selected deleted operator '=='}} variable

12