Searched defs:qsize (Results 1 - 19 of 19) sorted by relevance

/illumos-gate/usr/src/cmd/ttymon/
H A Dtmparse.c45 int qsize; local
67 c = quoted(ptr,&qsize);
68 (*size) += qsize;
69 ptr += qsize;
92 quoted(ptr,qsize)
94 int *qsize;
146 (*qsize) = rptr - ptr;
H A Dtmttydefs.c374 int qsize; local
392 *ptrout++ = quoted(ptrin,&qsize);
393 ptrin += qsize;
/illumos-gate/usr/src/common/crypto/rsa/
H A Drsa_impl.c106 /* psize and qsize are in bits */
108 RSA_key_init(RSAkey *key, int psize, int qsize) argument
115 qlen = BITLEN2BIGNUMLEN(qsize);
117 key->size = psize + qsize;
187 generate_rsa_key(RSAkey *key, int psize, int qsize, BIGNUM *pubexp, argument
197 size = psize + qsize;
263 if ((brv = big_random(&c, qsize, rf)) != BIG_OK) {
270 if (big_bitlength(&a) != qsize) {
352 rv = generate_rsa_key(key, psize, qsize, pubexp, rf);
512 /* psize and qsize fo
[all...]
/illumos-gate/usr/src/uts/common/io/comstar/port/qlt/
H A Dqlt_dma.h73 size_t qsize; member in struct:qlt_dma_sgl
H A Dqlt_dma.c664 size_t qsize; local
728 qsize = sizeof (qlt_dma_sgl_t);
731 qsize += cookie_count * sizeof (ddi_dma_cookie_t);
733 qsgl = kmem_alloc(qsize, KM_SLEEP);
738 qsgl->qsize = qsize;
783 kmem_free(qsgl, qsgl->qsize);
/illumos-gate/usr/src/lib/libadutils/common/
H A Dadutils_impl.h139 int qsize; /* Size of queries */ member in struct:adutils_query_state
/illumos-gate/usr/src/cmd/fgrep/
H A Dfgrep.c614 int qsize = QSIZE; local
627 if ((queue = (struct words **)calloc(qsize, sizeof (struct words *)))
638 * character of patterns exceeds the qsize value
640 if (rear >= &queue[qsize - 1]) {
643 qsize += QSIZE;
645 qsize * sizeof (struct words *))) == NULL) {
666 if (rear >= &queue[qsize - 1]) {
669 qsize += QSIZE;
671 qsize * sizeof (struct words *))) == NULL) {
/illumos-gate/usr/src/cmd/idmap/idmapd/
H A Dadutils.c106 int qsize; /* Queue size */ member in struct:idmap_query_state
223 new_state->qsize = nqueries;
604 assert(qid < state->qsize);
/illumos-gate/usr/src/lib/udapl/udapl_tavor/tavor/
H A Ddapl_tavor_wr.c406 dapli_tavor_wrid_get_list(uint32_t qsize, int wrid_for_srq) argument
448 wl_wre_size = qsize * sizeof (dapls_tavor_wrid_entry_t);
454 wl_freel_size = qsize * sizeof (uint32_t);
463 wridlist->wl_size = qsize;
477 wridlist->wl_freel_entries = qsize;
H A Ddapl_hermon_hw.c1043 uint32_t *wqe_start, *wqe_top, *wqe_base, qsize, invalue; local
1046 qsize = qp->qp_sq_numwqe;
1051 wqe_top = (uint32_t *)TAVOR_QP_SQ_ENTRY(qp, qsize);
/illumos-gate/usr/src/uts/common/io/ib/adapters/hermon/
H A Dhermon_wr.c2072 uint32_t *wqe_start, *wqe_top, *wqe_base, qsize; local
2077 qsize = qp->qp_sq_bufsz;
2082 wqe_top = (uint32_t *)HERMON_QP_SQ_ENTRY(qp, qsize);
/illumos-gate/usr/src/uts/common/rpc/
H A Dsvc.c600 uint_t qsize, uint_t timeout, uint_t stksize, uint_t max_same_xprt)
610 if (qsize == 0)
611 qsize = svc_default_qsize;
623 svc_xprt_qinit(pool, qsize);
699 args->qsize, args->timeout, args->stksize, args->max_same_xprt);
893 svc_xprt_qinit(SVCPOOL *pool, size_t qsize) argument
897 pool->p_qsize = qsize;
599 svc_pool_init(SVCPOOL *pool, uint_t maxthreads, uint_t redline, uint_t qsize, uint_t timeout, uint_t stksize, uint_t max_same_xprt) argument
H A Dsvc.h653 uint32_t qsize; /* `xprt-ready' queue size */ member in struct:svcpool_args
/illumos-gate/usr/src/uts/common/io/vioblk/
H A Dvioblk.c734 int i, qsize; local
736 qsize = sc->sc_vq->vq_num;
738 for (i = 0; i < qsize; i++) {
748 kmem_free(sc->sc_reqs, sizeof (struct vioblk_req) * qsize);
754 int i, qsize; local
757 qsize = sc->sc_vq->vq_num;
759 sc->sc_reqs = kmem_zalloc(sizeof (struct vioblk_req) * qsize, KM_SLEEP);
761 for (i = 0; i < qsize; i++) {
/illumos-gate/usr/src/uts/common/io/ib/adapters/tavor/
H A Dtavor_wr.c2087 uint32_t qsize; local
2117 qsize = qp->qp_sq_bufsz;
2120 wqe_top = TAVOR_QP_SQ_ENTRY(qp, qsize);
2124 qsize = qp->qp_rq_bufsz;
2127 wqe_top = TAVOR_QP_RQ_ENTRY(qp, qsize);
2131 qsize = srq->srq_wq_bufsz;
2134 wqe_top = TAVOR_SRQ_WQ_ENTRY(srq, qsize);
3162 tavor_wrid_get_list(uint32_t qsize) argument
3191 wridlist->wl_size = qsize;
3195 wridlist->wl_wre = (tavor_wrid_entry_t *)kmem_zalloc(qsize *
[all...]
/illumos-gate/usr/src/uts/common/io/
H A Dstream.c3237 qsize(queue_t *qp) function
/illumos-gate/usr/src/cmd/auditconfig/
H A Dauditconfig.c167 { "-setplugin", " name active|inactive [attributes [qsize]]",
500 exit_error(gettext("Incorrect qsize specified "
2792 int qsize; local
2801 qsize_ptr = kva_match(plugin_kva, "qsize");
2802 qsize = atoi(qsize_ptr == NULL ? "-1" : qsize_ptr);
2821 if (qsize != 0) {
2822 (void) printf(gettext("\tQueue size: %d %s\n"), qsize,
2823 qsize == -1 ? "(internal error: value not available)" : "");
/illumos-gate/usr/src/uts/common/io/cxgbe/t4nex/
H A Dadapter.h180 uint16_t qsize; /* size (# of entries) of the queue */ member in struct:sge_iq
223 uint16_t qsize; /* size (# of entries) of the queue */ member in struct:sge_eq
252 uint16_t qsize; /* size (# of entries) of the queue */ member in struct:sge_fl
H A Dt4_sge.c76 int8_t pktc_idx, int qsize, uint8_t esize);
77 static inline void init_fl(struct sge_fl *fl, uint16_t qsize);
78 static inline void init_eq(struct sge_eq *eq, uint16_t eqtype, uint16_t qsize,
688 limit = budget ? budget : iq->qsize / 8;
735 if (service_iq(q, q->qsize / 8) == 0) {
782 if (service_iq(q, q->qsize / 8) == 0)
1016 if (eq->pending >= (1 << (fls(eq->qsize - eq->avail) / 2)))
1040 (void) reclaim_tx_descs(txq, eq->qsize);
1048 qsize, uint8_t esize)
1061 iq->qsize
1047 init_iq(struct sge_iq *iq, struct adapter *sc, int tmr_idx, int8_t pktc_idx, int qsize, uint8_t esize) argument
1066 init_fl(struct sge_fl *fl, uint16_t qsize) argument
1073 init_eq(struct sge_eq *eq, uint16_t eqtype, uint16_t qsize, uint8_t tx_chan, uint16_t iqid) argument
[all...]

Completed in 123 milliseconds