HomeSort by relevance Sort by last modified time
    Searched defs:hbuf (Results 1 - 22 of 22) sorted by null

  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_AOC.h 34 AKFVEC hbuf[AKFS_HBUF_SIZE]; member in struct:_AKFS_AOC_VAR
  /hardware/bsp/intel/peripheral/libupm/src/adis16448/
adis16448.cxx 181 uint8_t hbuf[2]; //Allocate write buffer local
182 memset(hbuf, 0, sizeof(uint8_t)*2); //Fill high buffer with 0's
183 hbuf[0] = (highWord >> 8);
184 hbuf[1] = (highWord);
185 mraa_spi_write_buf(_spi, hbuf, 2); //Write the buffer to the SPI port
  /system/core/toolbox/upstream-netbsd/bin/dd/
misc.c 196 char hbuf[7], nbuf[32]; local
224 if (humanize_number(hbuf, sizeof(hbuf),
228 ADDS(hbuf);
236 if (humanize_number(hbuf, sizeof(hbuf),
240 ADDS(hbuf); ADDS("/sec");
  /system/netd/server/
ResolverController.cpp 115 char hbuf[NI_MAXHOST]; local
117 sizeof(res_servers[i]), hbuf, sizeof(hbuf), nullptr, 0, NI_NUMERICHOST);
120 server_str.assign(hbuf);
  /external/ipsec-tools/src/racoon/
isakmp_quick.c 316 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/opencv3/3rdparty/zlib/
inflate.c 25 * - 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[4]; /* buffer for gzip header crc calculation * local
    [all...]
  /external/pdfium/third_party/zlib_v128/
inflate.c 25 * - 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[4]; /* buffer for gzip header crc calculation * local
    [all...]
  /external/toybox/toys/pending/
arp.c 188 char hbuf[NI_MAXHOST] = {0,}, sbuf[NI_MAXSERV] = {0,}; local
192 if (!(status = getnameinfo(sa, len, hbuf, sizeof(hbuf), sbuf,
194 strcpy(toybuf, hbuf);
tcpsvd.c 75 char hbuf[NI_MAXHOST] = {0,}; local
80 if (!(status = getnameinfo(sock, len, hbuf, sizeof(hbuf), sbuf,
82 if (flags & NI_NUMERICSERV) return xmprintf("%s:%s",hbuf, sbuf);
83 return xmprintf("%s",hbuf);
netstat.c 209 char hbuf[NI_MAXHOST] = {0,}, sbuf[NI_MAXSERV] = {0,}; local
218 if (!getnameinfo(rp->ai_addr, sock_len, hbuf, sizeof(hbuf), sbuf,
225 if (*hbuf) {
227 memcpy(ip, hbuf, (ADDR_LEN - plen - 2));
  /external/zlib/src/
inflate.c 25 * - 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[4]; /* buffer for gzip header crc calculation * local
    [all...]
  /external/iputils/
tracepath6.c 210 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);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xos_r.h 472 char hbuf[X_LINE_MAX]; member in struct:__anon36509
480 gethostbyname_r((h),&(hp).hent,(hp).hbuf,sizeof((hp).hbuf),&(hp).herr)
482 gethostbyaddr_r((a),(al),(t),&(hp).hent,(hp).hbuf,sizeof((hp).hbuf),&(hp).herr)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xos_r.h 472 char hbuf[X_LINE_MAX]; member in struct:__anon38372
480 gethostbyname_r((h),&(hp).hent,(hp).hbuf,sizeof((hp).hbuf),&(hp).herr)
482 gethostbyaddr_r((a),(al),(t),&(hp).hent,(hp).hbuf,sizeof((hp).hbuf),&(hp).herr)
    [all...]
  /bionic/libc/dns/resolv/
res_send.c 1321 char hbuf[NI_MAXHOST]; local
    [all...]
  /bionic/libc/dns/net/
gethnamaddr.c 593 android_read_hostent(FILE* proxy, struct hostent* hp, char* hbuf, size_t hbuflen, int *he)
612 char *ptr = hbuf;
613 char *hbuf_end = hbuf + hbuflen;
704 char hbuf[MAXHOSTNAMELEN]; local
739 hbuf, sizeof(hbuf))))
817 gethostbyname_internal(const char *name, int af, res_state res, struct hostent *hp, char *hbuf,
825 return gethostbyname_internal_real(name, af, res, hp, hbuf, hbuflen, errorp);
845 struct hostent* result = android_read_hostent(proxy, hp, hbuf, hbuflen, errorp);
925 struct hostent *hp, char *hbuf, size_t hbuflen, int *he
    [all...]
  /external/curl/lib/
ftp.c 979 char hbuf[NI_MAXHOST]; local
    [all...]
  /external/dhcpcd-6.8.2/
dhcp.c 727 char hbuf[HOSTNAME_MAX_LEN + 1]; local
878 hostname = get_hostname(hbuf, sizeof(hbuf),
    [all...]
dhcp6.c 523 char hbuf[HOSTNAME_MAX_LEN + 1]; local
546 hostname = get_hostname(hbuf, sizeof(hbuf),
    [all...]
  /libcore/ojluni/src/main/java/java/io/
ObjectInputStream.java 2382 private final byte[] hbuf = new byte[MAX_HEADER_SIZE]; field in class:ObjectInputStream.BlockDataInputStream
    [all...]
ObjectOutputStream.java 1788 private final byte[] hbuf = new byte[MAX_HEADER_SIZE]; field in class:ObjectOutputStream.BlockDataOutputStream
    [all...]
  /external/tcpdump/
print-icmp6.c 1838 char hbuf[NI_MAXHOST]; local
    [all...]

Completed in 738 milliseconds