Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vpx_scale/generic/
Dbicubic_scaler.c348 g_b_scaler.hbuf = g_hbuf; in bicubic_coefficient_setup()
465 unsigned char *RESTRICT hbuf; in bicubic_scale() local
492 hbuf = g_b_scaler.hbuf; in bicubic_scale()
500 hbuf[w] = temp_sum >> 12; in bicubic_scale()
503 hbuf = ip; in bicubic_scale()
517 temp_sum = c_w[phase_offset_w * 4] * hbuf[lw - 1]; in bicubic_scale()
518 temp_sum += c_w[phase_offset_w * 4 + 1] * hbuf[lw]; in bicubic_scale()
519 temp_sum += c_w[phase_offset_w * 4 + 2] * hbuf[lw + 1]; in bicubic_scale()
520 temp_sum += c_w[phase_offset_w * 4 + 3] * hbuf[lw + 2]; in bicubic_scale()
528 temp_sum = hbuf[lw]; in bicubic_scale()
[all …]
/external/dropbear/
Ddbutil.c396 char hbuf[NI_MAXHOST], sbuf[NI_MAXSERV]; in getaddrstring() local
417 ret = getnameinfo((struct sockaddr*)addr, len, hbuf, sizeof(hbuf), in getaddrstring()
427 len = strlen(hbuf) + 2 + strlen(sbuf); in getaddrstring()
429 snprintf(retstring, len, "%s:%s", hbuf, sbuf); in getaddrstring()
431 retstring = m_strdup(hbuf); in getaddrstring()
442 char hbuf[NI_MAXHOST]; in getaddrhostname() local
467 ret = getnameinfo((struct sockaddr*)addr, len, hbuf, sizeof(hbuf), in getaddrhostname()
477 return m_strdup(hbuf); in getaddrhostname()
/external/ipsec-tools/src/racoon/
Disakmp_quick.c315 vchar_t *hbuf = NULL; /* for hash computing. */ local
381 hbuf = vmalloc(tlen);
382 if (hbuf == NULL) {
387 p = hbuf->v + iph2->nonce->l; /* retain the space for Ni_b */
484 memcpy(hbuf->v, iph2->nonce->v, iph2->nonce->l);
487 hbuf->l, tlen + iph2->nonce->l);
489 hbuf->l = iph2->nonce->l + tlen;
502 my_hash = oakley_compute_hash1(iph2->ph1, iph2->msgid, hbuf);
529 if (hbuf)
530 vfree(hbuf);
[all …]
/external/qemu/distrib/zlib-1.2.3/
Dinflate.c387 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[4]; /* buffer for gzip header crc calculation */ local
/external/libvpx/libvpx/vpx_scale/include/generic/
Dvpxscale_arbitrary.h41 unsigned char *hbuf; member
/external/tcpdump/
Dprint-icmp6.c1158 char hbuf[NI_MAXHOST]; in icmp6_rrenum_print() local
1226 if (inet_ntop(AF_INET6, &match->rpm_prefix, hbuf, sizeof(hbuf))) in icmp6_rrenum_print()
1227 printf(",%s/%u", hbuf, match->rpm_matchlen); in icmp6_rrenum_print()
1269 if (inet_ntop(AF_INET6, &use->rpu_prefix, hbuf, in icmp6_rrenum_print()
1270 sizeof(hbuf))) in icmp6_rrenum_print()
1271 printf("%s/%u/%u", hbuf, use->rpu_uselen, in icmp6_rrenum_print()
/external/zlib/src/
Dinflate.c442 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[4]; /* buffer for gzip header crc calculation */ local
/external/ping6/
Dping6.c2636 char hbuf[NI_MAXHOST]; in nigroup() local
2643 if (l > 63 || l > sizeof(hbuf) - 1) in nigroup()
2645 strncpy(hbuf, name, l); in nigroup()
2646 hbuf[(int)l] = '\0'; in nigroup()
2665 if (inet_ntop(AF_INET6, &in6, hbuf, sizeof(hbuf)) == NULL) in nigroup()
2668 return strdup(hbuf); in nigroup()