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

12

/external/libvpx/libvpx/vpx_dsp/
H A Davg.c139 void vpx_int_pro_row_c(int16_t hbuf[16], const uint8_t *ref, argument
145 hbuf[idx] = 0;
146 // hbuf[idx]: 14 bit, dynamic range [0, 16320].
147 for (i = 0; i < height; ++i) hbuf[idx] += ref[i * ref_stride];
148 // hbuf[idx]: 9 bit, dynamic range [0, 510].
149 hbuf[idx] /= norm_factor;
/external/iputils/
H A Dtracepath6.c210 char abuf[NI_MAXHOST], hbuf[NI_MAXHOST]; local
241 hbuf, sizeof(hbuf), NULL, 0,
247 strcpy(hbuf, "???");
249 hbuf[0] = 0;
252 print_host(abuf, hbuf, show_both);
254 print_host(hbuf, abuf, show_both);
/external/libvpx/libvpx/vpx_dsp/arm/
H A Davg_neon.c94 void vpx_int_pro_row_neon(int16_t hbuf[16], uint8_t const *ref, argument
142 vst1q_s16(hbuf, vreinterpretq_s16_u16(vec_sum_lo));
143 hbuf += 8;
144 vst1q_s16(hbuf, vreinterpretq_s16_u16(vec_sum_hi));
/external/toybox/toys/pending/
H A Darp.c188 char hbuf[NI_MAXHOST] = {0,}, sbuf[NI_MAXSERV] = {0,}; local
192 if (!(status = getnameinfo(sa, len, hbuf, sizeof(hbuf), sbuf,
194 strcpy(toybuf, hbuf);
H A Dtcpsvd.c76 char hbuf[NI_MAXHOST] = {0,}; local
81 if (!(status = getnameinfo(sock, len, hbuf, sizeof(hbuf), sbuf,
83 if (flags & NI_NUMERICSERV) return xmprintf("%s:%s",hbuf, sbuf);
84 return xmprintf("%s",hbuf);
/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/pdfium/third_party/zlib_v128/
H A Dinflate.c25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
443 hbuf[0] = (unsigned char)(word); \
444 hbuf[1] = (unsigned char)((word) >> 8); \
445 check = crc32(check, hbuf, 2); \
450 hbuf[0] = (unsigned char)(word); \
451 hbuf[1] = (unsigned char)((word) >> 8); \
452 hbuf[2] = (unsigned char)((word) >> 16); \
453 hbuf[3] = (unsigned char)((word) >> 24); \
454 check = crc32(check, hbuf, 4); \
623 unsigned char hbuf[ local
[all...]
/external/syslinux/com32/lib/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...]
/external/zlib/src/
H A Dinflate.c25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
443 hbuf[0] = (unsigned char)(word); \
444 hbuf[1] = (unsigned char)((word) >> 8); \
445 check = crc32(check, hbuf, 2); \
450 hbuf[0] = (unsigned char)(word); \
451 hbuf[1] = (unsigned char)((word) >> 8); \
452 hbuf[2] = (unsigned char)((word) >> 16); \
453 hbuf[3] = (unsigned char)((word) >> 24); \
454 check = crc32(check, hbuf, 4); \
623 unsigned char hbuf[ local
[all...]
/external/libvpx/libvpx/vpx_dsp/x86/
H A Davg_intrin_sse2.c314 void vpx_int_pro_row_sse2(int16_t *hbuf, uint8_t const *ref, argument
358 _mm_storeu_si128((__m128i *)hbuf, s0);
359 hbuf += 8;
360 _mm_storeu_si128((__m128i *)hbuf, s1);
/external/openssh/
H A Dkex.c872 u_int8_t hbuf[2048], sbuf[2048], obuf[SSH_DIGEST_MAX_LENGTH]; local
879 if (hlen < (512 / 8) || (u_int)hlen > sizeof(hbuf) ||
882 if (BN_bn2bin(host_modulus, hbuf) <= 0 ||
891 if (ssh_digest_update(hashctx, hbuf, hlen) != 0 ||
902 explicit_bzero(hbuf, sizeof(hbuf));
/external/libvpx/libvpx/vpx_dsp/mips/
H A Davg_msa.c393 void vpx_int_pro_row_msa(int16_t hbuf[16], const uint8_t *ref, argument
425 ST_SH2(hbuf_r, hbuf_l, hbuf, 8);
467 ST_SH2(hbuf_r, hbuf_l, hbuf, 8);
509 ST_SH2(hbuf_r, hbuf_l, hbuf, 8);
515 hbuf[cnt] = 0;
520 hbuf[cnt] += ref[cnt];
527 hbuf[cnt] /= norm_factor;
/external/tcpdump/
H A Dprint-icmp6.c1838 char hbuf[NI_MAXHOST]; local
1906 if (inet_ntop(AF_INET6, &match->rpm_prefix, hbuf, sizeof(hbuf)))
1907 ND_PRINT((ndo,",%s/%u", hbuf, match->rpm_matchlen));
1949 if (inet_ntop(AF_INET6, &use->rpu_prefix, hbuf,
1950 sizeof(hbuf)))
1951 ND_PRINT((ndo,"%s/%u/%u", hbuf, use->rpu_uselen,
/external/libvpx/libvpx/test/
H A Davg_test.cc121 typedef void (*IntProRowFunc)(int16_t hbuf[16], uint8_t const *ref,
/external/curl/lib/
H A Dftp.c990 char hbuf[NI_MAXHOST]; local
1091 conn->scope_id, addr, hbuf, sizeof(hbuf))) {
1099 host = hbuf; /* use the hbuf for host name */
1121 Curl_inet_ntop(sa->sa_family, &sa6->sin6_addr, hbuf, sizeof(hbuf));
1125 Curl_inet_ntop(sa->sa_family, &sa4->sin_addr, hbuf, sizeof(hbuf));
1128 host = hbuf; /* us
[all...]
/external/libvpx/config/arm-neon/
H A Dvpx_dsp_rtcd.h343 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
344 void vpx_int_pro_row_neon(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
/external/libvpx/config/arm64/
H A Dvpx_dsp_rtcd.h343 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
344 void vpx_int_pro_row_neon(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
/external/libvpx/config/mips32-msa/
H A Dvpx_dsp_rtcd.h341 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
342 void vpx_int_pro_row_msa(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
/external/libvpx/config/mips64-msa/
H A Dvpx_dsp_rtcd.h341 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
342 void vpx_int_pro_row_msa(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
/external/libvpx/config/x86/
H A Dvpx_dsp_rtcd.h369 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
370 void vpx_int_pro_row_sse2(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
/external/libvpx/config/x86_64/
H A Dvpx_dsp_rtcd.h371 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
372 void vpx_int_pro_row_sse2(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
/external/libvpx/config/arm/
H A Dvpx_dsp_rtcd.h283 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
/external/libvpx/config/generic/
H A Dvpx_dsp_rtcd.h283 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
/external/libvpx/config/mips32/
H A Dvpx_dsp_rtcd.h283 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);
/external/libvpx/config/mips64/
H A Dvpx_dsp_rtcd.h283 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height);

Completed in 3213 milliseconds

12