Home
last modified time | relevance | path

Searched refs:completed (Results 1 – 25 of 178) sorted by relevance

12345678

/freebsd/sys/dev/ida/
H A Dida_pci.c76 bus_addr_t completed; in ida_v3_done() local
78 completed = ida_inl(ida, R_DONE_FIFO); in ida_v3_done()
79 if (completed == -1) { in ida_v3_done()
82 return (completed); in ida_v3_done()
116 bus_addr_t completed; in ida_v4_done() local
118 completed = ida_inl(ida, R_42XX_REPLY); in ida_v4_done()
119 if (completed == -1) in ida_v4_done()
122 return (completed); in ida_v4_done()
H A Dida.c562 bus_addr_t completed; in ida_wait() local
577 while ((completed = ida->cmd.done(ida)) == 0) { in ida_wait()
585 qcb_done = idahwqcbptov(ida, completed & ~3); in ida_wait()
597 bus_addr_t completed; in ida_intr() local
607 while ((completed = ida->cmd.done(ida)) != 0) { in ida_intr()
608 qcb = idahwqcbptov(ida, completed & ~3); in ida_intr()
612 "ignoring completion %jx\n", (intmax_t)completed); in ida_intr()
616 if ((completed & 3) && (qcb->hwqcb->req.error == 0)) in ida_intr()
/freebsd/sys/powerpc/powernv/
H A Dopal_async.c50 volatile uint64_t completed; member
81 completions[token].completed = false; in opal_alloc_async_token()
106 if (completions[token].completed) { in opal_wait_completion()
125 completions[token].completed = true; in opal_handle_async_completion()
/freebsd/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dtdint.c153 bit32 completed = 0; in tiCOMDelayedInterruptHandler() local
166 completed = saDelayedInterruptHandler(agRoot, channelNum, count); in tiCOMDelayedInterruptHandler()
168 if(completed == 0) in tiCOMDelayedInterruptHandler()
176 return(completed); in tiCOMDelayedInterruptHandler()
/freebsd/contrib/ofed/librdmacm/examples/
H A Dcmtime.c106 static volatile int completed[STEP_CNT]; variable
196 completed[STEP_RESOLVE_ADDR]++; in addr_handler()
202 completed[STEP_RESOLVE_ROUTE]++; in route_handler()
208 completed[STEP_CONNECT]++; in conn_handler()
214 completed[STEP_DISCONNECT]++; in disc_handler()
542 while (started[STEP_RESOLVE_ADDR] != completed[STEP_RESOLVE_ADDR]) sched_yield(); in run_client()
560 while (started[STEP_RESOLVE_ROUTE] != completed[STEP_RESOLVE_ROUTE]) sched_yield(); in run_client()
593 while (started[STEP_CONNECT] != completed[STEP_CONNECT]) sched_yield(); in run_client()
605 while (started[STEP_DISCONNECT] != completed[STEP_DISCONNECT]) sched_yield(); in run_client()
/freebsd/sys/contrib/zstd/programs/
H A Dbenchfn.c216 int completed = 0; in BMK_benchTimedFn() local
219 while (!completed) { in BMK_benchTimedFn()
244 assert(completed == 0); in BMK_benchTimedFn()
250 completed = 1; in BMK_benchTimedFn()
/freebsd/sys/dev/sfxge/common/
H A Defx_tx.c79 __in unsigned int completed,
106 __in unsigned int completed,
405 __in unsigned int completed, in efx_tx_qpost() argument
414 if ((rc = etxop->etxo_qpost(etp, eb, ndescs, completed, addedp)) != 0) in efx_tx_qpost()
567 __in unsigned int completed, in efx_tx_qpio_post() argument
577 if ((rc = etxop->etxo_qpio_post(etp, pkt_length, completed, in efx_tx_qpio_post()
595 __in unsigned int completed, in efx_tx_qdesc_post() argument
603 return (etxop->etxo_qdesc_post(etp, ed, ndescs, completed, addedp)); in efx_tx_qdesc_post()
775 __in unsigned int completed, in siena_tx_qpost() argument
781 if (added - completed + ndescs > EFX_TXQ_LIMIT(etp->et_mask + 1)) in siena_tx_qpost()
[all …]
H A Def10_tx.c384 __in unsigned int completed, in ef10_tx_qpio_post() argument
393 if (added - completed + 1 > EFX_TXQ_LIMIT(etp->et_mask + 1)) { in ef10_tx_qpio_post()
437 __in unsigned int completed, in ef10_tx_qpost() argument
444 if (added - completed + ndescs > EFX_TXQ_LIMIT(etp->et_mask + 1)) { in ef10_tx_qpost()
560 __in unsigned int completed, in ef10_tx_qdesc_post() argument
566 if (added - completed + ndescs > EFX_TXQ_LIMIT(etp->et_mask + 1)) in ef10_tx_qdesc_post()
/freebsd/sys/dev/sfxge/
H A Dsfxge_rx.c243 rxfill = rxq->added - rxq->completed; in sfxge_rx_qfill()
282 rxq->completed, rxq->added); in sfxge_rx_qfill()
293 rxq->completed, rxq->added); in sfxge_rx_qfill()
307 if(rxq->pushed == rxq->completed) { in sfxge_rx_qfill()
817 unsigned int completed; in sfxge_rx_qcomplete() local
827 completed = rxq->completed; in sfxge_rx_qcomplete()
828 while (completed != rxq->pending) { in sfxge_rx_qcomplete()
832 id = completed++ & rxq->ptr_mask; in sfxge_rx_qcomplete()
906 rxq->completed = completed; in sfxge_rx_qcomplete()
908 level = rxq->added - rxq->completed; in sfxge_rx_qcomplete()
[all …]
H A Dsfxge_tx.c220 unsigned int completed; in sfxge_tx_qcomplete() local
224 completed = txq->completed; in sfxge_tx_qcomplete()
225 while (completed != txq->pending) { in sfxge_tx_qcomplete()
229 id = completed++ & txq->ptr_mask; in sfxge_tx_qcomplete()
245 txq->completed = completed; in sfxge_tx_qcomplete()
252 level = txq->added - txq->completed; in sfxge_tx_qcomplete()
326 txq->reaped = txq->completed; in sfxge_tx_qreap()
1449 level = txq->added - txq->completed; in sfxge_tx_qunblock()
1526 KASSERT(txq->completed == txq->added, in sfxge_tx_qstop()
1530 KASSERT(txq->reaped == txq->completed, in sfxge_tx_qstop()
[all …]
/freebsd/tools/test/stress2/misc/
H A Dfcntl.sh62 static volatile sig_atomic_t completed;
76 completed++;
210 while (completed != PARALLEL * 2)
/freebsd/sys/contrib/zstd/examples/
H A DMakefile65 @echo Cleaning completed
93 @echo tests completed
/freebsd/sys/contrib/zstd/lib/
H A DMakefile188 @echo multi-threaded build completed
194 @echo single-threaded build completed
198 @echo release build completed
247 @echo Cleaning library completed
/freebsd/sys/netinet/tcp_stacks/
H A Drack_pcm.c138 int i, completed = 0; in rack_update_pcm_ack()
161 completed = 1; in rack_update_pcm_ack()
225 if (completed == 0) in rack_update_pcm_ack()
139 int i, completed = 0; rack_update_pcm_ack() local
/freebsd/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_gsi.c35 bool completed:1; member
79 if (!wr->completed) in generate_completions()
86 wr->completed = false; in generate_completions()
101 wr->completed = true; in handle_single_completion()
431 gsi_wr->completed = true; in mlx5_ib_add_outstanding_wr()
/freebsd/lib/libusb/
H A Dlibusb10_io.c355 struct timeval *tv, int *completed) in libusb_handle_events_timeout_completed() argument
366 if (completed != NULL) { in libusb_handle_events_timeout_completed()
367 if (*completed != 0 || err != 0) in libusb_handle_events_timeout_completed()
371 if (completed == NULL) in libusb_handle_events_timeout_completed()
383 libusb_handle_events_completed(libusb_context *ctx, int *completed) in libusb_handle_events_completed() argument
385 return (libusb_handle_events_timeout_completed(ctx, NULL, completed)); in libusb_handle_events_completed()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebuggerEvents.h25 std::string details, uint64_t completed, uint64_t total, in ProgressEventData() argument
28 m_id(progress_id), m_completed(completed), m_total(total), in ProgressEventData()
/freebsd/contrib/dialog/
H A Dfselect.c617 char *completed; in dlg_fselect() local
838 completed = 0; in dlg_fselect()
844 completed = data_of(&f_list); in dlg_fselect()
846 completed = data_of(&d_list); in dlg_fselect()
849 completed = partial; in dlg_fselect()
852 if (completed != 0) { in dlg_fselect()
855 strcpy(leaf_of(input), completed); in dlg_fselect()
/freebsd/usr.sbin/diskinfo/
H A Ddiskinfo.c576 int error, i, queued, completed; in iops() local
602 completed = 0; in iops()
611 completed++; in iops()
623 } else if (completed == queued) { in iops()
628 TI(completed); in iops()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DProgress.cpp170 const uint64_t completed = in ReportProgress() local
173 completed, Progress::kNonDeterministicTotal, in ReportProgress()
/freebsd/sys/geom/vinum/
H A Dgeom_vinum_plex.c334 off_t completed; in gv_plex_raid5_done() local
337 completed = 0; in gv_plex_raid5_done()
344 completed = bp->bio_completed; in gv_plex_raid5_done()
358 completed = wp->length; in gv_plex_raid5_done()
376 completed = bp->bio_completed; in gv_plex_raid5_done()
403 completed = wp->length; in gv_plex_raid5_done()
421 pbp->bio_completed += completed; in gv_plex_raid5_done()
/freebsd/sys/geom/
H A Dnotes47 At level zero, only the number of transactions started and completed
61 the bio when it is completed. There are no concurrency or locking
70 (based on the counters for scheduled and completed requests being
78 take care to do this before we increment the "requests completed"
/freebsd/sys/cam/ctl/
H A Dctl_tpc.c137 int completed; member
167 if (!list->completed || time_uptime < list->last_active + in tpc_timeout()
234 if (!list->completed) in ctl_tpc_lun_clear()
251 KASSERT(list->completed, in ctl_tpc_lun_shutdown()
546 if (list->completed) { in ctl_receive_copy_status_lid1()
563 if (list_copy.completed) { in ctl_receive_copy_status_lid1()
607 if (list == NULL || !list->completed) { in ctl_receive_copy_failure_details()
630 if (list_copy.completed && (list_copy.error || list_copy.abort)) { in ctl_receive_copy_failure_details()
676 if (list->completed) { in ctl_receive_copy_status_lid4()
695 if (list_copy.completed) { in ctl_receive_copy_status_lid4()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Drt1015.txt14 Set a delay time for flush work to be completed,
/freebsd/crypto/openssl/doc/man3/
H A DSSL_read_early_data.pod64 to send data from the server to the client when the client has not yet completed
75 done before the full handshake has been completed. Specifically the client's
80 A server or client can determine whether the full handshake has been completed
107 SSL_write_early_data() call has completed successfully the client may interleave
121 connection has been completed you can determine whether the server accepted or
161 Once the initial SSL_read_early_data() call has completed successfully (i.e. it
166 supports TLSv1.2) the handshake may have already been completed and calls
168 determine whether the handshake has completed or not. If the handshake is still
175 still needs to be completed. Complete the connection by calling a function such

12345678