Searched refs:hbuf (Results 1 - 8 of 8) sorted by relevance

/external/libvpx/libvpx/vpx_scale/include/generic/
H A Dvpxscale_arbitrary.h41 unsigned char *hbuf; member in struct:__anon9058
/external/dropbear/
H A Ddbutil.c396 char hbuf[NI_MAXHOST], sbuf[NI_MAXSERV]; local
417 ret = getnameinfo((struct sockaddr*)addr, len, hbuf, sizeof(hbuf),
427 len = strlen(hbuf) + 2 + strlen(sbuf);
429 snprintf(retstring, len, "%s:%s", hbuf, sbuf);
431 retstring = m_strdup(hbuf);
442 char hbuf[NI_MAXHOST]; local
467 ret = getnameinfo((struct sockaddr*)addr, len, hbuf, sizeof(hbuf),
477 return m_strdup(hbuf);
[all...]
/external/libvpx/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c348 g_b_scaler.hbuf = g_hbuf;
465 unsigned char *RESTRICT hbuf; local
492 hbuf = g_b_scaler.hbuf;
500 hbuf[w] = temp_sum >> 12;
503 hbuf = ip;
517 temp_sum = c_w[phase_offset_w * 4] * hbuf[lw - 1];
518 temp_sum += c_w[phase_offset_w * 4 + 1] * hbuf[lw];
519 temp_sum += c_w[phase_offset_w * 4 + 2] * hbuf[lw + 1];
520 temp_sum += c_w[phase_offset_w * 4 + 3] * hbuf[l
[all...]
/external/ipsec-tools/src/racoon/
H A Disakmp_quick.c316 vchar_t *hbuf = NULL; /* for hash computing. */
382 hbuf = vmalloc(tlen);
383 if (hbuf == NULL) {
388 p = hbuf->v + iph2->nonce->l; /* retain the space for Ni_b */
392 * copy non-HASH payloads into hbuf, so that we can validate HASH.
485 memcpy(hbuf->v, iph2->nonce->v, iph2->nonce->l);
487 "HASH allocated:hbuf->l=%zu actual:tlen=%zu\n",
488 hbuf->l, tlen + iph2->nonce->l);
490 hbuf->l = iph2->nonce->l + tlen;
503 my_hash = oakley_compute_hash1(iph2->ph1, iph2->msgid, hbuf);
315 vchar_t *hbuf = NULL; /* for hash computing. */ local
839 vchar_t *hbuf = NULL; /* for hash computing. */ local
[all...]
/external/tcpdump/
H A Dprint-icmp6.c1158 char hbuf[NI_MAXHOST]; local
1226 if (inet_ntop(AF_INET6, &match->rpm_prefix, hbuf, sizeof(hbuf)))
1227 printf(",%s/%u", hbuf, match->rpm_matchlen);
1269 if (inet_ntop(AF_INET6, &use->rpu_prefix, hbuf,
1270 sizeof(hbuf)))
1271 printf("%s/%u/%u", hbuf, use->rpu_uselen,
/external/qemu/distrib/zlib-1.2.3/
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...]
/external/zlib/src/
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); \
622 unsigned char hbuf[ local
[all...]
/external/ping6/
H A Dping6.c2636 char hbuf[NI_MAXHOST]; local
2643 if (l > 63 || l > sizeof(hbuf) - 1)
2645 strncpy(hbuf, name, l);
2646 hbuf[(int)l] = '\0';
2665 if (inet_ntop(AF_INET6, &in6, hbuf, sizeof(hbuf)) == NULL)
2668 return strdup(hbuf);

Completed in 382 milliseconds