HomeSort by relevance Sort by last modified time
    Searched refs:hbuf (Results 1 - 25 of 37) sorted by null

1 2

  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_AOC.h 34 AKFVEC hbuf[AKFS_HBUF_SIZE]; member in struct:_AKFS_AOC_VAR
AKFS_AOC.c 248 haocv->hbuf[AKFS_HBUF_SIZE-i] = haocv->hbuf[AKFS_HBUF_SIZE-i-1];
250 haocv->hbuf[0] = *hdata;
255 if(CheckInitFvec(&haocv->hbuf[i-1]) == 0){
265 Get4points(haocv->hbuf, num, fourpoints);
288 /* clear hbuf */
291 haocv->hbuf[i].v[j]= AKFS_FMAX;
323 haocv->hbuf[i].v[j]= AKFS_FMAX;
  /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");
  /external/libvpx/libvpx/vp9/encoder/arm/neon/
vp9_avg_neon.c 53 void vp9_int_pro_row_neon(int16_t hbuf[16], uint8_t const *ref,
101 vst1q_s16(hbuf, vreinterpretq_s16_u16(vec_sum_lo));
102 hbuf += 8;
103 vst1q_s16(hbuf, vreinterpretq_s16_u16(vec_sum_hi));
  /external/libvpx/libvpx/vp9/encoder/
vp9_avg.c 132 void vp9_int_pro_row_c(int16_t hbuf[16], uint8_t const *ref,
138 hbuf[idx] = 0;
139 // hbuf[idx]: 14 bit, dynamic range [0, 16320].
141 hbuf[idx] += ref[i * ref_stride];
142 // hbuf[idx]: 9 bit, dynamic range [0, 510].
143 hbuf[idx] /= norm_factor;
  /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);
  /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));
  /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/libvpx/config/arm-neon/
vp9_rtcd.h 92 void vp9_int_pro_row_c(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
93 void vp9_int_pro_row_neon(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
  /external/libvpx/config/arm64/
vp9_rtcd.h 92 void vp9_int_pro_row_c(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
93 void vp9_int_pro_row_neon(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
  /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/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...]
  /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/libvpx/config/arm/
vp9_rtcd.h 86 void vp9_int_pro_row_c(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
  /external/libvpx/config/generic/
vp9_rtcd.h 86 void vp9_int_pro_row_c(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
  /bionic/libc/dns/resolv/
res_send.c 1321 char hbuf[NI_MAXHOST]; local
    [all...]
  /external/libvpx/config/x86/
vp9_rtcd.h 103 void vp9_int_pro_row_c(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
104 void vp9_int_pro_row_sse2(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
  /external/libvpx/config/x86_64/
vp9_rtcd.h 104 void vp9_int_pro_row_c(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
105 void vp9_int_pro_row_sse2(int16_t *hbuf, uint8_t const *ref, const int ref_stride, const int height);
  /libcore/ojluni/src/main/java/java/io/
ObjectOutputStream.java 1788 private final byte[] hbuf = new byte[MAX_HEADER_SIZE]; field in class:ObjectOutputStream.BlockDataOutputStream
    [all...]
  /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:__anon37629
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...]

Completed in 479 milliseconds

1 2