Searched refs:hb (Results 1 - 25 of 25) sorted by relevance

/freebsd-10.0-release/contrib/tcpdump/
H A Dprint-msnlb.c54 const struct msnlb_heartbeat_pkt *hb; local
56 hb = (struct msnlb_heartbeat_pkt *)bp;
57 ND_TCHECK(*hb);
60 EXTRACT_LE_32BITS(&(hb->host_prio))));
61 ND_PRINT((ndo, " cluster IP: %s,", ipaddr_string(&(hb->virtual_ip))));
62 ND_PRINT((ndo, " host IP: %s", ipaddr_string(&(hb->host_ip))));
H A DsctpHeader.h211 struct sctpParamDesc hb; member in struct:sctpHBunified
218 struct sctpParamDesc hb; member in struct:sctpHBsender
H A Dprint-sctp.c347 const struct sctpHBsender *hb; local
349 hb=(const struct sctpHBsender*)chunkDescPtr;
/freebsd-10.0-release/lib/libipx/
H A Dipx_addr.c105 int hb[6], *hp; local
113 &hb[0], &hb[1], &hb[2], &hb[3], &hb[4])))) {
114 cvtbase(1000L, 256, hb, i, out, len);
121 &hb[0], &hb[1], &hb[
[all...]
/freebsd-10.0-release/lib/msun/src/
H A De_hypot.c58 int32_t j,k,ha,hb; local
62 GET_HIGH_WORD(hb,y);
63 hb &= 0x7fffffff;
64 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
67 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */
77 if(((hb^0x7ff00000)|low)==0) w = b;
81 ha -= 0x25800000; hb -= 0x25800000; k += 600;
83 SET_HIGH_WORD(b,hb);
[all...]
H A De_hypotf.c26 int32_t j,k,ha,hb; local
30 GET_FLOAT_WORD(hb,y);
31 hb &= 0x7fffffff;
32 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
35 if((ha-hb)>0xf000000) {return a+b;} /* x/y > 2**30 */
42 if(hb == 0x7f800000) w = b;
46 ha -= 0x22000000; hb -= 0x22000000; k += 68;
48 SET_FLOAT_WORD(b,hb);
[all...]
H A De_hypotl.c52 int32_t j,k,ha,hb; local
56 GET_HIGH_WORD(hb,y);
57 hb &= 0x7fff;
58 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;}
61 if((ha-hb)>DESW(MANT_DIG+7)) {return a+b;} /* x/y > 2**(MANT_DIG+7) */
71 if (hb >= ESW(MAX_EXP) && manh == LDBL_NBIT && manl == 0) w = b;
75 ha -= DESW(MAX_EXP/2+88); hb -= DESW(MAX_EXP/2+88);
78 SET_HIGH_WORD(b,hb);
[all...]
H A Ds_fmal.c136 long double ha, hb, la, lb, p, q; local
144 hb = b - p;
145 hb += p;
146 lb = b - hb;
148 p = ha * hb;
149 q = ha * lb + la * hb;
H A Ds_fma.c140 double ha, hb, la, lb, p, q; local
148 hb = b - p;
149 hb += p;
150 lb = b - hb;
152 p = ha * hb;
153 q = ha * lb + la * hb;
/freebsd-10.0-release/contrib/tcp_wrappers/
H A Dscaffold.c56 struct hostent_block *hb; local
64 if ((hb = (struct hostent_block *) malloc(sizeof(struct hostent_block)
69 memset((char *) &hb->host, 0, sizeof(hb->host));
70 hb->host.h_length = hp->h_length;
71 hb->host.h_addr_list = hb->addr_list;
72 hb->host.h_addr_list[count] = 0;
73 data = (char *) (hb->host.h_addr_list + count + 1);
76 hb
[all...]
/freebsd-10.0-release/crypto/heimdal/include/
H A Dbits.c121 const char *fn, *hb; local
130 hb = "__BITS_H__";
137 hb = p;
147 fprintf(f, "#ifndef %s\n", hb);
148 fprintf(f, "#define %s\n", hb);
292 fprintf(f, "#endif /* %s */\n", hb);
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_wc/
H A Dupdate_editor.c978 struct handler_baton *hb = baton;
979 struct file_baton *fb = hb->fb;
984 err = hb->apply_handler(window, hb->apply_baton);
988 if (hb->expected_source_checksum)
991 svn_error_t *err2 = svn_stream_close(hb->source_checksum_stream);
995 SVN_ERR_ASSERT(hb->expected_source_checksum->kind ==
996 hb->actual_source_checksum->kind);
998 if (!svn_checksum_match(hb->expected_source_checksum,
999 hb
975 struct handler_baton *hb = baton; local
3581 struct handler_baton *hb; member in struct:lazy_target_baton
3613 struct handler_baton *hb = apr_pcalloc(handler_pool, sizeof(*hb)); local
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_client/
H A Dexport.c682 struct handler_baton *hb = baton;
685 err = hb->apply_handler(window, hb->apply_baton);
691 svn_io_remove_file2(hb->tmppath, TRUE, hb->pool));
708 struct handler_baton *hb = apr_palloc(pool, sizeof(*hb));
716 hb->pool = pool;
717 hb->tmppath = fb->tmppath;
726 &hb
679 struct handler_baton *hb = baton; local
705 struct handler_baton *hb = apr_palloc(pool, sizeof(*hb)); local
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/svnrdump/
H A Ddump_editor.c945 struct handler_baton *hb = baton;
948 err = hb->apply_handler(window, hb->apply_baton);
966 struct handler_baton *hb;
972 hb = apr_pcalloc(eb->pool, sizeof(*hb));
978 svn_txdelta_to_svndiff3(&(hb->apply_handler), &(hb->apply_baton),
990 *handler_baton = hb;
944 struct handler_baton *hb = baton; local
965 struct handler_baton *hb; local
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_delta/
H A Dcompat.c779 struct handler_baton *hb = baton;
782 err = hb->apply_handler(window, hb->apply_baton);
786 SVN_ERR(svn_stream_close(hb->source));
788 svn_pool_destroy(hb->pool);
803 struct handler_baton *hb = apr_pcalloc(handler_pool, sizeof(*hb));
816 hb->source = svn_stream_empty(handler_pool);
818 SVN_ERR(svn_stream_open_readonly(&hb->source, fb->delta_base, handler_pool,
825 svn_txdelta_apply(hb
778 struct handler_baton *hb = baton; local
802 struct handler_baton *hb = apr_pcalloc(handler_pool, sizeof(*hb)); local
[all...]
/freebsd-10.0-release/sys/mips/nlm/
H A Dmpreset.S198 jr.hb ra
/freebsd-10.0-release/contrib/amd/scripts/
H A Dexpn.11113 local($hb,$hr);
1162 ($hb, $hr) = ($1, $2);
1163 if ($addr =~ /\@([^\.\@]+)$/ && ($1 eq $hb)) {
H A Dexpn.in1112 local($hb,$hr);
1161 ($hb, $hr) = ($1, $2);
1162 if ($addr =~ /\@([^\.\@]+)$/ && ($1 eq $hb)) {
/freebsd-10.0-release/contrib/sendmail/contrib/
H A Dexpn.pl1103 local($hb,$hr);
1152 ($hb, $hr) = ($1, $2);
1153 if ($addr =~ /\@([^\.\@]+)$/ && ($1 eq $hb)) {
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_diff/
H A Dparse-diff.c777 const svn_diff_hunk_t *hb = *((const svn_diff_hunk_t *const *)b); local
779 if (ha->original_start < hb->original_start)
781 if (ha->original_start > hb->original_start)
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzap_micro.c1269 int hb; local
1281 hb = zap_hashbits(zc->zc_zap);
1282 zc->zc_hash = zc->zc_serialized << (64 - hb);
1283 zc->zc_cd += zc->zc_serialized >> hb;
/freebsd-10.0-release/sys/netinet/
H A Dsctp_output.c7992 * set hb flag since we can use these for
8691 /* For data/asconf and hb set time */
11086 struct sctp_heartbeat_chunk *hb; local
11108 SCTPDBG(SCTP_DEBUG_OUTPUT4, "Gak, can't get a chunk for hb\n");
11129 hb = mtod(chk->data, struct sctp_heartbeat_chunk *);
11130 memset(hb, 0, sizeof(struct sctp_heartbeat_chunk));
11132 hb->ch.chunk_type = SCTP_HEARTBEAT_REQUEST;
11133 hb->ch.chunk_flags = 0;
11134 hb->ch.chunk_length = htons(chk->send_size);
11135 /* Fill out hb paramete
[all...]
/freebsd-10.0-release/etc/
H A Dservices2328 hacl-hb 5300/tcp # HA cluster heartbeat
2329 hacl-hb 5300/udp # HA cluster heartbeat
/freebsd-10.0-release/sys/contrib/x86emu/
H A Dx86emu.c6019 uint8_t hb, lb; local
6021 hb = (uint8_t) ((d >> 8) & 0xff);
6023 l = (uint16_t) ((lb + 10 * hb) & 0xFF);
/freebsd-10.0-release/contrib/ncurses/misc/
H A Dterminfo.src7798 tvi955-hb|955-hb|televideo955 half-bright,
14736 mime-hb|half bright mime1,

Completed in 250 milliseconds