/third_party/toybox/toys/pending/ |
D | arp.c | 176 char hbuf[NI_MAXHOST] = {0,}, sbuf[NI_MAXSERV] = {0,}; in ip_to_host() local 180 if (!(status = getnameinfo(sa, len, hbuf, sizeof(hbuf), sbuf, in ip_to_host() 182 strcpy(toybuf, hbuf); in ip_to_host()
|
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()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_info.cc | 679 char hbuf[24]; // covers header.zonetab_offset too in Open() local 680 if (fread(hbuf, 1, sizeof(hbuf), fp.get()) != sizeof(hbuf)) continue; in Open() 681 if (strncmp(hbuf, "tzdata", 6) != 0) continue; in Open() 682 const char* vers = (hbuf[11] == '\0') ? hbuf + 6 : ""; in Open() 683 const std::int_fast32_t index_offset = Decode32(hbuf + 12); in Open() 684 const std::int_fast32_t data_offset = Decode32(hbuf + 16); in Open()
|
/third_party/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_info.cc | 682 char hbuf[24]; // covers header.zonetab_offset too in Open() local 683 if (fread(hbuf, 1, sizeof(hbuf), fp.get()) != sizeof(hbuf)) continue; in Open() 684 if (strncmp(hbuf, "tzdata", 6) != 0) continue; in Open() 685 const char* vers = (hbuf[11] == '\0') ? hbuf + 6 : ""; in Open() 686 const std::int_fast32_t index_offset = Decode32(hbuf + 12); in Open() 687 const std::int_fast32_t data_offset = Decode32(hbuf + 16); in Open()
|
/third_party/gstreamer/gstplugins_base/ext/ogg/ |
D | gstoggmux.c | 1465 GstBuffer *hbuf; in gst_ogg_mux_send_headers() local 1517 hbuf = gst_ogg_mux_buffer_from_page (mux, &page, FALSE); in gst_ogg_mux_send_headers() 1529 hbufs = g_list_prepend (hbufs, hbuf); in gst_ogg_mux_send_headers() 1531 hbufs = g_list_append (hbufs, hbuf); in gst_ogg_mux_send_headers() 1544 GstBuffer *hbuf = gst_ogg_mux_buffer_from_page (mux, &page, FALSE); in gst_ogg_mux_send_headers() local 1545 hbufs = g_list_append (hbufs, hbuf); in gst_ogg_mux_send_headers() 1593 GstBuffer *hbuf = gst_ogg_mux_buffer_from_page (mux, &page, FALSE); in gst_ogg_mux_send_headers() local 1596 hbufs = g_list_append (hbufs, hbuf); in gst_ogg_mux_send_headers() 1602 GstBuffer *hbuf = gst_ogg_mux_buffer_from_page (mux, &page, FALSE); in gst_ogg_mux_send_headers() local 1605 hbufs = g_list_append (hbufs, hbuf); in gst_ogg_mux_send_headers() [all …]
|
/third_party/libwebsockets/win32port/zlib/ |
D | 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[4]; /* buffer for gzip header crc calculation */ local
|
/third_party/node/deps/zlib/ |
D | inflate.c | 461 hbuf[0] = (unsigned char)(word); \ 462 hbuf[1] = (unsigned char)((word) >> 8); \ 463 check = crc32(check, hbuf, 2); \ 468 hbuf[0] = (unsigned char)(word); \ 469 hbuf[1] = (unsigned char)((word) >> 8); \ 470 hbuf[2] = (unsigned char)((word) >> 16); \ 471 hbuf[3] = (unsigned char)((word) >> 24); \ 472 check = crc32(check, hbuf, 4); \ 641 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ local
|
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/ |
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
|
/third_party/skia/third_party/externals/zlib/ |
D | inflate.c | 461 hbuf[0] = (unsigned char)(word); \ 462 hbuf[1] = (unsigned char)((word) >> 8); \ 463 check = crc32(check, hbuf, 2); \ 468 hbuf[0] = (unsigned char)(word); \ 469 hbuf[1] = (unsigned char)((word) >> 8); \ 470 hbuf[2] = (unsigned char)((word) >> 16); \ 471 hbuf[3] = (unsigned char)((word) >> 24); \ 472 check = crc32(check, hbuf, 4); \ 641 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ local
|
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/ |
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
|
/third_party/flutter/skia/third_party/externals/zlib/ |
D | inflate.c | 461 hbuf[0] = (unsigned char)(word); \ 462 hbuf[1] = (unsigned char)((word) >> 8); \ 463 check = crc32(check, hbuf, 2); \ 468 hbuf[0] = (unsigned char)(word); \ 469 hbuf[1] = (unsigned char)((word) >> 8); \ 470 hbuf[2] = (unsigned char)((word) >> 16); \ 471 hbuf[3] = (unsigned char)((word) >> 24); \ 472 check = crc32(check, hbuf, 4); \ 641 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ local
|
/third_party/flutter/skia/third_party/externals/zlib/contrib/optimizations/ |
D | inflate.c | 472 hbuf[0] = (unsigned char)(word); \ 473 hbuf[1] = (unsigned char)((word) >> 8); \ 474 check = crc32(check, hbuf, 2); \ 479 hbuf[0] = (unsigned char)(word); \ 480 hbuf[1] = (unsigned char)((word) >> 8); \ 481 hbuf[2] = (unsigned char)((word) >> 16); \ 482 hbuf[3] = (unsigned char)((word) >> 24); \ 483 check = crc32(check, hbuf, 4); \ 652 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ local
|
/third_party/node/deps/zlib/contrib/optimizations/ |
D | inflate.c | 472 hbuf[0] = (unsigned char)(word); \ 473 hbuf[1] = (unsigned char)((word) >> 8); \ 474 check = crc32(check, hbuf, 2); \ 479 hbuf[0] = (unsigned char)(word); \ 480 hbuf[1] = (unsigned char)((word) >> 8); \ 481 hbuf[2] = (unsigned char)((word) >> 16); \ 482 hbuf[3] = (unsigned char)((word) >> 24); \ 483 check = crc32(check, hbuf, 4); \ 652 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ local
|
/third_party/zlib/ |
D | inflate.c | 461 hbuf[0] = (unsigned char)(word); \ 462 hbuf[1] = (unsigned char)((word) >> 8); \ 463 check = crc32(check, hbuf, 2); \ 468 hbuf[0] = (unsigned char)(word); \ 469 hbuf[1] = (unsigned char)((word) >> 8); \ 470 hbuf[2] = (unsigned char)((word) >> 16); \ 471 hbuf[3] = (unsigned char)((word) >> 24); \ 472 check = crc32(check, hbuf, 4); \ 641 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ local
|
/third_party/skia/third_party/externals/zlib/contrib/optimizations/ |
D | inflate.c | 472 hbuf[0] = (unsigned char)(word); \ 473 hbuf[1] = (unsigned char)((word) >> 8); \ 474 check = crc32(check, hbuf, 2); \ 479 hbuf[0] = (unsigned char)(word); \ 480 hbuf[1] = (unsigned char)((word) >> 8); \ 481 hbuf[2] = (unsigned char)((word) >> 16); \ 482 hbuf[3] = (unsigned char)((word) >> 24); \ 483 check = crc32(check, hbuf, 4); \ 652 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ local
|
/third_party/libnl/lib/route/link/ |
D | bridge.c | 412 char hbuf[32]; in bridge_dump_details() local 414 rtnl_link_bridge_hwmode2str(bd->b_hwmode, hbuf, sizeof(hbuf)); in bridge_dump_details() 415 nl_dump(p, "hwmode %s", hbuf); in bridge_dump_details()
|
/third_party/curl/lib/ |
D | ftp.c | 933 char hbuf[NI_MAXHOST]; in ftp_state_use_port() local 1039 conn->scope_id, addr, hbuf, sizeof(hbuf))) { in ftp_state_use_port() 1047 host = hbuf; /* use the hbuf for host name */ in ftp_state_use_port() 1069 r = Curl_inet_ntop(sa->sa_family, &sa6->sin6_addr, hbuf, sizeof(hbuf)); in ftp_state_use_port() 1073 r = 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()
|
/third_party/gstreamer/gstplugins_bad/ext/kate/ |
D | gstkatetiger.c | 656 GstBuffer *hbuf = g_value_peek_pointer (value); in gst_kate_tiger_kate_chain() local 657 gst_buffer_ref (hbuf); in gst_kate_tiger_kate_chain() 660 GST_ELEMENT_CAST (tiger), pad, hbuf, tiger->srcpad, tagpad, in gst_kate_tiger_kate_chain()
|
/third_party/gstreamer/gstplugins_bad/gst/mpegtsmux/ |
D | gstbasetsmux.c | 919 GstBuffer *hbuf; in new_packet_common_init() local 922 hbuf = gst_buffer_new_and_alloc (len); in new_packet_common_init() 923 gst_buffer_fill (hbuf, 0, data, len); in new_packet_common_init() 925 hbuf = gst_buffer_copy (buf); in new_packet_common_init() 930 g_queue_push_tail (&mux->streamheader, hbuf); in new_packet_common_init()
|
/third_party/boost/boost/asio/detail/impl/ |
D | socket_ops.ipp | 3428 char hbuf[8192] = ""; 3430 sptr->family, &hent, hbuf, sizeof(hbuf), hints.ai_flags, ec); 3585 char hbuf[8192] = ""; 3588 &hent, hbuf, sizeof(hbuf), ec);
|
/third_party/boost/libs/asio/include/boost/asio/detail/impl/ |
D | socket_ops.ipp | 3428 char hbuf[8192] = ""; 3430 sptr->family, &hent, hbuf, sizeof(hbuf), hints.ai_flags, ec); 3585 char hbuf[8192] = ""; 3588 &hent, hbuf, sizeof(hbuf), ec);
|
/third_party/python/Modules/ |
D | socketmodule.c | 6564 char hbuf[NI_MAXHOST], pbuf[NI_MAXSERV]; local 6632 hbuf, sizeof(hbuf), pbuf, sizeof(pbuf), flags); 6638 name = sock_decode_hostname(hbuf);
|
D | posixmodule.c | 9827 Py_buffer *hbuf, *tbuf; in os_sendfile_impl() local 9849 if (iov_setup(&(sf.headers), &hbuf, in os_sendfile_impl() 9903 iov_cleanup(sf.headers, hbuf, sf.hdr_cnt); in os_sendfile_impl()
|
/third_party/node/src/ |
D | node_crypto.cc | 4950 ArrayBufferViewContents<char> hbuf(args[offset]); in VerifyFinal() local 4968 ByteSource signature = ByteSource::Foreign(hbuf.data(), hbuf.length()); in VerifyFinal() 4970 signature = ConvertSignatureToDER(pkey, hbuf); in VerifyFinal()
|