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

  /external/boringssl/src/crypto/x509/
a_sign.c 85 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;
126 OPENSSL_free(buf_out);
  /external/elfutils/libelf/
elf_compress_gnu.c 181 void *buf_out = __libelf_decompress (buf_in, size_in, size); local
182 if (buf_out == NULL)
199 __libelf_reset_rawdata (scn, buf_out, size, sh_addralign,
202 scn->zdata_base = buf_out;
elf_compress.c 228 void *buf_out = malloc (size_out ?: 1); local
229 if (unlikely (buf_out == NULL))
239 .next_out = buf_out,
245 z.next_out = buf_out + (size_out - z.avail_out);
259 free (buf_out);
264 return buf_out;
302 void *buf_out = __libelf_decompress (buf_in, size_in, chdr.ch_size); local
305 return buf_out;
499 void *buf_out = __libelf_decompress_elf (scn, &size_out, &addralign); local
500 if (buf_out == NULL
    [all...]
  /external/u-boot/common/
console.c 461 char buf_out[CONFIG_PRE_CON_BUF_SZ + 1]; local
469 buf_out[out++] = buf_in[CIRC_BUF_IDX(in++)];
472 buf_out[out] = 0;
476 puts(buf_out);
479 console_puts_noserial(stdout, buf_out);
  /external/tensorflow/tensorflow/core/util/
mkl_util.h 1385 float* buf_out = (*output)->flat<float>().data(); local
1401 float* buf_out = (*output)->flat<float>().data(); local
    [all...]

Completed in 2144 milliseconds