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

1 2

  /external/curl/lib/
base64.c 178 unsigned char obuf[4]; local
223 obuf[0] = (unsigned char) ((ibuf[0] & 0xFC) >> 2);
224 obuf[1] = (unsigned char) (((ibuf[0] & 0x03) << 4) | \
226 obuf[2] = (unsigned char) (((ibuf[1] & 0x0F) << 2) | \
228 obuf[3] = (unsigned char) (ibuf[2] & 0x3F);
233 table64[obuf[0]],
234 table64[obuf[1]]);
239 table64[obuf[0]],
240 table64[obuf[1]],
241 table64[obuf[2]])
    [all...]
  /external/iptables/utils/
nfnl_osf.c 150 static void xt_osf_parse_opt(struct xt_osf_opt *opt, __u16 *optnum, char *obuf, int olen)
156 ptr = &obuf[0];
162 switch (obuf[i]) {
165 ptr = xt_osf_strchr(&obuf[i], OPTDEL);
169 i += (int)(ptr - &obuf[i]);
175 ptr = xt_osf_strchr(&obuf[i], OPTDEL);
179 i += (int)(ptr - &obuf[i]);
185 ptr = xt_osf_strchr(&obuf[i], OPTDEL);
189 i += (int)(ptr - &obuf[i]);
195 ptr = xt_osf_strchr(&obuf[i], OPTDEL)
273 char obuf[MAXOPTSTRLEN]; local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
ns_ntoa.c 49 static char obuf[40]; local
58 sprintf(obuf, "%x", (UINT32)ntohl(net.long_e));
59 cp = spectHex(obuf);
79 return (obuf);
ns_print.c 135 const char *obuf = buf; local
585 return ((int)(buf - obuf));
615 return ((int)(buf - obuf));
  /external/webrtc/talk/session/media/
yuvscaler_unittest.cc 112 uint8_t* obuf = ALIGNP(obuffer.get(), kAlignment) + memoffset; local
124 memset(obuf, 100, osize); // Output set to something wrong for now.
130 FlushCache(obuf, osize);
144 FlushCache(obuf, osize);
149 EXPECT_EQ(0, libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh,
165 DumpPlanarYuvTestImage(test_name, obuf, ow, oh);
168 double sse = cricket::ComputeSumSquareError(obuf, xbuf, osize);
196 ALIGN16(uint8_t obuf[I420_SIZE(ow, oh)]);
201 libyuv::ScaleOffset(ibuf, iw, ih, obuf, ow, oh, 0, false);
203 if (dump_) DumpPlanarYuvTestImage("TestCopy", obuf, ow, oh)
216 uint8_t* obuf = ALIGNP(obuffer.get(), kAlignment); local
    [all...]
planarfunctions_unittest.cc 448 const uint8_t* obuf,
451 double sse = cricket::ComputeSumSquareError(ibuf, obuf, osize);
455 << " First Diff Byte: " << FindDiff(ibuf, obuf, osize);
469 void DumpArgbImage(const uint8_t* obuf, int width, int height) {
470 DumpPlanarArgbTestImage(GetTestName(), obuf, width, height); local
474 void DumpYuvImage(const uint8_t* obuf, int width, int height) {
475 DumpPlanarYuvTestImage(GetTestName(), obuf, width, height); local
    [all...]
  /external/iproute2/ip/
ipmroute.c 63 char obuf[256]; local
126 len = snprintf(obuf, sizeof(obuf),
132 len = sprintf(obuf, "(unknown, ");
134 snprintf(obuf + len, sizeof(obuf) - len,
140 snprintf(obuf + len, sizeof(obuf) - len, "unknown) ");
142 fprintf(fp, "%-32s Iif: ", obuf);
  /external/wpa_supplicant_8/src/tls/
pkcs8.c 25 char obuf[80]; local
87 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
88 wpa_printf(MSG_DEBUG, "PKCS #8: algorithm=%s", obuf);
99 "algorithm %s", obuf);
pkcs5.c 96 char obuf[80]; local
138 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
140 obuf);
144 obuf);
242 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
244 obuf);
250 obuf);
283 char obuf[80] local
    [all...]
tlsv1_cred.c 448 char obuf[80]; local
476 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
477 wpa_printf(MSG_DEBUG, "PKCS #12: certId %s", obuf);
482 obuf);
582 char obuf[80]; local
596 asn1_oid_to_str(&a_oid, obuf, sizeof(obuf));
597 wpa_printf(MSG_DEBUG, "PKCS #12: attrId %s", obuf);
627 char obuf[80] local
    [all...]
