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

12

/freebsd-10.1-release/lib/libc/net/
H A Dntoh.c33 htonl(uint32_t hl) argument
36 return (__htonl(hl));
/freebsd-10.1-release/usr.bin/mail/
H A Dhead.c55 struct headline hl; local
60 parse(linebuf, &hl, parbuf);
61 if (hl.l_date == NULL) {
65 if (!isdate(hl.l_date)) {
93 parse(char line[], struct headline *hl, char pbuf[]) argument
98 hl->l_from = NULL;
99 hl->l_tty = NULL;
100 hl->l_date = NULL;
111 hl->l_date = copyin(cp, &sp);
116 hl
[all...]
H A Dcmd1.c170 struct headline hl; local
193 parse(headline, &hl, pbuf);
200 curind, dispc, mesg, name, hl.l_date, wcount);
203 curind, dispc, mesg, name, hl.l_date, wcount,
/freebsd-10.1-release/contrib/less/
H A Dsearch.c329 struct hilite *hl; local
332 for (hl = anchor->hl_first; hl != NULL; hl = nexthl)
334 nexthl = hl->hl_next;
335 free((void*)hl);
361 struct hilite *hl; local
366 for (hl = hilite_anchor.hl_first; hl != NULL; hl
382 struct hilite *hl; local
499 struct hilite *hl; local
850 struct hilite *hl = (struct hilite *) local
[all...]
/freebsd-10.1-release/lib/libutil/
H A Dlogin_ok.c184 const char **hl; local
186 hl = login_getcaplist(lc, allowcap, NULL);
187 if (hl != NULL && !login_str2inlist(hl, host, ip, FNM_CASEFOLD))
191 hl = login_getcaplist(lc, denycap, NULL);
192 if (hl != NULL && login_str2inlist(hl, host, ip, FNM_CASEFOLD))
/freebsd-10.1-release/usr.sbin/config/
H A Dmain.c598 struct hdr_list *hl; local
623 for (hl = htab; hl != NULL; hl = hl->h_next) {
624 if (eq(dp->d_name, hl->h_name)) {
628 if (hl)
641 struct hdr_list *hl; local
652 for (hl = htab; hl !
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/asn1/
H A Dasn1_par.c120 int nl, hl, j, r; local
146 hl = (p - op);
147 length -= hl;
156 if (BIO_printf(bp, "d=%-2d hl=%ld l=%4ld ",
157 depth, (long)hl, len) <= 0)
160 if (BIO_printf(bp, "d=%-2d hl=%ld l=inf ", depth, (long)hl) <= 0)
216 if (d2i_ASN1_OBJECT(&o, &opp, len + hl) != NULL) {
228 ii = d2i_ASN1_BOOLEAN(NULL, &opp, len + hl);
240 os = d2i_ASN1_OCTET_STRING(NULL, &opp, len + hl);
[all...]
/freebsd-10.1-release/contrib/ntp/include/
H A Dntp_types.h185 int16_t hh; uint16_t hl; uint16_t lh; uint16_t ll; member in struct:__anon2::__anon3
188 uint16_t hh; uint16_t hl; uint16_t lh; uint16_t ll; member in struct:__anon2::__anon4
198 uint16_t ll; uint16_t lh; uint16_t hl; int16_t hh;
201 uint16_t ll; uint16_t lh; uint16_t hl; uint16_t hh;
/freebsd-10.1-release/contrib/file/src/
H A Dsoftmagic.c980 ((p->hl[0]<<24)|(p->hl[1]<<16)|(p->hl[2]<<8)|(p->hl[3]));
1004 ((p->hl[3]<<24)|(p->hl[2]<<16)|(p->hl[1]<<8)|(p->hl[0]));
1024 ((p->hl[1]<<24)|(p->hl[
[all...]
/freebsd-10.1-release/contrib/binutils/ld/
H A Dldcref.c398 struct bfd_link_hash_entry *hl; local
401 hl = bfd_link_hash_lookup (link_info.hash, h->root.string, FALSE,
403 if (hl == NULL)
410 if (hl->type == bfd_link_hash_defined)
412 if (hl->u.def.section->output_section == NULL)
414 if (hl->u.def.section->owner != NULL
415 && (hl->u.def.section->owner->flags & DYNAMIC) != 0)
540 struct bfd_link_hash_entry *hl; local
547 hl = bfd_link_hash_lookup (link_info.hash, h->root.string, FALSE,
549 if (hl
[all...]
/freebsd-10.1-release/sys/dev/netmap/
H A Dixgbe_netmap.h84 uint32_t hl, rxc; local
86 hl = IXGBE_READ_REG(hw, IXGBE_HLREG0);
90 onoff ? "enter" : "exit", hl, rxc);
96 hl &= ~IXGBE_HLREG0_RXCRCSTRP;
100 hl |= IXGBE_HLREG0_RXCRCSTRP;
105 onoff ? "enter" : "exit", hl, rxc);
106 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hl);
/freebsd-10.1-release/contrib/llvm/include/llvm/MC/
H A DMCSchedule.h208 MCSchedModel(unsigned iw, int mbs, unsigned ll, unsigned hl, argument
212 IssueWidth(iw), MicroOpBufferSize(mbs), LoadLatency(ll), HighLatency(hl),
/freebsd-10.1-release/sys/dev/sound/pci/
H A Dhdspe-pcm.c511 struct hdspe_latency *hl = NULL; local
532 hl = &latency_map[i];
537 if (hl == NULL) {
539 hl = &latency_map[i];
540 threshold = hl->period + ((latency_map[i + 1].period != 0) ?
541 ((latency_map[i + 1].period - hl->period) >> 1) : 0);
549 sc->ctrl_register |= hdspe_encode_latency(hl->n);
551 sc->period = hl->period;
/freebsd-10.1-release/sys/contrib/octeon-sdk/
H A Dcvmip.h162 uint32_t hl : 4; member in struct:__anon6970
/freebsd-10.1-release/contrib/ipfilter/tools/
H A Dipmon.c1076 u_short hl, p; local
1205 hl = IP_HL(ip) << 2;
1217 hl = sizeof(ip6_t);
1222 plen = hl + ntohs(ip6->ip6_plen);
1224 ehp = (struct ip6_ext *)((char *)ip6 + hl);
1235 hl += ehl;
1239 hl += sizeof(struct ip6_frag);
1254 tp = (tcphdr_t *)((char *)ip + hl);
1262 proto, hl, plen);
1284 hostname(f, d), proto, hl, ple
[all...]
/freebsd-10.1-release/contrib/tcsh/
H A Ded.chared.c1874 Char *hl; local
1880 hl = hp->histline;
1882 hl = sprlex(&hp->Hlex);
1883 cleanup_push(hl, xfree);
1886 xprintf("Comparing with \"%S\"\n", hl);
1888 matched = (Strncmp(hl, InputBuf, (size_t) (LastChar - InputBuf)) ||
1889 hl[LastChar-InputBuf]) && c_hmatch(hl);
1891 cleanup_until(hl);
1935 Char *hl; local
[all...]
/freebsd-10.1-release/contrib/ofed/libibverbs/src/
H A Dmemory.c205 int hl, hr; local
210 hl = verify(node->left);
213 if (!hl || !hr)
215 if (hl != hr)
223 return hl;
226 return hl + 1;
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_xar.c2404 struct hardlink *hl; local
2411 hl = malloc(sizeof(*hl));
2412 if (hl == NULL) {
2417 hl->nlink = 1;
2420 hl->file_list.first = file;
2421 hl->file_list.last = &(file->hlnext);
2423 (struct archive_rb_node *)hl);
2425 hl = (struct hardlink *)__archive_rb_tree_find_node(
2427 if (hl !
2449 struct hardlink *hl; local
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/pem/
H A Dpem_lib.c674 int end = 0, i, k, bl = 0, hl = 0, nohead = 0; local
719 hl = 0;
737 if (!BUF_MEM_grow(headerB, hl + i + 9)) {
745 memcpy(&(headerB->data[hl]), buf, i);
746 headerB->data[hl + i] = '\0';
747 hl += i;
798 bl = hl;
/freebsd-10.1-release/sys/netipsec/
H A Dxform_ah.c574 int hl, rplen, authsize; local
606 hl = ah->ah_len * sizeof (u_int32_t);
609 if (hl != authsize + rplen - sizeof (struct ah)) {
612 hl, (u_long) (authsize + rplen - sizeof (struct ah)),
619 AHSTAT_ADD(ahs_ibytes, m->m_pkthdr.len - skip - hl);
/freebsd-10.1-release/usr.sbin/syslogd/
H A Dsyslogd.c1429 int error, hl; local
1456 hl = strlen(hname);
1457 if (hl > 0 && hname[hl-1] == '.')
1458 hname[--hl] = '\0';
1459 trimdomain(hname, hl);
1797 int hl; local
1804 hl = strlen(f->f_host);
1805 if (hl > 0 && f->f_host[hl
[all...]
/freebsd-10.1-release/contrib/llvm/include/llvm/ADT/
H A DImmutableSet.h437 unsigned hl = getHeight(L); local
439 return (hl > hr ? hl : hr) + 1;
495 unsigned hl = getHeight(L); local
498 if (hl > hr + 2) {
515 if (hr > hl + 2) {
/freebsd-10.1-release/crypto/openssh/
H A Dmisc.c746 size_t i, hl; local
751 hl = l * 2 + 1;
752 r = xcalloc(1, hl);
755 strlcat(r, b, hl);
/freebsd-10.1-release/crypto/openssl/crypto/perlasm/
H A Dx86gas.pl19 elsif ($reg =~ m/^%[a-d][hl]$/o) { "b"; }
/freebsd-10.1-release/lib/libmd/
H A DMakefile40 CLEANFILES+= md[245]hl.c md[245].ref md[245].3 mddriver \

Completed in 459 milliseconds

12