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

  /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/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_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);
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...]
  /external/curl/lib/
base64.c 178 unsigned char obuf[4]; local
228 obuf[0] = (unsigned char) ((ibuf[0] & 0xFC) >> 2);
229 obuf[1] = (unsigned char) (((ibuf[0] & 0x03) << 4) | \
231 obuf[2] = (unsigned char) (((ibuf[1] & 0x0F) << 2) | \
233 obuf[3] = (unsigned char) (ibuf[2] & 0x3F);
238 table64[obuf[0]],
239 table64[obuf[1]]);
244 table64[obuf[0]],
245 table64[obuf[1]],
246 table64[obuf[2]])
    [all...]
url.c 5229 char *obuf = NULL; 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/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/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/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...]
  /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);
  /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/openssh/
kex.c 996 u_int8_t hbuf[2048], sbuf[2048], obuf[SSH_DIGEST_MAX_LENGTH]; local
1018 ssh_digest_final(hashctx, obuf, sizeof(obuf)) != 0) {
1022 memcpy(id, obuf, ssh_digest_bytes(SSH_DIGEST_MD5));
1028 explicit_bzero(obuf, sizeof(obuf));
servconf.c 2073 char *cp, *obuf, *cbuf; local
    [all...]
  /external/openssh/regress/
netcat.c 1055 unsigned char obuf[4]; local
1065 obuf[0] = IAC;
1068 obuf[1] = DONT;
1070 obuf[1] = WONT;
1075 obuf[2] = *p;
1076 if (atomicio(vwrite, nfd, obuf, 3) != 3)
    [all...]
  /hardware/intel/common/libmix/mix_audio/src/
mixaudio.c 1571 struct snd_sst_buffs obuf = {0}; local
    [all...]
  /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/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...]
  /toolchain/binutils/binutils-2.25/opcodes/
i386-dis.c 3063 static char obuf[100]; variable
    [all...]

Completed in 4313 milliseconds