tlsv1_client_ocsp.c 686 char obuf[80]; local
765 asn1_oid_to_str(&oid, obuf, sizeof(obuf));
766 wpa_printf(MSG_DEBUG, "OCSP: responseType %s", obuf);
  /external/vboot_reference/utility/
bmpblk_util.c 99 void *obuf; local
123 obuf = malloc(osize);
124 if (!obuf) {
132 r = EfiDecompress(ibuf, isize, obuf, osize, sbuf, ssize);
135 free(obuf);
141 return obuf;
148 void *obuf; local
157 obuf = malloc(osize);
158 if (!obuf) {
169 free(obuf);
    [all...]
efidecompress.c 1093 uint8_t *obuf = malloc(osize); local
1094 if (!obuf) {
1103 r = TianoDecompress(ibuf, isize, obuf, osize, sbuf, ssize);
1110 r = EfiDecompress(ibuf, isize, obuf, osize, sbuf, ssize);
1132 if (1 != fwrite(obuf, osize, 1, ofp)) {
1147 free(obuf);
eficompress.c 1674 uint8_t *obuf = malloc(osize); local
1675 if (!obuf) {
1684 EFI_STATUS r = EfiCompress(ibuf, isize, obuf, &osize);
1705 if (1 != fwrite(obuf, osize, 1, ofp)) {
1720 free(obuf);
  /external/wpa_supplicant_8/src/common/
wpa_helpers.h 16 int get_wpa_status(const char *ifname, const char *field, char *obuf,
wpa_helpers.c 163 int get_wpa_status(const char *ifname, const char *field, char *obuf,
204 memcpy(obuf, pos, end - pos);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
ppp-comp.h 81 unsigned char *obuf, int isize, int osize);
102 unsigned char *obuf, int osize);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
ppp-comp.h 81 unsigned char *obuf, int isize, int osize);
102 unsigned char *obuf, int osize);
  /external/netcat/
netcat.c 825 unsigned char obuf[4]; local
835 obuf[0] = IAC;
838 obuf[1] = DONT;
840 obuf[1] = WONT;
845 obuf[2] = *p;
846 if (atomicio(vwrite, nfd, obuf, 3) != 3)
  /external/ltp/tools/netpipe-2.4/
TCP.c 119 static int readFully(int fd, void *obuf, int len)
122 char *buf = (char *)obuf;
  /external/ltp/tools/netpipe-2.4-ipv6/
TCP.c 146 static int readFully(int fd, void *obuf, int len)
149 char *buf = (char *)obuf;
  /external/openssh/
kex.c 872 u_int8_t hbuf[2048], sbuf[2048], obuf[SSH_DIGEST_MAX_LENGTH]; local
894 ssh_digest_final(hashctx, obuf, sizeof(obuf)) != 0) {
898 memcpy(id, obuf, ssh_digest_bytes(SSH_DIGEST_MD5));
904 explicit_bzero(obuf, sizeof(obuf));
  /external/bzip2/
bzip2.c 437 UChar obuf[5000]; local
462 nread = BZ2_bzRead ( &bzerr, bzf, obuf, 5000 );
465 fwrite ( obuf, sizeof(UChar), nread, stream );
509 nread = fread ( obuf, sizeof(UChar), 5000, zStream );
511 if (nread > 0) fwrite ( obuf, sizeof(UChar), nread, stream );
558 UChar obuf[5000]; local
580 nread = BZ2_bzRead ( &bzerr, bzf, obuf, 5000 );
    [all...]
  /external/c-ares/
ares_init.c 545 static int get_res_nt(HKEY hKey, const char *subkey, char **obuf)
554 *obuf = malloc(size+1);
555 if (!*obuf)
559 (LPBYTE)*obuf, &size) != ERROR_SUCCESS)
561 free(*obuf);
566 free(*obuf);
572 static int get_res_interfaces_nt(HKEY hKey, const char *subkey, char **obuf)
588 rc = get_res_nt(hVal, subkey, obuf);
    [all...]
  /bionic/libc/dns/nameser/
ns_print.c 114 const char *obuf = buf; local
1058 _DIAGASSERT(__type_fit(int, buf - obuf));
1059 return (int)(buf - obuf);
1090 _DIAGASSERT(__type_fit(int, buf - obuf));
1091 return (int)(buf - obuf);

Completed in 2778 milliseconds

1 2