Searched refs:fq (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/lib/msun/src/
H A Dk_rem_pio2.c116 * fq[] final product of x*(2/pi) in fq[0],..,fq[jk]
297 double z,fw,f[20],fq[20],q[20]; local
404 fq[jz-i] = fw;
407 /* compress fq[] into y[] */
411 for (i=jz;i>=0;i--) fw += fq[i];
417 for (i=jz;i>=0;i--) fw += fq[i];
420 fw = fq[0]-fw;
421 for (i=1;i<=jz;i++) fw += fq[
[all...]
/freebsd-11-stable/sys/compat/cloudabi/
H A Dcloudabi_futex.c754 futex_queue_tid_best(const struct futex_queue *fq) argument
757 return (STAILQ_FIRST(&fq->fq_list)->fw_tid);
761 futex_queue_count(const struct futex_queue *fq) argument
764 return (fq->fq_count);
768 futex_queue_init(struct futex_queue *fq) argument
771 STAILQ_INIT(&fq->fq_list);
772 fq->fq_count = 0;
811 futex_queue_sleep(struct futex_queue *fq, struct futex_lock *fl, argument
832 fw->fw_queue = fq;
833 STAILQ_INSERT_TAIL(&fq
899 futex_queue_wake_up_all(struct futex_queue *fq) argument
918 futex_queue_wake_up_best(struct futex_queue *fq) argument
932 futex_queue_wake_up_donate(struct futex_queue *fq, unsigned int nwaiters) argument
1076 struct futex_queue fq; local
[all...]
/freebsd-11-stable/sys/contrib/ncsw/Peripherals/QM/
H A Dqm.h398 #define FQLOCK(fq) \
400 if (fq->flags & QMAN_FQ_FLAG_LOCKED) \
401 XX_LockSpinlock(&fq->fqlock); \
403 #define FQUNLOCK(fq) \
405 if (fq->flags & QMAN_FQ_FLAG_LOCKED) \
406 XX_UnlockSpinlock(&fq->fqlock); \
H A Dfsl_qman.h491 } _PackedType fq; /* FQRN/FQRNI/FQRL/FQPN */ member in union:qm_mr_entry::__anon8267
970 struct qman_fq *fq,
979 struct qman_fq *fq,
1069 * @fq: the frame queue object to release
1077 void qman_free_fq(struct qman_fq *fq, uint32_t flags);
1081 * @fq: the frame queue object to query
1083 uint32_t qman_fq_fqid(struct qman_fq *fq);
1087 * @fq: the frame queue object to query
1095 void qman_fq_state(struct qman_fq *fq, enum qman_fq_state *state, uint32_t *flags);
H A Dqm_portal_fqr.c271 /* Process 'fq' right away, we'll ignore FQRNI */
380 if (p_Msg->fq.fqs & QM_MR_FQS_NOTEMPTY)
382 if (p_Msg->fq.fqs & QM_MR_FQS_ORLPRESENT)
571 struct qman_fq *p_FqFqs = (void *)p_Msg->fq.contextB;
1109 RETURN_ERROR(MAJOR, E_INVALID_STATE, ("fq %d currently in use, will be retired", p_Fq->fqid));
2071 DBG(INFO, ("fq %d currently in use, will be retired", p_QmFqr->p_Fqs[i]->fqid));
/freebsd-11-stable/share/mk/
H A Dbsd.crunchgen.mk119 ${CRUNCHGEN} -fq -m ${OUTMK} -c ${OUTC} ${CONF}
/freebsd-11-stable/sys/dev/netmap/
H A Dnetmap.c1323 struct mbq *q = &kring->rx_queue, fq; local
1325 mbq_init(&fq); /* fq holds packets to be freed */
1349 mbq_enqueue(&fq, m);
1371 mbq_purge(&fq);
1372 mbq_fini(&fq);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp1578 SDValue fq = DAG.getNode(ISD::FMUL, DL, FltVT, local
1581 // fq = trunc(fq);
1582 fq = DAG.getNode(ISD::FTRUNC, DL, FltVT, fq);
1584 // float fqneg = -fq;
1585 SDValue fqneg = DAG.getNode(ISD::FNEG, DL, FltVT, fq);
1596 // int iq = (int)fq;
1597 SDValue iq = DAG.getNode(ToInt, DL, IntVT, fq);

Completed in 179 milliseconds