HomeSort by relevance Sort by last modified time
    Searched refs:buf_out (Results 1 - 8 of 8) 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 178 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;
elf_compress.c 217 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 == NULL
    [all...]
  /external/libxcam/capi/
xcam_handle.h 77 // buf_out was allocated outside or inside ??
82 * \params[in,out] buf_out output buffer, can be allocated outside or inside,
86 XCamReturn xcam_handle_execute (XCamHandle *handle, XCamVideoBuffer *buf_in, XCamVideoBuffer **buf_out);
xcam_handle.cpp 224 xcam_handle_execute (XCamHandle *handle, XCamVideoBuffer *buf_in, XCamVideoBuffer **buf_out)
230 ERROR, context && buf_in && buf_out, XCAM_RETURN_ERROR_PARAM,
231 "xcam_handle_execute failed, either of handle/buf_in/buf_out can NOT be NULL");
247 if (*buf_out) {
248 output = external_buf_to_drm_buf (*buf_out);
251 "xcam_handle(%s) execute failed, buf_out set but convert to DRM buffer failed.",
262 if (*buf_out == NULL && output.ptr ()) {
268 *buf_out = new_buf;
context_priv.cpp 156 ContextBase::execute (SmartPtr<VideoBuffer> &buf_in, SmartPtr<VideoBuffer> &buf_out)
160 ERROR, buf_out.ptr (), XCAM_RETURN_ERROR_MEM,
161 "context (%s) execute failed, buf_out need set.", get_type_name ());
164 ERROR, !buf_out.ptr (), XCAM_RETURN_ERROR_MEM,
165 "context (%s) execute failed, buf_out need NULL.", get_type_name ());
168 return _handler->execute (buf_in, buf_out);
context_priv.h 68 XCamReturn execute (SmartPtr<VideoBuffer> &buf_in, SmartPtr<VideoBuffer> &buf_out);
  /external/tensorflow/tensorflow/core/util/
mkl_util.h 1213 float* buf_out = (*output)->flat<float>().data(); local
1229 float* buf_out = (*output)->flat<float>().data(); local
    [all...]

Completed in 121 milliseconds