Searched refs:hbuf (Results 26 - 50 of 52) sorted by relevance

123

/macosx-10.10.1/rsync-45/rsync/zlib/
H A Dinflate.c25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
387 hbuf[0] = (unsigned char)(word); \
388 hbuf[1] = (unsigned char)((word) >> 8); \
389 check = crc32(check, hbuf, 2); \
394 hbuf[0] = (unsigned char)(word); \
395 hbuf[1] = (unsigned char)((word) >> 8); \
396 hbuf[2] = (unsigned char)((word) >> 16); \
397 hbuf[3] = (unsigned char)((word) >> 24); \
398 check = crc32(check, hbuf, 4); \
572 unsigned char hbuf[ local
[all...]
/macosx-10.10.1/sudo-73/src/zlib/
H A Dinflate.c25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
442 hbuf[0] = (unsigned char)(word); \
443 hbuf[1] = (unsigned char)((word) >> 8); \
444 check = crc32(check, hbuf, 2); \
449 hbuf[0] = (unsigned char)(word); \
450 hbuf[1] = (unsigned char)((word) >> 8); \
451 hbuf[2] = (unsigned char)((word) >> 16); \
452 hbuf[3] = (unsigned char)((word) >> 24); \
453 check = crc32(check, hbuf, 4); \
627 unsigned char hbuf[ local
[all...]
/macosx-10.10.1/xnu-2782.1.97/libkern/zlib/
H A Dinflate.c52 * - Make hbuf[] unsigned char to match parameter type in inflate.c
416 hbuf[0] = (unsigned char)(word); \
417 hbuf[1] = (unsigned char)((word) >> 8); \
418 check = z_crc32(check, hbuf, 2); \
423 hbuf[0] = (unsigned char)(word); \
424 hbuf[1] = (unsigned char)((word) >> 8); \
425 hbuf[2] = (unsigned char)((word) >> 16); \
426 hbuf[3] = (unsigned char)((word) >> 24); \
427 check = z_crc32(check, hbuf, 4); \
601 unsigned char hbuf[ local
[all...]
/macosx-10.10.1/zlib-55/zlib/
H A Dinflate.c25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
422 hbuf[0] = (unsigned char)(word); \
423 hbuf[1] = (unsigned char)((word) >> 8); \
424 check = crc32(check, hbuf, 2); \
429 hbuf[0] = (unsigned char)(word); \
430 hbuf[1] = (unsigned char)((word) >> 8); \
431 hbuf[2] = (unsigned char)((word) >> 16); \
432 hbuf[3] = (unsigned char)((word) >> 24); \
433 check = crc32(check, hbuf, 4); \
607 unsigned char hbuf[ local
[all...]
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/plugins/
H A Dplugin_common.c119 char hbuf[NI_MAXHOST]; local
132 hbuf[i] = addr[i];
134 hbuf[i] = '\0';
150 if (getaddrinfo(hbuf, &addr[i], &hints, &ai) != 0) {
H A Dntlm.c785 char hbuf[NI_MAXHOST], pbuf[NI_MAXSERV]; local
831 if (getnameinfo(r->ai_addr, r->ai_addrlen, hbuf, sizeof(hbuf),
833 strcpy(hbuf, "unknown");
842 hbuf,
931 unsigned char hbuf[SMB_HDR_SIZE], *p; local
960 load_smb_header(hbuf, &hdr);
966 iov[n].iov_base = hbuf;
1117 unsigned char hbuf[SMB_HDR_SIZE], sbuf[SMB_SESSION_SETUP_SIZE], *p; local
1151 load_smb_header(hbuf,
[all...]
/macosx-10.10.1/libresolv-57/
H A Dres_send.c1511 char hbuf[NI_MAXHOST]; local
1516 if (getnameinfo(address, alen, hbuf, sizeof(hbuf), sbuf, sizeof(sbuf), niflags))
1518 strncpy(hbuf, "?", sizeof(hbuf) - 1);
1519 hbuf[sizeof(hbuf) - 1] = '\0';
1524 fprintf(file, "res_send: %s ([%s].%s): %s\n", string, hbuf, sbuf, strerror(error));
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/lib/
H A Dcommon.c2316 char hbuf[NI_MAXHOST], pbuf[NI_MAXSERV];
2326 if (getnameinfo(addr, addrlen, hbuf, sizeof(hbuf), pbuf, sizeof(pbuf),
2330 if(outlen < strlen(hbuf) + strlen(pbuf) + 2)
2333 snprintf(out, outlen, "%s;%s", hbuf, pbuf);
2345 char hbuf[NI_MAXHOST]; local
2356 hbuf[i] = addr[i];
2358 hbuf[i] = '\0';
2371 rc = inet_aton(hbuf,&inetAddr);
2390 if (getaddrinfo(hbuf,
[all...]
/macosx-10.10.1/tcsh-65/tcsh/
H A Ded.chared.c2152 Char *hbuf; local
2164 hbuf = NULL;
2176 hbuf = expand_lex(&hp->Hlex, 0, INT_MAX);
2177 cp = Strend(hbuf);
2178 bp = hbuf;
2198 hbuf = expand_lex(&hp->Hlex, 0, INT_MAX);
2199 cp = Strend(hbuf);
2200 bp = hbuf;
2228 xfree(hbuf);
2232 xfree(hbuf);
[all...]
H A Dsh.lex.c288 Char hbuf[12]; local
319 hbuf[h++] = c;
322 hbuf[11] = '\0';
323 Htime = a2time_t(hbuf);
/macosx-10.10.1/lukemftp-14/tnftp/src/
H A Dfetch.c485 char hbuf[NI_MAXHOST]; local
723 hbuf, sizeof(hbuf), NULL, 0, NI_NUMERICHOST) != 0)
724 strlcpy(hbuf, "?", sizeof(hbuf));
727 fprintf(ttyout, "Trying %s...\n", hbuf);
737 hbuf);
H A Dftp.c181 char hbuf[MAXHOSTNAMELEN]; local
213 hbuf, sizeof(hbuf), NULL, 0, NI_NUMERICHOST))
214 strlcpy(hbuf, "?", sizeof(hbuf));
217 fprintf(ttyout, "Trying %s...\n", hbuf);
223 hbuf);
H A Dftp.c.orig177 char hbuf[MAXHOSTNAMELEN];
209 hbuf, sizeof(hbuf), NULL, 0, NI_NUMERICHOST))
210 strlcpy(hbuf, "?", sizeof(hbuf));
213 fprintf(ttyout, "Trying %s...\n", hbuf);
219 hbuf);
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/
H A DSecPolicyServer.c486 CFStringInlineBuffer hbuf, dbuf; local
492 CFStringInitInlineBuffer(hostname, &hbuf, hrange);
501 hch = CFStringGetCharacterFromInlineBuffer(&hbuf, hlength-1);
524 hch = CFStringGetCharacterFromInlineBuffer(&hbuf, hix);
533 hch = CFStringGetCharacterFromInlineBuffer(&hbuf, (hlength-(dlength+1)));
559 CFStringInlineBuffer hbuf, sbuf; local
564 CFStringInitInlineBuffer(hostname, &hbuf, hrange);
579 hch = CFStringGetCharacterFromInlineBuffer(&hbuf, hix++);
604 hch = CFStringGetCharacterFromInlineBuffer(&hbuf, hix++);
614 hch = CFStringGetCharacterFromInlineBuffer(&hbuf, hi
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/rdata/generic/
H A Dloc_29.c470 char hbuf[sizeof("90000000m")]; local
493 sprintf(hbuf, "%lum", (hp>>4) * poweroften[(hp&0x0f)-2]);
495 sprintf(hbuf, "0.%02lum", (hp>>4) * poweroften[(hp&0x0f)]);
554 sbuf, hbuf, vbuf);
/macosx-10.10.1/Heimdal-398.1.2/appl/telnet/telnet/
H A Dcommands.c1570 char hbuf[256+1];
1575 gethostname(hbuf, 256);
1576 hbuf[256] = '\0';
1579 if (strchr(hbuf, '.') == 0) {
1585 error = getaddrinfo (hbuf, NULL, &hints, &ai);
1589 strlcpy (hbuf,
1598 error = asprintf (&cp, "%s%s", hbuf, cp2);
1562 char hbuf[256+1]; local
/macosx-10.10.1/xnu-2782.1.97/bsd/net/
H A Dbpf.c857 caddr_t hbuf; local
1004 hbuf = d->bd_hbuf;
1017 p = hbuf;
1018 while (p < hbuf + hbuf_len) {
1059 p = hbuf;
1060 while (p < hbuf + hbuf_len) {
1088 error = UIOMOVE(hbuf, hbuf_len, UIO_READ, uio);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-bdb/
H A Dtools.c39 static dn_id hbuf[HOLE_SIZE], *holes = hbuf; variable
548 if ( holes == hbuf ) {
550 AC_MEMCPY( holes, hbuf, sizeof(hbuf) );
/macosx-10.10.1/KerberosHelper-151/Source/
H A DKerberosHelper.c356 char hbuf[NI_MAXHOST]; local
540 err = getnameinfo (aip->ai_addr, aip->ai_addr->sa_len, hbuf,
541 sizeof(hbuf), NULL, 0, NI_NAMEREQD);
543 __func__, ipbuf, hbuf, (int)err, 0 == err ? "success" : gai_strerror (err));
548 find_mapping(hCtx, hbuf);
/macosx-10.10.1/remote_cmds-47/telnet.tproj/
H A Dcommands.c1666 char hbuf[256+1];
1669 gethostname(hbuf, 256);
1670 hbuf[256] = '\0';
1671 cp = (char *)malloc(strlen(hbuf) + strlen(cp2) + 1);
1672 sprintf((char *)cp, "%s%s", hbuf, cp2);
1658 char hbuf[256+1]; local
/macosx-10.10.1/network_cmds-457/ping6.tproj/
H A Dping6.c2963 char hbuf[NI_MAXHOST]; local
2970 if (l > 63 || l > sizeof(hbuf) - 1)
2972 strncpy(hbuf, name, l);
2973 hbuf[(int)l] = '\0';
2992 if (inet_ntop(AF_INET6, &in6, hbuf, sizeof(hbuf)) == NULL)
2995 return strdup(hbuf);
/macosx-10.10.1/BerkeleyDB-21/db/db/
H A Ddb_pr.c1155 char buf[DBTBUFLEN], hbuf[DBTBUFLEN]; local
1177 hp = (u_int8_t *)hbuf; len-- > 0; ++p) {
1182 ret = callback(handle, hbuf);
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dftp.c976 char hbuf[NI_MAXHOST]; local
1076 hbuf, sizeof(hbuf))) {
1084 host = hbuf; /* use the hbuf for host name */
1106 Curl_inet_ntop(sa->sa_family, &sa6->sin6_addr, hbuf, sizeof(hbuf));
1110 Curl_inet_ntop(sa->sa_family, &sa4->sin_addr, hbuf, sizeof(hbuf));
1113 host = hbuf; /* us
[all...]
/macosx-10.10.1/ksh-23/ksh/src/cmd/INIT/
H A Dratz.c2606 hbuf[0] = (unsigned char)(word); \
2607 hbuf[1] = (unsigned char)((word) >> 8); \
2608 check = crc32(check, hbuf, 2); \
2613 hbuf[0] = (unsigned char)(word); \
2614 hbuf[1] = (unsigned char)((word) >> 8); \
2615 hbuf[2] = (unsigned char)((word) >> 16); \
2616 hbuf[3] = (unsigned char)((word) >> 24); \
2617 check = crc32(check, hbuf, 4); \
2791 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ local
/macosx-10.10.1/groff-38/groff/src/roff/troff/
H A Denv.cpp3810 char hbuf[WORD_MAX+2]; local
3811 char *buf = hbuf + 1;
3834 hbuf[0] = hbuf[len+1] = '.';
3836 current_language->patterns.hyphenate(hbuf, len+2, num);

Completed in 511 milliseconds

123