Home
last modified time | relevance | path

Searched refs:b_count (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/dev/sdio/
H A Dsdiob.c232 * A b_count of 0 means byte mode, b_count > 0 gets block mode.
233 * A b_count of >= 512 would mean infinitive block transfer, which would become
234 * b_count = 0, is not yet supported.
235 * For b_count == 0, blksz is the len of bytes, otherwise it is the amount of
243 bool wr, uint8_t *buffer, bool incaddr, uint32_t b_count, uint16_t blksz) in sdiob_rw_extended_cam() argument
255 ("%s(fn=%d addr=%#0x wr=%d b_count=%u blksz=%u buf=%p incr=%d)\n", in sdiob_rw_extended_cam()
256 __func__, fn, addr, wr, b_count, blksz, buffer, incaddr)); in sdiob_rw_extended_cam()
258 KASSERT((b_count <= 511), ("%s: infinitive block transfer not yet " in sdiob_rw_extended_cam()
259 "supported: b_count in sdiob_rw_extended_cam()
378 uint32_t b_count; sdiob_rw_extended_sc() local
[all...]
/freebsd/lib/libthr/thread/
H A Dthr_barrier.c126 bar->b_count = count; in _pthread_barrier_init()
150 if (++bar->b_waiters == bar->b_count) { in _pthread_barrier_wait()
H A Dthr_private.h209 int b_count; member