Searched refs:buf_out (Results 1 - 3 of 3) sorted by path

/external/boringssl/src/crypto/x509/
H A Da_sign.c85 unsigned char *buf_in = NULL, *buf_out = NULL; local
100 buf_out = OPENSSL_malloc((unsigned int)outl);
101 if ((buf_in == NULL) || (buf_out == NULL)) {
107 if (!EVP_DigestSign(ctx, buf_out, &outl, buf_in, inl)) {
114 signature->data = buf_out;
115 buf_out = NULL;
129 if (buf_out != NULL) {
130 OPENSSL_cleanse((char *)buf_out, outll);
131 OPENSSL_free(buf_out);
/external/elfutils/libelf/
H A Delf_compress.c217 void *buf_out = malloc (size_out); local
218 if (unlikely (buf_out == NULL))
228 .next_out = buf_out,
234 z.next_out = buf_out + (size_out - z.avail_out);
248 free (buf_out);
253 return buf_out;
291 void *buf_out = __libelf_decompress (buf_in, size_in, chdr.ch_size); local
294 return buf_out;
479 void *buf_out = __libelf_decompress_elf (scn, &size_out, &addralign); local
480 if (buf_out
[all...]
H A Delf_compress_gnu.c178 void *buf_out = __libelf_decompress (buf_in, size_in, size); local
179 if (buf_out == NULL)
196 __libelf_reset_rawdata (scn, buf_out, size, sh_addralign,
199 scn->zdata_base = buf_out;

Completed in 218 milliseconds