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

  /external/clearsilver/mod_ecs/
mod_ecs.c 101 HEADER_BUF hbuf; member in struct:wrap_data
131 HEADER_BUF *hbuf = (HEADER_BUF *)h; local
135 if (hbuf->loc > hbuf->len)
138 ret = buf_getline (hbuf->buf + hbuf->loc, hbuf->len - hbuf->loc, buf, len, &(hbuf->nonl));
139 hbuf->loc += ret
    [all...]
  /external/libvpx/vpx_scale/include/generic/
vpxscale_arbitrary.h 42 unsigned char *hbuf; member in struct:__anon5331
  /external/libvpx/vpx_scale/dm642/
bicubic_scaler_c64.c 27 unsigned char *restrict hbuf; local
59 hbuf = g_b_scaler.hbuf;
116 _amem4(&hbuf[w]) = _spacku4(s2, s1);
120 hbuf = ip;
131 *op_w++ = hbuf[0];
146 hbuf_both = _mem4_const(&hbuf[lw-1]);
160 sum = hbuf[lw];
  /external/dropbear/
dbutil.c 396 char hbuf[NI_MAXHOST], sbuf[NI_MAXSERV]; local
417 ret = getnameinfo((struct sockaddr*)addr, len, hbuf, sizeof(hbuf),
427 len = strlen(hbuf) + 2 + strlen(sbuf);
429 snprintf(retstring, len, "%s:%s", hbuf, sbuf);
431 retstring = m_strdup(hbuf);
442 char hbuf[NI_MAXHOST]; local
467 ret = getnameinfo((struct sockaddr*)addr, len, hbuf, sizeof(hbuf),
477 return m_strdup(hbuf);
    [all...]
  /external/libvpx/vpx_scale/generic/
bicubic_scaler.c 365 g_b_scaler.hbuf = g_hbuf;
491 unsigned char *RESTRICT hbuf; local
520 hbuf = g_b_scaler.hbuf;
529 hbuf[w] = temp_sum >> 12;
533 hbuf = ip;
548 temp_sum = c_w[phase_offset_w*4] * hbuf[lw - 1];
549 temp_sum += c_w[phase_offset_w*4+1] * hbuf[lw];
550 temp_sum += c_w[phase_offset_w*4+2] * hbuf[lw + 1];
551 temp_sum += c_w[phase_offset_w*4+3] * hbuf[lw + 2]
    [all...]
  /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...]
  /bionic/libc/netbsd/resolv/
res_send.c 1088 char hbuf[NI_MAXHOST]; local
1094 if (getnameinfo(address, (socklen_t)alen, hbuf, sizeof(hbuf),
1096 strncpy(hbuf, "?", sizeof(hbuf) - 1);
1097 hbuf[sizeof(hbuf) - 1] = '\0';
1102 string, hbuf, sbuf, strerror(error));
  /external/tcpdump/
print-icmp6.c 1158 char hbuf[NI_MAXHOST]; local
1226 if (inet_ntop(AF_INET6, &match->rpm_prefix, hbuf, sizeof(hbuf)))
1227 printf(",%s/%u", hbuf, match->rpm_matchlen);
    [all...]
  /external/chromium/third_party/zlib/
inflate.c 25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
387 hbuf[0] = (unsigned char)(word); \
388 hbuf[1] = (unsigned char)((word) >> 8); \
389 check = crc32(check, hbuf, 2); \
394 hbuf[0] = (unsigned char)(word); \
395 hbuf[1] = (unsigned char)((word) >> 8); \
396 hbuf[2] = (unsigned char)((word) >> 16); \
397 hbuf[3] = (unsigned char)((word) >> 24); \
398 check = crc32(check, hbuf, 4); \
572 unsigned char hbuf[4]; /* buffer for gzip header crc calculation * local
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.c 25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
387 hbuf[0] = (unsigned char)(word); \
388 hbuf[1] = (unsigned char)((word) >> 8); \
389 check = crc32(check, hbuf, 2); \
394 hbuf[0] = (unsigned char)(word); \
395 hbuf[1] = (unsigned char)((word) >> 8); \
396 hbuf[2] = (unsigned char)((word) >> 16); \
397 hbuf[3] = (unsigned char)((word) >> 24); \
398 check = crc32(check, hbuf, 4); \
572 unsigned char hbuf[4]; /* buffer for gzip header crc calculation * local
    [all...]
  /external/zlib/
inflate.c 25 * - 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[4]; /* buffer for gzip header crc calculation * local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/X11/
Xos_r.h 511 char hbuf[X_LINE_MAX]; member in struct:__anon13436
519 gethostbyname_r((h),&(hp).hent,(hp).hbuf,sizeof((hp).hbuf),&(hp).herr)
521 gethostbyaddr_r((a),(al),(t),&(hp).hent,(hp).hbuf,sizeof((hp).hbuf),&(hp).herr)
    [all...]

Completed in 2295 milliseconds