/external/iputils/ |
D | tracepath6.c | 210 char abuf[NI_MAXHOST], hbuf[NI_MAXHOST]; in recverr() local 241 hbuf, sizeof(hbuf), NULL, 0, in recverr() 247 strcpy(hbuf, "???"); in recverr() 249 hbuf[0] = 0; in recverr() 252 print_host(abuf, hbuf, show_both); in recverr() 254 print_host(hbuf, abuf, show_both); in recverr()
|
/external/libaom/libaom/aom_dsp/ |
D | avg.c | 186 void aom_int_pro_row_c(int16_t hbuf[16], const uint8_t *ref, in aom_int_pro_row_c() 192 hbuf[idx] = 0; in aom_int_pro_row_c() 194 for (i = 0; i < height; ++i) hbuf[idx] += ref[i * ref_stride]; in aom_int_pro_row_c() 196 hbuf[idx] /= norm_factor; in aom_int_pro_row_c()
|
D | aom_dsp_rtcd_defs.pl | 856 …add_proto qw/void aom_int_pro_row/, "int16_t *hbuf, const uint8_t *ref, const int ref_stride, cons…
|
/external/ipsec-tools/src/racoon/ |
D | isakmp_quick.c | 315 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/toybox/toys/pending/ |
D | tcpsvd.c | 76 char hbuf[NI_MAXHOST] = {0,}; in sock_to_address() local 81 if (!(status = getnameinfo(sock, len, hbuf, sizeof(hbuf), sbuf, in sock_to_address() 83 if (flags & NI_NUMERICSERV) return xmprintf("%s:%s",hbuf, sbuf); in sock_to_address() 84 return xmprintf("%s",hbuf); in sock_to_address()
|
D | arp.c | 183 char hbuf[NI_MAXHOST] = {0,}, sbuf[NI_MAXSERV] = {0,}; in ip_to_host() local 187 if (!(status = getnameinfo(sa, len, hbuf, sizeof(hbuf), sbuf, in ip_to_host() 189 strcpy(toybuf, hbuf); in ip_to_host()
|
/external/u-boot/lib/zlib/ |
D | inflate.c | 162 hbuf[0] = (unsigned char)(word); \ 163 hbuf[1] = (unsigned char)((word) >> 8); \ 164 check = crc32(check, hbuf, 2); \ 169 hbuf[0] = (unsigned char)(word); \ 170 hbuf[1] = (unsigned char)((word) >> 8); \ 171 hbuf[2] = (unsigned char)((word) >> 16); \ 172 hbuf[3] = (unsigned char)((word) >> 24); \ 173 check = crc32(check, hbuf, 4); \ 344 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ in inflate() local
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | avg_neon.c | 78 void vpx_int_pro_row_neon(int16_t hbuf[16], uint8_t const *ref, in vpx_int_pro_row_neon() 126 vst1q_s16(hbuf, vreinterpretq_s16_u16(vec_sum_lo)); in vpx_int_pro_row_neon() 127 hbuf += 8; in vpx_int_pro_row_neon() 128 vst1q_s16(hbuf, vreinterpretq_s16_u16(vec_sum_hi)); in vpx_int_pro_row_neon()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | avg.c | 343 void vpx_int_pro_row_c(int16_t hbuf[16], const uint8_t *ref, in vpx_int_pro_row_c() 349 hbuf[idx] = 0; in vpx_int_pro_row_c() 351 for (i = 0; i < height; ++i) hbuf[idx] += ref[i * ref_stride]; in vpx_int_pro_row_c() 353 hbuf[idx] /= norm_factor; in vpx_int_pro_row_c()
|
D | vpx_dsp_rtcd_defs.pl | 816 …add_proto qw/void vpx_int_pro_row/, "int16_t *hbuf, const uint8_t *ref, const int ref_stride, cons…
|
/external/python/cpython2/Modules/zlib/ |
D | inflate.c | 460 hbuf[0] = (unsigned char)(word); \ 461 hbuf[1] = (unsigned char)((word) >> 8); \ 462 check = crc32(check, hbuf, 2); \ 467 hbuf[0] = (unsigned char)(word); \ 468 hbuf[1] = (unsigned char)((word) >> 8); \ 469 hbuf[2] = (unsigned char)((word) >> 16); \ 470 hbuf[3] = (unsigned char)((word) >> 24); \ 471 check = crc32(check, hbuf, 4); \ 640 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ local
|
/external/zlib/src/ |
D | inflate.c | 460 hbuf[0] = (unsigned char)(word); \ 461 hbuf[1] = (unsigned char)((word) >> 8); \ 462 check = crc32(check, hbuf, 2); \ 467 hbuf[0] = (unsigned char)(word); \ 468 hbuf[1] = (unsigned char)((word) >> 8); \ 469 hbuf[2] = (unsigned char)((word) >> 16); \ 470 hbuf[3] = (unsigned char)((word) >> 24); \ 471 check = crc32(check, hbuf, 4); \ 640 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ local
|
/external/openssh/ |
D | kex.c | 996 u_int8_t hbuf[2048], sbuf[2048], obuf[SSH_DIGEST_MAX_LENGTH]; in derive_ssh1_session_id() local 1003 if (hlen < (512 / 8) || (u_int)hlen > sizeof(hbuf) || in derive_ssh1_session_id() 1006 if (BN_bn2bin(host_modulus, hbuf) <= 0 || in derive_ssh1_session_id() 1015 if (ssh_digest_update(hashctx, hbuf, hlen) != 0 || in derive_ssh1_session_id() 1026 explicit_bzero(hbuf, sizeof(hbuf)); in derive_ssh1_session_id()
|
/external/tcpdump/ |
D | print-icmp6.c | 1823 char hbuf[NI_MAXHOST]; in icmp6_rrenum_print() local 1891 if (addrtostr6(&match->rpm_prefix, hbuf, sizeof(hbuf))) in icmp6_rrenum_print() 1892 ND_PRINT((ndo,",%s/%u", hbuf, match->rpm_matchlen)); in icmp6_rrenum_print() 1934 if (addrtostr6(&use->rpu_prefix, hbuf, sizeof(hbuf))) in icmp6_rrenum_print() 1935 ND_PRINT((ndo,"%s/%u/%u", hbuf, use->rpu_uselen, in icmp6_rrenum_print()
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | avg_intrin_sse2.c | 467 void vpx_int_pro_row_sse2(int16_t *hbuf, const uint8_t *ref, in vpx_int_pro_row_sse2() argument 511 _mm_storeu_si128((__m128i *)hbuf, s0); in vpx_int_pro_row_sse2() 512 hbuf += 8; in vpx_int_pro_row_sse2() 513 _mm_storeu_si128((__m128i *)hbuf, s1); in vpx_int_pro_row_sse2()
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
D | avg_msa.c | 395 void vpx_int_pro_row_msa(int16_t hbuf[16], const uint8_t *ref, in vpx_int_pro_row_msa() 427 ST_SH2(hbuf_r, hbuf_l, hbuf, 8); in vpx_int_pro_row_msa() 469 ST_SH2(hbuf_r, hbuf_l, hbuf, 8); in vpx_int_pro_row_msa() 511 ST_SH2(hbuf_r, hbuf_l, hbuf, 8); in vpx_int_pro_row_msa() 517 hbuf[cnt] = 0; in vpx_int_pro_row_msa() 522 hbuf[cnt] += ref[cnt]; in vpx_int_pro_row_msa() 529 hbuf[cnt] /= norm_factor; in vpx_int_pro_row_msa()
|
/external/syzkaller/vendor/golang.org/x/net/http2/ |
D | transport.go | 180 hbuf bytes.Buffer // HPACK encoder writes into this member 568 cc.henc = hpack.NewEncoder(&cc.hbuf) 1178 cc.hbuf.Reset() 1299 return cc.hbuf.Bytes(), nil 1326 cc.hbuf.Reset() 1347 return cc.hbuf.Bytes(), nil
|
/external/curl/lib/ |
D | ftp.c | 935 char hbuf[NI_MAXHOST]; in ftp_state_use_port() local 1042 conn->scope_id, addr, hbuf, sizeof(hbuf))) { in ftp_state_use_port() 1050 host = hbuf; /* use the hbuf for host name */ in ftp_state_use_port() 1071 Curl_inet_ntop(sa->sa_family, &sa6->sin6_addr, hbuf, sizeof(hbuf)); in ftp_state_use_port() 1075 Curl_inet_ntop(sa->sa_family, &sa4->sin_addr, hbuf, sizeof(hbuf)); in ftp_state_use_port() 1078 host = hbuf; /* use this host name */ in ftp_state_use_port()
|
/external/libvpx/libvpx/test/ |
D | avg_test.cc | 155 typedef void (*IntProRowFunc)(int16_t hbuf[16], uint8_t const *ref,
|
/external/python/cpython2/Modules/ |
D | socketmodule.c | 4286 char hbuf[NI_MAXHOST], pbuf[NI_MAXSERV]; local 4347 hbuf, sizeof(hbuf), pbuf, sizeof(pbuf), flags); 4352 ret = Py_BuildValue("ss", hbuf, pbuf);
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 2133 DECLARE_ALIGNED(16, int16_t, hbuf[128]); in vp9_int_pro_motion_estimation() 2183 vpx_int_pro_row(&hbuf[idx], ref_buf, ref_stride, bh); in vp9_int_pro_motion_estimation() 2206 tmp_mv->col = vector_match(hbuf, src_hbuf, b_width_log2_lookup[bsize]); in vp9_int_pro_motion_estimation()
|
/external/python/cpython3/Modules/ |
D | socketmodule.c | 6319 char hbuf[NI_MAXHOST], pbuf[NI_MAXSERV]; local 6384 hbuf, sizeof(hbuf), pbuf, sizeof(pbuf), flags); 6390 name = sock_decode_hostname(hbuf);
|
D | posixmodule.c | 8349 Py_buffer *hbuf, *tbuf; in posix_sendfile() local 8386 if (iov_setup(&(sf.headers), &hbuf, in posix_sendfile() 8440 iov_cleanup(sf.headers, hbuf, sf.hdr_cnt); in posix_sendfile()
|
/external/libaom/libaom/av1/encoder/ |
D | mcomp.c | 2178 DECLARE_ALIGNED(16, int16_t, hbuf[256]); in av1_int_pro_motion_estimation() 2225 aom_int_pro_row(&hbuf[idx], ref_buf, ref_stride, bh); in av1_int_pro_motion_estimation() 2248 tmp_mv->col = vector_match(hbuf, src_hbuf, mi_size_wide_log2[bsize]); in av1_int_pro_motion_estimation()
|
/external/libvpx/config/arm64/ |
D | vpx_dsp_rtcd.h | 1265 void vpx_int_pro_row_c(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height); 1266 void vpx_int_pro_row_neon(int16_t *hbuf, const uint8_t *ref, const int ref_stride, const int height…
|