| /freebsd/sys/dev/usb/controller/ |
| H A D | ehci.c | 344 struct ehci_qh_sub *qh; in ehci_init() local 348 qh = buf_res.buffer; in ehci_init() 353 qh->qtd_next = in ehci_init() 355 qh->qtd_altnext = in ehci_init() 357 qh->qtd_status = in ehci_init() 362 ehci_qh_t *qh; in ehci_init() local 366 qh = buf_res.buffer; in ehci_init() 370 qh->page_cache = sc->sc_hw.intr_start_pc + i; in ehci_init() 374 sc->sc_intr_p_last[i] = qh; in ehci_init() 376 qh->qh_self = in ehci_init() [all …]
|
| H A D | uhci.c | 414 struct uhci_qh *qh; in uhci_init_qh() local 418 qh = buf_res.buffer; in uhci_init_qh() 420 qh->qh_self = in uhci_init_qh() 424 qh->page_cache = pc; in uhci_init_qh() 426 return (qh); in uhci_init_qh() 1237 uhci_qh_t *qh; in uhci_check_transfer_sub() local 1245 qh = xfer->qh_start[xfer->flags_int.curr_dma_set]; in uhci_check_transfer_sub() 1280 qh->qh_e_next = td_self; in uhci_check_transfer_sub() 1281 usb_pc_cpu_flush(qh->page_cache); in uhci_check_transfer_sub() 1819 uhci_qh_t *qh; in uhci_device_done() local [all …]
|
| /freebsd/stand/ficl/amd64/ |
| H A D | sysdep.c | 42 uint64_t qx, qh; in ficlLongDiv() local 44 qh = q.hi; in ficlLongDiv() 45 qx = (qh << 32) | q.lo; in ficlLongDiv()
|
| /freebsd/stand/ficl/arm/ |
| H A D | sysdep.c | 40 uint64_t qx, qh; in ficlLongDiv() local 42 qh = q.hi; in ficlLongDiv() 43 qx = (qh << 32) | q.lo; in ficlLongDiv()
|
| /freebsd/stand/ficl/i386/ |
| H A D | sysdep.c | 42 uint64_t qx, qh; in ficlLongDiv() local 44 qh = q.hi; in ficlLongDiv() 45 qx = (qh << 32) | q.lo; in ficlLongDiv()
|
| /freebsd/stand/ficl/powerpc/ |
| H A D | sysdep.c | 40 uint64_t qx, qh; in ficlLongDiv() local 42 qh = q.hi; in ficlLongDiv() 43 qx = (qh << 32) | q.lo; in ficlLongDiv()
|
| /freebsd/stand/ficl/aarch64/ |
| H A D | sysdep.c | 40 uint64_t qx, qh; in ficlLongDiv() local 42 qh = q.hi; in ficlLongDiv() 43 qx = (qh << 32) | q.lo; in ficlLongDiv()
|
| /freebsd/stand/ficl/riscv/ |
| H A D | sysdep.c | 40 uint64_t qx, qh; in ficlLongDiv() local 42 qh = q.hi; in ficlLongDiv() 43 qx = (qh << 32) | q.lo; in ficlLongDiv()
|
| /freebsd/crypto/libecc/src/nn/ |
| H A D | nn_div.c | 197 word_t borrow, qstar, qh, ql, rh, rl; /* for 3-by-2 div. */ in _nn_divrem_normalized() local 230 WORD_MUL(qh, ql, rl, v); in _nn_divrem_normalized() 233 qh = (word_t)(qh + ql); in _nn_divrem_normalized() 234 qstar = (word_t)(qstar + (qh < ql)); in _nn_divrem_normalized() 235 qh = (word_t)(qh + rl); in _nn_divrem_normalized() 236 rh = (word_t)(rh + (qh < rl)); in _nn_divrem_normalized() 651 word_t bh, bl, qh, ql, rm, rhl[2], phl[2]; in _word_divrem() local 667 qh = (rhl[1] / bh); in _word_divrem() 668 qh = WORD_MIN(qh, HWORD_MASK); in _word_divrem() 669 WORD_MUL(phl[1], phl[0], qh, (b)); in _word_divrem() [all …]
|
| /freebsd/sys/dev/vmware/vmci/ |
| H A D | vmci_defs.h | 475 struct vmci_queue_header *qh = (struct vmci_queue_header *)q_header; in vmci_queue_header_producer_tail() local 476 return (qp_atomic_read_offset(&qh->producer_tail)); in vmci_queue_header_producer_tail() 498 struct vmci_queue_header *qh = (struct vmci_queue_header *)q_header; in vmci_queue_header_consumer_head() local 499 return (qp_atomic_read_offset(&qh->consumer_head)); in vmci_queue_header_consumer_head()
|
| /freebsd/sys/dev/ciss/ |
| H A D | ciss.c | 147 static void ciss_done(struct ciss_softc *sc, cr_qhead_t *qh); 148 static void ciss_perf_done(struct ciss_softc *sc, cr_qhead_t *qh); 152 static void ciss_complete(struct ciss_softc *sc, cr_qhead_t *qh); 2163 ciss_done(struct ciss_softc *sc, cr_qhead_t *qh) in ciss_done() argument 2189 ciss_enqueue_complete(cr, qh); in ciss_done() 2195 ciss_perf_done(struct ciss_softc *sc, cr_qhead_t *qh) in ciss_perf_done() argument 2218 ciss_enqueue_complete(cr, qh); in ciss_perf_done() 2236 cr_qhead_t qh; in ciss_intr() local 2243 STAILQ_INIT(&qh); in ciss_intr() 2244 ciss_done(sc, &qh); in ciss_intr() [all …]
|
| /freebsd/crypto/openssl/crypto/bn/ |
| H A D | bn_div.c | 400 BN_ULONG ql, qh; in bn_div_fixed_top() local 404 qh = HBITS(q); in bn_div_fixed_top() 405 mul64(t2l, t2h, ql, qh); /* t2=(BN_ULLONG)d1*q; */ in bn_div_fixed_top()
|
| /freebsd/crypto/openssl/test/recipes/80-test_tsa_data/ |
| H A D | user-trust-ca-aaa.pem | 26 A4IBAQAYh1HcdCE9nIrgJ7cz0C7M7PDmy14R3iJvm3WOnnL+5Nb+qh+cli3vA0p+
|
| /freebsd/usr.sbin/extattr/tests/ |
| H A D | extattr_test.sh | 222 getextattr -qh user myattr foolink 230 atf_check -s exit:1 getextattr -qh user otherattr foolink
|
| /freebsd/crypto/openssh/regress/ |
| H A D | hostkey-agent.sh | 23 ${SSHKEYGEN} -s $OBJ/agent-ca -qh -n localhost-with-alias \
|
| /freebsd/secure/caroot/untrusted/ |
| H A D | Entrust_Root_Certification_Authority_-_G4.pem | 118 wbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5XxNMhIWNlUpEbsZmOeX7m640A
|
| /freebsd/contrib/file/tests/ |
| H A D | HWP97.hwp.testfile | 29 {T��qh�C�
|
| /freebsd/tests/sys/acl/ |
| H A D | tools-posix.test | 78 $ getfacl -qh lll
|
| /freebsd/contrib/sendmail/ |
| H A D | PGPKEYS | 388 x8+giU+dqf+t4PYFWG2wEUj0nYhiJPelPlTZjeoj139wYa4LaQWQNsx/DuNaN/qh
|
| /freebsd/contrib/ncurses/ |
| H A D | NEWS | 15482 <queen@qh.mirea.ac.ru>)
|