Searched defs:outbuf (Results 1 - 25 of 80) sorted by relevance

1234

/external/compiler-rt/test/msan/
H A Diconv.cc24 char *outbuf = outbuf_; local
40 res = iconv(cd, 0, 0, &outbuf, &outbytesleft);
43 res = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
/external/libxml2/os400/
H A Dlibxmlmain.c41 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/
H A Drsa.c77 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, ke
[all...]
/external/bzip2/
H A Dunzcrash.c41 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/icu/icu4c/source/common/
H A Dbytestream.cpp29 CheckedArrayByteSink::CheckedArrayByteSink(char* outbuf, int32_t capacity) argument
30 : outbuf_(outbuf), capacity_(capacity < 0 ? 0 : capacity),
/external/curl/lib/
H A Dnon-ascii.c57 char **outbuf)
73 *outbuf = convbuf; /* return the converted buffer */
54 Curl_convert_clone(struct Curl_easy *data, const char *indata, size_t insize, char **outbuf) argument
H A Dstrerror.c817 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/
H A Diculd.c122 char outbuf[100]; local
138 strcpy(outbuf,mend);
139 b=outbuf;
156 char outbuf[100]; local
172 strcpy(outbuf,mend);
173 b=outbuf;
/external/libvpx/libvpx/examples/
H A Dresize_util.c52 uint8_t *inbuf, *outbuf; local
106 outbuf = (uint8_t*)malloc(target_width * target_height * 3 / 2);
109 outbuf_u = outbuf + target_width * target_height;
117 outbuf, target_width, outbuf_u, outbuf_v,
120 fwrite(outbuf, target_width * target_height * 3 / 2, 1, fpout);
128 free(outbuf);
/external/libxml2/os400/iconv/
H A Diconv.c128 char * * outbuf, size_t * outbytesleft)
136 return iconv(*(iconv_t *) cd, inbuf, inbytesleft, outbuf, outbytesleft);
127 Iconv(Iconv_t cd, char * * inbuf, size_t * inbytesleft, char * * outbuf, size_t * outbytesleft) argument
/external/vboot_reference/host/lib/
H A Dhost_key.c73 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);
H A Dhost_signature.c162 * and the stdout of the command is put back into [outbuf].
167 uint8_t* outbuf,
202 n = read(c_to_p[STDIN_FILENO], outbuf, outbufsize);
203 outbuf += n;
165 InvokeExternalSigner(uint64_t size, const uint8_t* inbuf, uint8_t* outbuf, uint64_t outbufsize, const char* pem_file, const char* external_signer) argument
H A Dutil_misc.c45 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/
H A Dfake_ntlm.c52 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[
[all...]
H A Dgetpart.c249 int getpart(char **outbuf, size_t *outlen, argument
280 *outbuf = malloc(outalloc);
281 if(!*outbuf)
283 *(*outbuf) = '\0';
295 error = appenddata(outbuf, outlen, &outalloc, buffer, base64);
329 error = decodedata(outbuf, outlen);
346 error = decodedata(outbuf, outlen);
430 error = appenddata(outbuf, outlen, &outalloc, buffer, base64);
443 free(*outbuf);
444 *outbuf
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_upload_mgr.c160 struct pipe_resource **outbuf,
171 pipe_resource_reference(outbuf, NULL);
206 pipe_resource_reference( outbuf, upload->buffer );
218 struct pipe_resource **outbuf)
222 out_offset, outbuf,
243 struct pipe_resource **outbuf)
267 outbuf);
156 u_upload_alloc( struct u_upload_mgr *upload, unsigned min_out_offset, unsigned size, unsigned *out_offset, struct pipe_resource **outbuf, void **ptr ) argument
213 u_upload_data( struct u_upload_mgr *upload, unsigned min_out_offset, unsigned size, const void *data, unsigned *out_offset, struct pipe_resource **outbuf) argument
237 u_upload_buffer( struct u_upload_mgr *upload, unsigned min_out_offset, unsigned offset, unsigned size, struct pipe_resource *inbuf, unsigned *out_offset, struct pipe_resource **outbuf) argument
/external/toybox/scripts/
H A Dmkflags.c113 char *out, *outbuf = malloc(1024*1024); local
117 if (!(out = outbuf)) return 1;
214 out = outbuf;
216 int i = write(1, outbuf, strlen(outbuf));
/external/vboot_reference/firmware/lib/
H A Dregion-kernel.c190 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/e2fsprogs/e2fsck/
H A Dlogfile.c181 static void *outbuf; variable
193 n = realloc(outbuf, outbufsize + c);
195 outbuf = n;
196 memcpy(((char *)outbuf)+outbufsize, buffer, c);
261 cp = outbuf;
/external/e2fsprogs/misc/
H A Dlogsave.c36 static void *outbuf = 0; variable
108 n = realloc(outbuf, outbufsize + c);
110 outbuf = n;
111 memcpy(((char *)outbuf)+outbufsize, buffer, c);
309 if (outbuf) {
326 write_all(outfd, outbuf, outbufsize);
327 free(outbuf);
/external/eigen/unsupported/test/
H A DFFTW.cpp149 ComplexVector outbuf; local
153 fft.fwd( outbuf , inbuf);
155 VERIFY( 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/icu/icu4c/source/test/intltest/
H A Dstrtest.cpp341 SimpleByteSink(char *outbuf) : fOutbuf(outbuf), fLength(0) {} argument
/external/icu/icu4c/source/test/thaitest/
H A Dthaitest.cpp405 char outbuf[1024]; local
409 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &bom, 1, &status));
416 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &chars[prevbreak],
/external/libedit/src/
H A Dmap.c1124 char outbuf[EL_BUFSIZ]; local
1128 (void) keymacro__decode_str(in, outbuf, sizeof(outbuf), "");
1133 "%s\t->\t" FSTR "\n", outbuf, bp->name);
1250 Char outbuf[EL_BUFSIZ]; local
1351 if ((out = parse__string(outbuf, argv[argc])) == NULL) {
/external/libevent/
H A Dbufferevent_pair.c210 be_pair_outbuf_cb(struct evbuffer *outbuf, argument

Completed in 586 milliseconds

1234