HomeSort by relevance Sort by last modified time
    Searched defs:outbuf (Results 1 - 25 of 106) sorted by null

1 2 3 4 5

  /external/compiler-rt/test/msan/
iconv.cc 24 char *outbuf = outbuf_; local
40 res = iconv(cd, 0, 0, &outbuf, &outbytesleft);
43 res = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
  /external/libxml2/os400/
libxmlmain.c 41 char * outbuf; local
61 outbuf = dummybuf;
64 &inbuf, &inbytesleft, &outbuf, &outbytesleft);
65 bytecount += outbuf - dummybuf;
68 iconv(cd, NULL, &inbytesleft, &outbuf, &outbytesleft);
75 outbuf = (char *) (argv + argc + 1);
79 argv[i] = outbuf;
82 iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
83 iconv(cd, NULL, &inbytesleft, &outbuf, &outbytesleft);
  /external/openssh/
rsa.c 77 u_char *inbuf = NULL, *outbuf = NULL; local
84 if ((outbuf = malloc(olen)) == NULL) {
96 if ((len = RSA_public_encrypt(ilen, inbuf, outbuf, key,
102 if (BN_bin2bn(outbuf, len, out) == NULL) {
109 if (outbuf != NULL) {
110 explicit_bzero(outbuf, olen);
111 free(outbuf);
123 u_char *inbuf = NULL, *outbuf = NULL; local
127 if ((outbuf = malloc(olen)) == NULL) {
139 if ((len = RSA_private_decrypt(ilen, inbuf, outbuf, key
    [all...]
  /external/bzip2/
unzcrash.c 41 uchar outbuf[M_BLOCK_OUT]; variable
107 outbuf, &nOut, zbuf, nZ, 0, 0 );
118 if (inbuf[i] != outbuf[i]) {
132 if (inbuf[i] != outbuf[i]) {
  /external/syslinux/com32/libupload/
upload_backend.h 28 char *outbuf; member in struct:upload_backend
  /external/vboot_reference/firmware/lib/
region-kernel.c 190 char outbuf[OUTBUF_LEN]; local
192 *outbuf = '\0';
193 used += StrnAppend(outbuf + used, "gbb.flags is nonzero: 0x",
195 used += Uint64ToString(outbuf + used, OUTBUF_LEN - used,
197 used += StrnAppend(outbuf + used, "\n", OUTBUF_LEN - used);
198 (void)VbExDisplayDebugInfo(outbuf);
  /external/curl/lib/
strerror.c 817 char *outbuf; local
822 outbuf = conn->syserr_buf;
824 *outbuf = '\0';
1079 strncpy(outbuf, txt, outmax);
1081 snprintf(outbuf, outmax,
1122 snprintf(outbuf, outmax, "%s - %s", str, msg);
1124 strncpy(outbuf, str, outmax);
1137 strncpy(outbuf, txt, outmax);
1141 outbuf[outmax] = '\0';
1143 return outbuf;
    [all...]
  /external/icu/icu4c/as_is/os400/
iculd.c 124 char outbuf[100]; local
140 strcpy(outbuf,mend);
141 b=outbuf;
158 char outbuf[100]; local
174 strcpy(outbuf,mend);
175 b=outbuf;
  /external/libvpx/libvpx/examples/
resize_util.c 50 uint8_t *inbuf, *outbuf; local
102 outbuf = (uint8_t *)malloc(target_width * target_height * 3 / 2);
105 outbuf_u = outbuf + target_width * target_height;
111 width, outbuf, target_width, outbuf_u, outbuf_v,
113 fwrite(outbuf, target_width * target_height * 3 / 2, 1, fpout);
121 free(outbuf);
  /external/toybox/scripts/
mkflags.c 138 char *out, *outbuf = malloc(1024*1024); local
142 if (!(out = outbuf)) return 1;
236 out = outbuf;
238 int i = write(1, outbuf, strlen(outbuf));
  /external/vboot_reference/host/lib/
host_key.c 73 uint8_t *outbuf = 0; local
77 buflen = i2d_RSAPrivateKey(key->rsa_private_key, &outbuf);
86 free(outbuf);
93 free(outbuf);
97 if (1 != fwrite(outbuf, buflen, 1, f)) {
101 free(outbuf);
105 free(outbuf);
util_misc.c 45 uint32_t *outbuf; local
52 outbuf = malloc(bufsize);
53 if (!outbuf)
56 *keyb_data = (uint8_t *)outbuf;
59 *outbuf++ = nwords;
91 *outbuf++ = n0invout;
109 *outbuf++ = nout;
120 *outbuf++ = rrout;
125 outbuf = NULL;
129 free(outbuf);
    [all...]
  /external/curl/tests/server/
fake_ntlm.c 52 char *outbuf; local
74 outbuf = malloc(outsize);
75 if(!outbuf)
79 snprintf(&outbuf[0], outsize, "%s", NOTHING_STR);
80 return outbuf;
87 newbuf = realloc(outbuf, newsize);
89 free(outbuf);
92 outbuf = newbuf;
97 outbuf[o] = inbuf[i];
101 snprintf(&outbuf[o], outsize - o, HEX_FMT_STR, inbuf[i])
    [all...]
  /external/e2fsprogs/misc/
logsave.c 37 static void *outbuf = 0; variable
109 n = realloc(outbuf, outbufsize + c);
111 outbuf = n;
112 memcpy(((char *)outbuf)+outbufsize, buffer, c);
310 if (outbuf) {
327 write_all(outfd, outbuf, outbufsize);
328 free(outbuf);
  /external/eigen/unsupported/test/
FFTW.cpp 149 ComplexVector outbuf; local
153 fft.fwd( outbuf , inbuf);
155 VERIFY( T(fft_rmse(outbuf,inbuf)) < test_precision<T>() );// gross check
156 fft.inv( buf3 , outbuf);
163 fft.inv( buf4 , outbuf);
170 fft.inv( buf3 , outbuf);
  /external/libedit/src/
map.c 1124 char outbuf[EL_BUFSIZ]; local
1250 Char outbuf[EL_BUFSIZ]; local
    [all...]
  /external/e2fsprogs/e2fsck/
logfile.c 184 static void *outbuf; variable
196 n = realloc(outbuf, outbufsize + c);
198 outbuf = n;
199 memcpy(((char *)outbuf)+outbufsize, buffer, c);
266 cp = outbuf;
  /external/icu/icu4c/source/test/thaitest/
thaitest.cpp 407 char outbuf[1024]; local
411 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &bom, 1, &status));
418 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &chars[prevbreak],
  /external/ipsec-tools/src/racoon/
gssapi.c 523 vchar_t *outbuf; local
561 if (gssapi_gss2vmbuf(hash_out, &outbuf) < 0) {
573 return outbuf;
583 vchar_t *outbuf; local
606 if (gssapi_gss2vmbuf(hash_out, &outbuf) < 0) {
618 return outbuf;
  /external/libjpeg-turbo/
bmp.c 231 unsigned char *outbuf; int row; local
233 if(bottomup) outbuf=&(*buf)[((*h)-row-1)*(*w)*dstps];
234 else outbuf=&(*buf)[row*(*w)*dstps];
235 pixelconvert(src->buffer[i], srcpf, 0, outbuf, dstpf, bottomup, *w,
  /external/libopus/tests/
test_opus_decode.c 65 short *outbuf; local
74 outbuf=&outbuf_int[8*2];
109 out_samples = opus_decode(dec[t], 0, 0, outbuf, 120/factor, fec);
115 out_samples = opus_decode(dec[t], 0, 0, outbuf, 120/factor+2, fec);
119 out_samples = opus_decode(dec[t], 0, -1, outbuf, 120/factor, fec);
121 out_samples = opus_decode(dec[t], 0, 1, outbuf, 120/factor, fec);
123 out_samples = opus_decode(dec[t], 0, 10, outbuf, 120/factor, fec);
125 out_samples = opus_decode(dec[t], 0, fast_rand(), outbuf, 120/factor, fec);
131 out_samples = opus_decode(dec[t], packet, 0, outbuf, 120/factor, fec);
135 outbuf[0]=32749
    [all...]
  /external/ltp/testcases/kernel/fs/dmapi/
dm_test.c 495 char outbuf[256], *pch; local
497 memset(outbuf, 0, sizeof(outbuf));
499 for (i = 0, pch = outbuf; i < len; i++, pch += 3)
502 DMLOG_PRINT(DMLVL_DEBUG, "Handle: %s\n", outbuf);
  /external/selinux/libselinux/src/
booleans.c 376 char outbuf[BUFSIZ]; local
428 snprintf(outbuf, sizeof(outbuf),
431 len = strlen(outbuf);
433 if (write(fd, outbuf, len) !=
441 snprintf(outbuf, sizeof(outbuf),
443 len = strlen(outbuf);
444 if (write(fd, outbuf, len) != len)
456 snprintf(outbuf, sizeof(outbuf), "%s=%d\n"
    [all...]
  /external/selinux/policycoreutils/run_init/
open_init_pty.c 221 struct ring_buffer outbuf; local
223 rb_init(&outbuf, outbuf_mem, sizeof(outbuf_mem));
299 if (rb_space(&outbuf) > 0 && err_n_rpty < MAXRETR) {
314 if (!rb_isempty(&outbuf) && err_n_stdout < MAXRETR) {
344 ssize_t n = rb_write(&outbuf, STDOUT_FILENO);
389 ssize_t n = rb_read(&outbuf, pty_master);
405 || !(rb_isempty(&outbuf) || err_n_stdout >= MAXRETR));
408 fprintf(stderr, "inbuf: %u bytes left, outbuf: %u bytes left\n", inbuf.count, outbuf.count);
  /external/vboot_reference/futility/
cmd_gbb_utility.c 366 uint8_t *outbuf = NULL; local
538 outbuf = (uint8_t *) malloc(filesize);
539 if (!outbuf) {
547 /* Switch pointers to outbuf */
548 memcpy(outbuf, inbuf, filesize);
549 gbb = FindGbbHeader(outbuf, filesize);
552 "INTERNAL ERROR: No GBB found in outbuf\n");
604 outfile, outbuf, filesize);
619 outbuf = create_gbb(opt_create, &filesize);
620 if (!outbuf) {
    [all...]

Completed in 414 milliseconds

1 2 3 4 5