Home
last modified time | relevance | path

Searched refs:status_ptr (Results 1 – 25 of 248) sorted by relevance

12345678910

/dports/net/openmpi/openmpi-4.1.1/oshmem/mca/atomic/ucx/
H A Datomic_ucx_cswap.c30 ucs_status_ptr_t status_ptr; in mca_atomic_ucx_cswap() local
53 status_ptr = ucp_atomic_op_nbx(ucx_ctx->ucp_peers[pe].ucp_conn, in mca_atomic_ucx_cswap()
57 status_ptr = ucp_atomic_fetch_nb(ucx_ctx->ucp_peers[pe].ucp_conn, in mca_atomic_ucx_cswap()
63 if (OPAL_LIKELY(!UCS_PTR_IS_ERR(status_ptr))) { in mca_atomic_ucx_cswap()
67 return opal_common_ucx_wait_request(status_ptr, ucx_ctx->ucp_worker[0], in mca_atomic_ucx_cswap()
H A Datomic_ucx_module.c63 ucs_status_ptr_t status_ptr; in mca_atomic_ucx_op() local
71 status_ptr = ucp_atomic_op_nbx(ucx_ctx->ucp_peers[pe].ucp_conn, in mca_atomic_ucx_op()
74 if (OPAL_LIKELY(!UCS_PTR_IS_ERR(status_ptr))) { in mca_atomic_ucx_op()
77 status = UCS_PTR_STATUS(status_ptr); in mca_atomic_ucx_op()
103 ucs_status_ptr_t status_ptr; in mca_atomic_ucx_fop() local
120 status_ptr = ucp_atomic_op_nbx(ucx_ctx->ucp_peers[pe].ucp_conn, op, &value, 1, in mca_atomic_ucx_fop()
122 return opal_common_ucx_wait_request(status_ptr, ucx_ctx->ucp_worker[0], in mca_atomic_ucx_fop()
125 status_ptr = ucp_atomic_fetch_nb(ucx_ctx->ucp_peers[pe].ucp_conn, in mca_atomic_ucx_fop()
129 return opal_common_ucx_wait_request(status_ptr, ucx_ctx->ucp_worker[0], in mca_atomic_ucx_fop()
/dports/games/heroes/heroes-0.21/src/
H A Dfader.c50 a_fader_status* status_ptr; /* status variable to update */ member
67 fader.status_ptr = 0; in init_fader()
89 fader.status_ptr = 0; in set_fader()
134 if (fader.status_ptr) in run_fader()
135 *fader.status_ptr = F_STARTED; in run_fader()
211 if (fader.status_ptr) in cancel_fader()
212 *fader.status_ptr = F_FINISHED; in cancel_fader()
218 fader.status_ptr = ptr; in fader_status_flagback()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/scsi/arm/
H A Dacornscsi.h263 host->status[(_q)][host->status_ptr[(_q)]].when = jiffies; \
264 host->status[(_q)][host->status_ptr[(_q)]].ssr = (_ssr); \
265 host->status[(_q)][host->status_ptr[(_q)]].ph = (_ph); \
266 host->status[(_q)][host->status_ptr[(_q)]].irq = (_irq); \
267 host->status_ptr[(_q)] = (host->status_ptr[(_q)] + 1) & (STATUS_BUFFER_SIZE - 1); \
346 unsigned char status_ptr[9]; member
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/scsi/arm/
H A Dacornscsi.h263 host->status[(_q)][host->status_ptr[(_q)]].when = jiffies; \
264 host->status[(_q)][host->status_ptr[(_q)]].ssr = (_ssr); \
265 host->status[(_q)][host->status_ptr[(_q)]].ph = (_ph); \
266 host->status[(_q)][host->status_ptr[(_q)]].irq = (_irq); \
267 host->status_ptr[(_q)] = (host->status_ptr[(_q)] + 1) & (STATUS_BUFFER_SIZE - 1); \
346 unsigned char status_ptr[9]; member
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/scsi/arm/
H A Dacornscsi.h263 host->status[(_q)][host->status_ptr[(_q)]].when = jiffies; \
264 host->status[(_q)][host->status_ptr[(_q)]].ssr = (_ssr); \
265 host->status[(_q)][host->status_ptr[(_q)]].ph = (_ph); \
266 host->status[(_q)][host->status_ptr[(_q)]].irq = (_irq); \
267 host->status_ptr[(_q)] = (host->status_ptr[(_q)] + 1) & (STATUS_BUFFER_SIZE - 1); \
346 unsigned char status_ptr[9]; member
/dports/net/mpich2/mpich2-1.5/src/mpi/pt2pt/
H A Dwaitall.c41 MPI_Status * status_ptr; in MPIR_Waitall_impl() local
89status_ptr = (array_of_statuses != MPI_STATUSES_IGNORE) ? &array_of_statuses[i] : MPI_STATUS_IGNOR… in MPIR_Waitall_impl()
90 MPIR_Status_set_empty(status_ptr); in MPIR_Waitall_impl()
169 status_ptr = (ignoring_statuses) ? MPI_STATUS_IGNORE : &array_of_statuses[i]; in MPIR_Waitall_impl()
170 … rc = MPIR_Request_complete(&array_of_requests[i], request_ptrs[i], status_ptr, &active_flag); in MPIR_Waitall_impl()
175 status_ptr->MPI_ERROR = MPI_SUCCESS; in MPIR_Waitall_impl()
184 status_ptr->MPI_ERROR = rc; in MPIR_Waitall_impl()
H A Dtestall.c82 MPI_Status * status_ptr; in MPI_Testall() local
185status_ptr = (array_of_statuses != MPI_STATUSES_IGNORE) ? &array_of_statuses[i] : MPI_STATUS_IGNOR… in MPI_Testall()
186 rc = MPIR_Request_complete(&array_of_requests[i], request_ptrs[i], status_ptr, &active_flag); in MPI_Testall()
187 if (mpi_errno == MPI_ERR_IN_STATUS && status_ptr != MPI_STATUS_IGNORE) in MPI_Testall()
191 status_ptr->MPI_ERROR = rc; in MPI_Testall()
195 status_ptr->MPI_ERROR = MPI_SUCCESS; in MPI_Testall()
H A Dtestsome.c72 MPI_Status * status_ptr; in MPI_Testsome() local
171status_ptr = (array_of_statuses != MPI_STATUSES_IGNORE) ? &array_of_statuses[n_active] : MPI_STATU… in MPI_Testsome()
173 status_ptr, &active_flag); in MPI_Testsome()
186 if (status_ptr != MPI_STATUS_IGNORE) in MPI_Testsome()
188 status_ptr->MPI_ERROR = rc; in MPI_Testsome()
H A Dwaitsome.c89 MPI_Status * status_ptr; in MPI_Waitsome() local
196status_ptr = (array_of_statuses != MPI_STATUSES_IGNORE) ? &array_of_statuses[n_active] : MPI_STATU… in MPI_Waitsome()
197 rc = MPIR_Request_complete(&array_of_requests[i], request_ptrs[i], status_ptr, &active_flag); in MPI_Waitsome()
210 if (status_ptr != MPI_STATUS_IGNORE) in MPI_Waitsome()
212 status_ptr->MPI_ERROR = rc; in MPI_Waitsome()
/dports/astro/p5-Starlink-AST/Starlink-AST-1.05/ast/
H A Derror.c775 return sb->status_ptr; in astGetStatusPtr_()
947 int *astWatch_( int *status_ptr ) { in astWatch_() argument
1013 result = sb->status_ptr; in astWatch_()
1014 sb->status_ptr = status_ptr ? status_ptr : &(sb->internal_status); in astWatch_()
1017 starlink_ast_status_ptr = status_ptr ? status_ptr : &internal_status; in astWatch_()
/dports/net/mpich/mpich-3.4.3/modules/ucx/src/ucp/rma/
H A Drma_send.c184 ucs_status_ptr_t status_ptr; in ucp_put_nbi() local
186 status_ptr = ucp_put_nbx(ep, buffer, length, remote_addr, rkey, in ucp_put_nbi()
188 if (UCS_PTR_IS_PTR(status_ptr)) { in ucp_put_nbi()
189 ucp_request_free(status_ptr); in ucp_put_nbi()
194 return UCS_PTR_STATUS(status_ptr); in ucp_put_nbi()
260 ucs_status_ptr_t status_ptr; in ucp_get_nbi() local
262 status_ptr = ucp_get_nbx(ep, buffer, length, remote_addr, rkey, in ucp_get_nbi()
264 if (UCS_PTR_IS_PTR(status_ptr)) { in ucp_get_nbi()
265 ucp_request_free(status_ptr); in ucp_get_nbi()
270 return UCS_PTR_STATUS(status_ptr); in ucp_get_nbi()
/dports/net/mpich/mpich-3.4.3/modules/ucx/src/tools/info/
H A Dproto_info.c103 ucs_status_ptr_t status_ptr; in print_ucp_info() local
195 status_ptr = ucp_disconnect_nb(ep); in print_ucp_info()
196 if (UCS_PTR_IS_PTR(status_ptr)) { in print_ucp_info()
199 status = ucp_request_test(status_ptr, NULL); in print_ucp_info()
201 ucp_request_release(status_ptr); in print_ucp_info()
/dports/net/mpich/mpich-3.4.3/src/mpi/request/
H A Dtestsome.c121 MPI_Status *status_ptr; in MPI_Testsome() local
215 status_ptr = (array_of_statuses == MPI_STATUSES_IGNORE) ? in MPI_Testsome()
217 rc = MPIR_Request_completion_processing(request_ptrs[idx], status_ptr); in MPI_Testsome()
226 if (status_ptr != MPI_STATUS_IGNORE) { in MPI_Testsome()
227 status_ptr->MPI_ERROR = rc; in MPI_Testsome()
H A Dwaitsome.c163 MPI_Status *status_ptr; in MPI_Waitsome() local
264 status_ptr = in MPI_Waitsome()
266 rc = MPIR_Request_completion_processing(request_ptrs[idx], status_ptr); in MPI_Waitsome()
275 if (status_ptr != MPI_STATUS_IGNORE) { in MPI_Waitsome()
276 status_ptr->MPI_ERROR = rc; in MPI_Waitsome()
/dports/net/openmpi/openmpi-4.1.1/oshmem/mca/spml/ucx/
H A Dspml_ucx.c851 ucs_status_ptr_t status_ptr; in mca_spml_ucx_get_nb() local
857 if (UCS_PTR_IS_PTR(status_ptr)) { in mca_spml_ucx_get_nb()
858 ucp_request_free(status_ptr); in mca_spml_ucx_get_nb()
878 ucs_status_ptr_t status_ptr; in mca_spml_ucx_get_nb_wprogress() local
885 if (UCS_PTR_IS_PTR(status_ptr)) { in mca_spml_ucx_get_nb_wprogress()
886 ucp_request_free(status_ptr); in mca_spml_ucx_get_nb_wprogress()
948 ucs_status_ptr_t status_ptr; in mca_spml_ucx_put_nb() local
955 if (UCS_PTR_IS_PTR(status_ptr)) { in mca_spml_ucx_put_nb()
956 ucp_request_free(status_ptr); in mca_spml_ucx_put_nb()
980 ucs_status_ptr_t status_ptr; in mca_spml_ucx_put_nb_wprogress() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/lldb/include/lldb/Host/
H A DHost.h207 const FileSpec &working_dir, int *status_ptr,
223 const FileSpec &working_dir, int *status_ptr,
237 int *status_ptr, int *signo_ptr,
253 const FileSpec &working_dir, int *status_ptr,
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/include/lldb/Host/
H A DHost.h207 const FileSpec &working_dir, int *status_ptr,
223 const FileSpec &working_dir, int *status_ptr,
237 int *status_ptr, int *signo_ptr,
253 const FileSpec &working_dir, int *status_ptr,
/dports/databases/percona57-server/percona-server-5.7.36-39/storage/rocksdb/rocksdb/util/
H A Dfile_checksum_helper.cc117 Status* status_ptr; in GetFileChecksumsFromManifest() member
119 if (status_ptr->ok()) { in GetFileChecksumsFromManifest()
120 *status_ptr = st; in GetFileChecksumsFromManifest()
124 reporter.status_ptr = &s; in GetFileChecksumsFromManifest()
/dports/databases/percona57-client/percona-server-5.7.36-39/storage/rocksdb/rocksdb/util/
H A Dfile_checksum_helper.cc117 Status* status_ptr; in GetFileChecksumsFromManifest() member
119 if (status_ptr->ok()) { in GetFileChecksumsFromManifest()
120 *status_ptr = st; in GetFileChecksumsFromManifest()
124 reporter.status_ptr = &s; in GetFileChecksumsFromManifest()
/dports/devel/llvm12/llvm-project-12.0.1.src/lldb/include/lldb/Host/
H A DHost.h207 const FileSpec &working_dir, int *status_ptr,
223 const FileSpec &working_dir, int *status_ptr,
237 int *status_ptr, int *signo_ptr,
253 const FileSpec &working_dir, int *status_ptr,
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/rocksdb/rocksdb/util/
H A Dfile_checksum_helper.cc117 Status* status_ptr; in GetFileChecksumsFromManifest() member
119 if (status_ptr->ok()) { in GetFileChecksumsFromManifest()
120 *status_ptr = st; in GetFileChecksumsFromManifest()
124 reporter.status_ptr = &s; in GetFileChecksumsFromManifest()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/lldb/include/lldb/Host/
H A DHost.h207 const FileSpec &working_dir, int *status_ptr,
223 const FileSpec &working_dir, int *status_ptr,
237 int *status_ptr, int *signo_ptr,
253 const FileSpec &working_dir, int *status_ptr,
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/lldb/include/lldb/Host/
H A DHost.h207 const FileSpec &working_dir, int *status_ptr,
223 const FileSpec &working_dir, int *status_ptr,
237 int *status_ptr, int *signo_ptr,
253 const FileSpec &working_dir, int *status_ptr,
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/lldb/include/lldb/Host/
H A DHost.h207 const FileSpec &working_dir, int *status_ptr,
223 const FileSpec &working_dir, int *status_ptr,
237 int *status_ptr, int *signo_ptr,
253 const FileSpec &working_dir, int *status_ptr,

12345678910