HomeSort by relevance Sort by last modified time
    Searched refs:obuf (Results 1 - 25 of 27) 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...]
url.c 5023 char *obuf = NULL; local
    [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...]
  /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/boringssl/src/crypto/bio/
buffer.c 85 char *obuf; /* the char array */ member in struct:bio_f_buffer_ctx_struct
103 ctx->obuf = (char *)OPENSSL_malloc(DEFAULT_BUFFER_SIZE);
104 if (ctx->obuf == NULL) {
131 OPENSSL_free(ctx->obuf);
225 memcpy(&ctx->obuf[ctx->obuf_off + ctx->obuf_len], in, inl);
233 memcpy(&ctx->obuf[ctx->obuf_off + ctx->obuf_len], in, i);
242 i = BIO_write(b->next_bio, &ctx->obuf[ctx->obuf_off], ctx->obuf_len);
341 p2 = ctx->obuf;
366 if (ctx->obuf != p2) {
367 OPENSSL_free(ctx->obuf);
    [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);
  /ndk/sources/host-tools/make-3.81/
expand.c 526 char *obuf = variable_buffer;
535 variable_buffer = obuf;
549 char *obuf = variable_buffer;
561 variable_buffer = obuf;
520 char *obuf = variable_buffer; local
543 char *obuf = variable_buffer; local
  /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/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);
  /hardware/intel/common/libmix/mix_audio/src/
mixaudio.c 1571 struct snd_sst_buffs obuf = {0}; local
    [all...]
  /external/blktrace/
blktrace.c 242 * ofn, ofd, ofp, obuf & mmap_info are used for output file (optionally).
247 char *obuf; member in struct:io_info
1516 iop->obuf = malloc(size);
1517 if (setvbuf(iop->ofp, iop->obuf, mode, size) < 0) {
    [all...]

Completed in 245 milliseconds

1 2