/external/boringssl/src/crypto/x509/ |
D | a_verify.c | 77 uint8_t *buf_in = NULL; in ASN1_item_verify() local 96 inl = ASN1_item_i2d(asn, &buf_in, it); in ASN1_item_verify() 98 if (buf_in == NULL) { in ASN1_item_verify() 104 buf_in, inl)) { in ASN1_item_verify() 112 OPENSSL_free(buf_in); in ASN1_item_verify()
|
D | a_sign.c | 85 unsigned char *buf_in = NULL, *buf_out = NULL; in ASN1_item_sign_ctx() local 98 inl = ASN1_item_i2d(asn, &buf_in, it); in ASN1_item_sign_ctx() 101 if ((buf_in == NULL) || (buf_out == NULL)) { in ASN1_item_sign_ctx() 107 if (!EVP_DigestSign(ctx, buf_out, &outl, buf_in, inl)) { in ASN1_item_sign_ctx() 125 OPENSSL_free(buf_in); in ASN1_item_sign_ctx()
|
/external/libxcam/capi/ |
D | xcam_handle.cpp | 224 xcam_handle_execute (XCamHandle *handle, XCamVideoBuffer *buf_in, XCamVideoBuffer **buf_out) in xcam_handle_execute() argument 230 ERROR, context && buf_in && buf_out, XCAM_RETURN_ERROR_PARAM, in xcam_handle_execute() 237 if (buf_in->mem_type == XCAM_MEM_TYPE_GPU) { in xcam_handle_execute() 238 input = external_buf_to_drm_buf (buf_in); in xcam_handle_execute() 240 input = copy_external_buf_to_drm_buf (handle, buf_in); in xcam_handle_execute()
|
D | context_priv.cpp | 156 ContextBase::execute (SmartPtr<VideoBuffer> &buf_in, SmartPtr<VideoBuffer> &buf_out) in execute() argument 168 return _handler->execute (buf_in, buf_out); in execute()
|
D | xcam_handle.h | 86 XCamReturn xcam_handle_execute (XCamHandle *handle, XCamVideoBuffer *buf_in, XCamVideoBuffer **buf_…
|
D | context_priv.h | 68 XCamReturn execute (SmartPtr<VideoBuffer> &buf_in, SmartPtr<VideoBuffer> &buf_out);
|
/external/libxcam/xcore/ |
D | drm_display.cpp | 509 DrmDisplay::convert_to_drm_bo_buf (SmartPtr<DrmDisplay> &self, SmartPtr<VideoBuffer> &buf_in) in convert_to_drm_bo_buf() argument 517 XCAM_ASSERT (buf_in.ptr ()); in convert_to_drm_bo_buf() 519 new_bo_buf = buf_in.dynamic_cast_ptr<DrmBoBuffer> (); in convert_to_drm_bo_buf() 523 const VideoBufferInfo video_info = buf_in->get_video_info (); in convert_to_drm_bo_buf() 524 dma_fd = buf_in->get_fd (); in convert_to_drm_bo_buf() 538 new_bo_buf->set_parent (buf_in); in convert_to_drm_bo_buf() 539 new_bo_buf->set_timestamp (buf_in->get_timestamp ()); in convert_to_drm_bo_buf()
|
D | drm_display.h | 102 …Ptr<DrmBoBuffer> convert_to_drm_bo_buf (SmartPtr<DrmDisplay> &self, SmartPtr<VideoBuffer> &buf_in);
|
/external/elfutils/libelf/ |
D | elf_compress.c | 215 __libelf_decompress (void *buf_in, size_t size_in, size_t size_out) in __libelf_decompress() argument 226 .next_in = buf_in, in __libelf_decompress() 290 void *buf_in = data->d_buf + hsize; in __libelf_decompress_elf() local 291 void *buf_out = __libelf_decompress (buf_in, size_in, chdr.ch_size); in __libelf_decompress_elf()
|
D | elf_compress_gnu.c | 177 void *buf_in = data->d_buf + hsize; in elf_compress_gnu() local 178 void *buf_out = __libelf_decompress (buf_in, size_in, size); in elf_compress_gnu()
|
D | libelfP.h | 603 extern void * __libelf_decompress (void *buf_in, size_t size_in,
|
/external/tensorflow/tensorflow/core/util/ |
D | mkl_util.h | 1212 const float* buf_in = input.flat<float>().data(); in MklNHWCToNCHW() local 1222 mkl_somatcopy('R', 'T', H * W, C, 1, buf_in + n * stride_n, C, in MklNHWCToNCHW() 1228 const float* buf_in = input.flat<float>().data(); in MklNCHWToNHWC() local 1238 mkl_somatcopy('R', 'T', C, H * W, 1, buf_in + n * stride_n, H * W, in MklNCHWToNHWC()
|