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

/external/boringssl/src/crypto/x509/
H A Da_sign.c88 unsigned char *buf_in=NULL,*buf_out=NULL; local
105 buf_out=OPENSSL_malloc((unsigned int)outl);
106 if ((buf_in == NULL) || (buf_out == NULL))
114 || !EVP_DigestSignFinal(ctx, buf_out, &outl))
121 signature->data=buf_out;
122 buf_out=NULL;
133 if (buf_out != NULL)
134 { OPENSSL_cleanse((char *)buf_out,outll); OPENSSL_free(buf_out); }
/external/elfutils/libelf/
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;
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...]

Completed in 106 milliseconds