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

1234

/freebsd-9.3-release/lib/libc/net/
H A Dntoh.c40 htons(uint16_t hs) argument
43 return (__htons(hs));
/freebsd-9.3-release/contrib/ipfilter/test/
H A Dvfycksum.pl36 $hs = &dosum(0, $base, $base + $hl);
39 if ($hs != 0) {
43 printf " IP: ($hl,%x) %x != %x", $hs, $osum, $hs2;
76 local($hs) = 6; # TCP
78 $hs += $len;
79 $hs += $bytes[$base + 6]; # source address
80 $hs += $bytes[$base + 7];
81 $hs += $bytes[$base + 8]; # destination address
82 $hs += $bytes[$base + 9];
83 local($tcpsum) = $hs;
[all...]
/freebsd-9.3-release/usr.bin/ruptime/
H A Druptime.c57 struct hs { struct
60 } *hs; variable in typeref:struct:hs
148 #define HS(a) ((const struct hs *)(a))
177 struct hs *hsp;
211 if ((hs =
212 realloc(hs, (hspace += 40) * sizeof(*hs))) == NULL)
214 hsp = hs + nhosts;
239 qsort(hs, nhosts, sizeof(hs[
[all...]
/freebsd-9.3-release/contrib/xz/src/liblzma/lz/
H A Dlz_encoder.c292 uint32_t hs; local
295 hs = 0xFFFF;
299 hs = lz_options->dict_size - 1;
300 hs |= hs >> 1;
301 hs |= hs >> 2;
302 hs |= hs >> 4;
303 hs |
[all...]
/freebsd-9.3-release/contrib/libreadline/
H A Dhistory.h53 #define HISTENT_BYTES(hs) (strlen ((hs)->line) + strlen ((hs)->timestamp))
H A Dhistory.c320 HIST_ENTRY *hs; local
322 hs = the_history[history_length - 1];
323 FREE (hs->timestamp);
324 hs->timestamp = savestring (string);
/freebsd-9.3-release/contrib/ntp/sntp/ag-tpl/0-old/
H A Dmdoc2texi18 use Mdoc qw(ns pp hs mapwords gen_encloser nl);
67 Mdoc::def_macro( '.Ss', sub { "\@subsubsection", hs, @_ });
70 "\@node", hs, "$name\n", ns, "\@subsection", hs, $name
72 Mdoc::def_macro( '.Ss', sub { "\@subsubsection", hs, @_ });
132 Mdoc::def_macro('.It', sub { '@item', hs, @_ });
H A Dmdoc2man14 use Mdoc qw(hs ns pp mapwords son soff stoggle gen_encloser);
20 Mdoc::def_macro( '.Sh', sub { '.SH', hs, @_ }, raw => 1);
21 Mdoc::def_macro( '.Ss', sub { '.SS', hs, @_ }, raw => 1);
99 my @ret = (".TP$width\n.NOP", hs);
111 ".TP$width\n.NOP", hs, @_
H A DMdoc.pm130 =item hs
155 our @EXPORT_OK = qw(ns pp soff son stoggle hs mapwords gen_encloser nl);
162 hs => ['hardspace'],
/freebsd-9.3-release/sys/net80211/
H A Dieee80211_hwmp.c235 struct ieee80211_hwmp_state *hs; local
240 hs = malloc(sizeof(struct ieee80211_hwmp_state), M_80211_VAP,
242 if (hs == NULL) {
246 hs->hs_maxhops = IEEE80211_HWMP_DEFAULT_MAXHOPS;
247 callout_init(&hs->hs_roottimer, CALLOUT_MPSAFE);
248 vap->iv_hwmp = hs;
254 struct ieee80211_hwmp_state *hs = vap->iv_hwmp; local
256 callout_drain(&hs->hs_roottimer);
265 struct ieee80211_hwmp_state *hs = vap->iv_hwmp; local
272 callout_drain(&hs
580 struct ieee80211_hwmp_state *hs = vap->iv_hwmp; local
609 struct ieee80211_hwmp_state *hs = vap->iv_hwmp; local
649 struct ieee80211_hwmp_state *hs = vap->iv_hwmp; local
681 struct ieee80211_hwmp_state *hs = vap->iv_hwmp; local
912 struct ieee80211_hwmp_state *hs = ni->ni_vap->iv_hwmp; local
940 struct ieee80211_hwmp_state *hs = vap->iv_hwmp; local
1198 struct ieee80211_hwmp_state *hs = ni->ni_vap->iv_hwmp; local
1226 struct ieee80211_hwmp_state *hs = vap->iv_hwmp; local
1288 struct ieee80211_hwmp_state *hs = vap->iv_hwmp; local
1392 struct ieee80211_hwmp_state *hs = vap->iv_hwmp; local
1415 struct ieee80211_hwmp_state *hs = vap->iv_hwmp; local
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/ag-tpl/
H A Dmdoc2man40 use Mdoc qw(hs ns pp mapwords son soff stoggle gen_encloser);
46 Mdoc::def_macro( '.Sh', sub { '.SH', hs, @_ }, raw => 1);
47 Mdoc::def_macro( '.Ss', sub { '.SS', hs, @_ }, raw => 1);
125 my @ret = (".TP$width\n.NOP", hs);
137 ".TP$width\n.NOP", hs, @_
H A DMdoc.pm157 =item hs
182 our @EXPORT_OK = qw(ns pp soff son stoggle hs mapwords gen_encloser nl);
189 hs => ['hardspace'],
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DFormatString.h266 : start(amountStart), length(amountLength), hs(howSpecified), amt(amount),
270 : start(0),length(0), hs(valid ? NotSpecified : Invalid), amt(0),
274 return hs == Invalid;
277 HowSpecified getHowSpecified() const { return hs; }
278 void setHowSpecified(HowSpecified h) { hs = h; }
280 bool hasDataArgument() const { return hs == Arg; }
288 assert(hs == Constant);
298 assert(hs == Constant);
318 HowSpecified hs; member in class:clang::analyze_format_string::OptionalAmount
/freebsd-9.3-release/sbin/savecore/
H A Dsavecore.c231 int he, hs, nr, nw, wl; local
256 for (hs = nw; hs < nr; hs += BLOCKSIZE) {
257 for (he = hs; he < nr && buf[he] == 0;
261 if (he >= hs + BLOCKSIZE)
274 if (hs + BLOCKSIZE > nr)
275 hs = he = nr;
279 * nw <= hs <= he <= nr
280 * If hs > n
[all...]
/freebsd-9.3-release/bin/sh/
H A Dhistedit.c163 sethistsize(hs)
164 const char *hs;
170 if (hs == NULL || *hs == '\0' ||
171 (histsize = atoi(hs)) < 0)
/freebsd-9.3-release/usr.sbin/tcpdrop/
H A Dtcpdrop.c162 sockinfo(const struct sockaddr *sa, struct host_service *hs) argument
167 rv = getnameinfo(sa, sa->sa_len, hs->hs_host, sizeof hs->hs_host,
168 hs->hs_service, sizeof hs->hs_service, flags);
/freebsd-9.3-release/contrib/binutils/binutils/
H A Drclex.c857 const char *hs = NULL; local
863 hs = yylval.s;
866 hs = yylval.s = yylval.ss.s;
869 if (! hs)
874 else if (! strcmp (hs, "StringFileInfo"))
876 else if (! strcmp (hs, "VarFileInfo"))
/freebsd-9.3-release/contrib/file/src/
H A Dsoftmagic.c973 p->h = (short)((p->hs[0]<<8)|(p->hs[1]));
997 p->h = (short)((p->hs[1]<<8)|(p->hs[0]));
1257 off = (short)((q->hs[0]<<8)|(q->hs[1]));
1260 off = (short)((q->hs[1]<<8)|(q->hs[0]));
1322 lhs = (p->hs[0] << 8) | p->hs[
[all...]
/freebsd-9.3-release/usr.bin/sed/
H A Dprocess.c66 #define hs HS.space macro
150 cspace(&PS, hs, hsl, REPLACE);
154 cspace(&PS, hs, hsl, APPEND);
243 if (hs == NULL)
/freebsd-9.3-release/contrib/less/
H A Doptfunc.c225 int hs = getnum(&s, "#", &err); local
230 shift_count = hs;
/freebsd-9.3-release/contrib/binutils/bfd/
H A Delf64-alpha.c2088 struct alpha_elf_link_hash_entry *hs;
2092 hs = hi;
2094 hs = (struct alpha_elf_link_hash_entry *)hs->root.root.u.i.link;
2095 } while (hs->root.root.type == bfd_link_hash_indirect);
2099 hs->flags |= hi->flags;
2104 if (hs->got_entries == NULL)
2105 hs->got_entries = hi->got_entries;
2110 gsh = hs->got_entries;
2122 gi->next = hs
2080 struct alpha_elf_link_hash_entry *hs; local
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/PBQP/
H A DHeuristicSolver.h611 HeuristicSolverImpl<HImpl> hs(g);
612 return hs.computeSolution();
/freebsd-9.3-release/gnu/usr.bin/rcs/lib/
H A Drcsrev.c831 struct hshentries *hs; local
833 h = genrevs(branch, (char*)0, (char*)0, (char*)0, &hs);
/freebsd-9.3-release/lib/libedit/
H A Dreadline.c2185 HISTORY_STATE *hs; local
2187 if ((hs = malloc(sizeof(HISTORY_STATE))) == NULL)
2189 hs->length = history_length;
2190 return (hs);
/freebsd-9.3-release/sbin/newfs_msdos/
H A Dnewfs_msdos.c796 off_t ms, hs = 0; local
856 hs = (ms / dlp.d_secsize) - dlp.d_secperunit;
869 bpb->bpbHiddenSecs = hs;

Completed in 158 milliseconds

1234