Home | History | Annotate | Download | only in Analysis

Lines Matching defs:req

24   typedef struct { MPI_Request req; } ReqStruct;
26 MPI_Request *r = &rs.req;
27 MPI_Wait(r, MPI_STATUS_IGNORE); // expected-warning{{Request 'rs.req' has no matching nonblocking call.}}
33 typedef struct { MPI_Request req[2][2]; } ReqStruct;
35 MPI_Request *r = &rs.req[0][1];
36 MPI_Wait(r, MPI_STATUS_IGNORE); // expected-warning{{Request 'rs.req[0][1]' has no matching nonblocking call.}}
42 typedef struct { MPI_Request req; } ReqStructInner;
43 typedef struct { ReqStructInner req; } ReqStruct;
45 MPI_Request *r = &rs.req.req;
46 MPI_Wait(r, MPI_STATUS_IGNORE); // expected-warning{{Request 'rs.req.req' has no matching nonblocking call.}}