HomeSort by: relevance | last modified time | path
    Searched defs:hb (Results 1 - 10 of 10) sorted by relevancy

  /src/lib/libm/src/
e_hypot.c 57 int32_t j,k,ha,hb; local in function:__ieee754_hypot
61 GET_HIGH_WORD(hb,y);
62 hb &= 0x7fffffff;
63 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
65 SET_HIGH_WORD(b,hb); /* b <- |b| */
66 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */
75 if(((hb^0x7ff00000)|low)==0) w = b;
79 ha -= 0x25800000; hb -= 0x25800000; k += 600
    [all...]
e_hypotf.c 28 int32_t j,k,ha,hb; local in function:__ieee754_hypotf
32 GET_FLOAT_WORD(hb,y);
33 hb &= 0x7fffffff;
34 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
36 SET_FLOAT_WORD(b,hb); /* b <- |b| */
37 if((ha-hb)>0xf000000) {return a+b;} /* x/y > 2**30 */
43 if(hb == 0x7f800000) w = b;
47 ha -= 0x22000000; hb -= 0x22000000; k += 68
    [all...]
e_hypotl.c 61 int32_t j,k,ha,hb; local in function:hypotl
65 GET_HIGH_WORD(hb,y);
66 hb &= 0x7fff;
67 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
70 if((ha-hb)>DESW(MANT_DIG+7)) {return a+b;} /* x/y > 2**(MANT_DIG+7) */
80 if (hb >= ESW(MAX_EXP) && manh == LDBL_NBIT && manl == 0) w = b;
84 ha -= DESW(MAX_EXP/2+88); hb -= DESW(MAX_EXP/2+88);
87 SET_HIGH_WORD(b,hb);
    [all...]
s_fma.c 153 double ha, hb, la, lb, p, q; local in function:dd_mul
161 hb = b - p;
162 hb += p;
163 lb = b - hb;
165 p = ha * hb;
166 q = ha * lb + la * hb;
s_fmal.c 146 long double ha, hb, la, lb, p, q; local in function:dd_mul
154 hb = b - p;
155 hb += p;
156 lb = b - hb;
158 p = ha * hb;
159 q = ha * lb + la * hb;
  /src/lib/libc/compat/net/
compat_ns_addr.c 109 int hb[6], *hp; local in function:Field
119 &hb[0], &hb[1], &hb[2], &hb[3], &hb[4])))) {
120 cvtbase(1000L, 256, hb, i, out, len);
127 &hb[0], &hb[1], &hb[2], &hb[3], &hb[4], &hb[5])))
    [all...]
  /src/sys/dev/usb/
irmce.c 395 bool *hb = &sc->sc_rc6_hb[0]; local in function:irmce_rc6_decode
407 hb[sc->sc_rc6_nhb++] = state;
409 hb[sc->sc_rc6_nhb++] = state;
410 hb[sc->sc_rc6_nhb++] = state;
412 hb[sc->sc_rc6_nhb++] = state;
413 hb[sc->sc_rc6_nhb++] = state;
414 hb[sc->sc_rc6_nhb++] = state;
416 hb[sc->sc_rc6_nhb++] = state;
417 hb[sc->sc_rc6_nhb++] = state;
418 hb[sc->sc_rc6_nhb++] = state
    [all...]
  /src/sys/dev/ic/
ciss.c 1342 u_int32_t hb; local in function:ciss_heartbeat
1344 hb = bus_space_read_4(sc->sc_iot, sc->cfg_ioh,
1346 if (hb == sc->heartbeat) {
1349 device_xname(sc->sc_dev), sc->fibrillation, hb));
1355 sc->heartbeat = hb;
1359 device_xname(sc->sc_dev), hb));
  /src/common/lib/libx86emu/
x86emu.c 5829 uint8_t hb, lb; local in function:aad_word
5831 hb = (uint8_t) ((d >> 8) & 0xff);
5833 l = (uint16_t) ((lb + 10 * hb) & 0xFF);
  /src/sys/netinet/
sctp_output.c 5555 * set hb flag since we can use
5622 printf("Update HB anyway\n");
5652 /* Only HB or ASCONF advances time */
5901 printf("Update HB time anyway\n");
5932 /* For data/asconf and hb set time */
6122 /* take a HB request and make it into a
6123 * HB ack and send it.
6568 * we use this for HB and retrans cannot measure RTT
6759 /* For HB's */
6762 * this we use this for HB and retrans cannot measur
8253 struct sctp_heartbeat_chunk *hb; local in function:sctp_send_hb
    [all...]

Completed in 26 milliseconds