Searched refs:sq (Results 1 - 7 of 7) sorted by relevance

/haiku/src/system/libroot/posix/glibc/arch/generic/
H A Ds_cacoshf.c85 float sq = re2 - im2 - 1.0;
86 float ro = sqrtf (sq * sq + 4 * re2 * im2);
87 float a = sqrtf ((sq + ro) / 2.0);
88 float b = sqrtf ((-sq + ro) / 2.0);
/haiku/src/system/libroot/posix/musl/math/
H A Dhypot.c11 static void sq(double_t *hi, double_t *lo, double x) function
53 /* xh*xh must not overflow and xl*xl must not underflow in sq */
64 sq(&hx, &lx, x);
65 sq(&hy, &ly, y);
H A Dhypotl.c15 static void sq(long double *hi, long double *lo, long double x) function
62 sq(&hx, &lx, x);
63 sq(&hy, &ly, y);
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_superg.c638 ieee80211_ff_age(struct ieee80211com *ic, struct ieee80211_stageq *sq, argument
645 if (sq->depth == 0) {
650 KASSERT(sq->head != NULL, ("stageq empty"));
652 head = sq->head;
653 while ((m = sq->head) != NULL && M_AGE_GET(m) < quanta) {
661 sq->head = m->m_nextpkt;
662 sq->depth--;
665 sq->tail = NULL;
676 stageq_add(struct ieee80211com *ic, struct ieee80211_stageq *sq, struct mbuf *m) argument
682 if (sq
699 stageq_remove(struct ieee80211com *ic, struct ieee80211_stageq *sq, struct mbuf *mstaged) argument
775 struct ieee80211_stageq *sq; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/
H A Dif_ath_tx_edma.c179 TAILQ_HEAD(axq_q_f_s, ath_buf) sq;
199 TAILQ_INIT(&sq);
202 * First pass - walk sq, queue up to 'limit' entries,
214 TAILQ_INSERT_TAIL(&sq, bf, bf_list);
228 bf = TAILQ_FIRST(&sq);
229 bf_last = TAILQ_LAST(&sq, axq_q_s);
246 TAILQ_FOREACH(bfi, &sq, bf_list) {
255 TAILQ_FOREACH(bfi, &sq, bf_list) {
274 TAILQ_CONCAT(&txq->fifo.axq_q, &sq, bf_list);
/haiku/src/libs/agg/src/
H A Dagg_bezier_arc.cpp185 double sq = (prx*pry - prx*py1 - pry*px1) / (prx*py1 + pry*px1); local
186 double coef = sign * sqrt((sq < 0) ? 0 : sq);
/haiku/src/apps/processcontroller/
H A DProcessController.cpp685 float sq = fMemoryUsage * fMemoryUsage; local
686 sq *= sq;
687 sq *= sq;
688 mix_colors(used_memory_color, memory_color, swap_color, sq);

Completed in 109 milliseconds