Home
last modified time | relevance | path

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

12345678

/freebsd-14.2/sys/dev/ida/
H A Dida_pci.c77 bus_addr_t completed; in ida_v3_done() local
79 completed = ida_inl(ida, R_DONE_FIFO); in ida_v3_done()
80 if (completed == -1) { in ida_v3_done()
83 return (completed); in ida_v3_done()
117 bus_addr_t completed; in ida_v4_done() local
119 completed = ida_inl(ida, R_42XX_REPLY); in ida_v4_done()
120 if (completed == -1) in ida_v4_done()
123 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-14.2/sys/powerpc/powernv/
H A Dopal_async.c51 volatile uint64_t completed; member
82 completions[token].completed = false; in opal_alloc_async_token()
107 if (completions[token].completed) { in opal_wait_completion()
126 completions[token].completed = true; in opal_handle_async_completion()
/freebsd-14.2/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-14.2/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-14.2/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-14.2/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
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()
1016 __in unsigned int completed, in siena_tx_qdesc_post() argument
[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-14.2/tools/test/stress2/misc/
H A Dfcntl.sh61 static volatile sig_atomic_t completed;
75 completed++;
209 while (completed != PARALLEL * 2)
/freebsd-14.2/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-14.2/sys/contrib/zstd/examples/
H A DMakefile65 @echo Cleaning completed
93 @echo tests completed
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebuggerEvents.h24 std::string details, uint64_t completed, uint64_t total, in ProgressEventData() argument
27 m_id(progress_id), m_completed(completed), m_total(total), in ProgressEventData()
/freebsd-14.2/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-14.2/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-14.2/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-14.2/sys/geom/vinum/
H A Dgeom_vinum_plex.c335 off_t completed; in gv_plex_raid5_done() local
338 completed = 0; in gv_plex_raid5_done()
345 completed = bp->bio_completed; in gv_plex_raid5_done()
359 completed = wp->length; in gv_plex_raid5_done()
377 completed = bp->bio_completed; in gv_plex_raid5_done()
404 completed = wp->length; in gv_plex_raid5_done()
422 pbp->bio_completed += completed; in gv_plex_raid5_done()
/freebsd-14.2/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-14.2/sys/contrib/device-tree/Bindings/sound/
H A Drt1015.txt14 Set a delay time for flush work to be completed,
/freebsd-14.2/sys/cam/ctl/
H A Dctl_tpc.c138 int completed; member
235 if (!list->completed) in ctl_tpc_lun_clear()
252 KASSERT(list->completed, in ctl_tpc_lun_shutdown()
547 if (list->completed) { in ctl_receive_copy_status_lid1()
564 if (list_copy.completed) { in ctl_receive_copy_status_lid1()
677 if (list->completed) { in ctl_receive_copy_status_lid4()
696 if (list_copy.completed) { in ctl_receive_copy_status_lid4()
1489 list->completed = 1; in tpc_process()
2163 list->completed = 1; in ctl_populate_token()
2366 if (list->completed) { in ctl_receive_rod_token_information()
[all …]
/freebsd-14.2/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
/freebsd-14.2/crypto/openssh/
H A Dxmss_fast.h39 unsigned char completed; member
/freebsd-14.2/contrib/wpa/wpa_supplicant/
H A DREADME-HS20465 <3>ANQP fetch completed
484 <3>CTRL-EVENT-EAP-SUCCESS EAP authentication completed successfully
485 <3>WPA: Key negotiation completed with 02:00:00:00:01:00 [PTK=CCMP GTK=CCMP]
486 <3>CTRL-EVENT-CONNECTED - Connection to 02:00:00:00:01:00 completed (auth) [id=0 id_str=]
516 <3>ANQP fetch completed
525 <3>CTRL-EVENT-EAP-SUCCESS EAP authentication completed successfully
526 <3>WPA: Key negotiation completed with 02:00:00:00:01:00 [PTK=CCMP GTK=CCMP]
527 <3>CTRL-EVENT-CONNECTED - Connection to 02:00:00:00:01:00 completed (reauth) [id=0 id_str=]
618 <3>ANQP fetch completed

12345678