Home
last modified time | relevance | path

Searched refs:out_buf (Results 1 – 8 of 8) sorted by relevance

/hardware/google/gchips/include/
Ds5p_fimc_v4l2.h153 struct fimc_buffer out_buf; member
/hardware/qcom/wlan/wcn6740/qcwcn/wifi_hal/
Dwifilogger_diag.cpp173 u8 out_buf[SCAN_CAP_ENTRY_SIZE]; in process_log_extscan_capabilities() local
176 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_log_extscan_capabilities()
269 u8 out_buf[RING_BUF_ENTRY_SIZE]; in process_bt_coex_scan_event() local
272 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_bt_coex_scan_event()
323 u8 out_buf[RING_BUF_ENTRY_SIZE]; in process_bt_coex_event() local
329 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_bt_coex_event()
443 u8 out_buf[RING_BUF_ENTRY_SIZE]; in process_extscan_event() local
446 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_extscan_event()
585 u8 out_buf[RING_BUF_ENTRY_SIZE]; in process_addba_success_event() local
590 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_addba_success_event()
[all …]
/hardware/qcom/wlan/legacy/qcwcn/wifi_hal/
Dwifilogger_diag.cpp170 u8 out_buf[SCAN_CAP_ENTRY_SIZE]; in process_log_extscan_capabilities() local
173 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_log_extscan_capabilities()
267 u8 out_buf[RING_BUF_ENTRY_SIZE]; in process_bt_coex_scan_event() local
270 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_bt_coex_scan_event()
321 u8 out_buf[RING_BUF_ENTRY_SIZE]; in process_bt_coex_event() local
327 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_bt_coex_event()
441 u8 out_buf[RING_BUF_ENTRY_SIZE]; in process_extscan_event() local
444 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_extscan_event()
583 u8 out_buf[RING_BUF_ENTRY_SIZE]; in process_addba_success_event() local
588 pRingBufferEntry = (wifi_ring_buffer_entry *)&out_buf[0]; in process_addba_success_event()
[all …]
/hardware/qcom/camera/msm8998/QCamera2/HAL/
DQCameraPostProc.h236 static int getJpegMemory(omx_jpeg_ouput_buf_t *out_buf);
237 static int releaseJpegMemory(omx_jpeg_ouput_buf_t *out_buf);
DQCameraPostProc.cpp3705 int QCameraPostProcessor::getJpegMemory(omx_jpeg_ouput_buf_t *out_buf) in getJpegMemory() argument
3707 LOGH("Allocating jpeg out buffer of size: %d", out_buf->size); in getJpegMemory()
3708 QCameraPostProcessor *procInst = (QCameraPostProcessor *) out_buf->handle; in getJpegMemory()
3709 camera_memory_t *cam_mem = procInst->m_parent->mGetMemory(out_buf->fd, out_buf->size, 1U, in getJpegMemory()
3711 out_buf->mem_hdl = cam_mem; in getJpegMemory()
3712 out_buf->vaddr = cam_mem->data; in getJpegMemory()
3730 int QCameraPostProcessor::releaseJpegMemory(omx_jpeg_ouput_buf_t *out_buf) in releaseJpegMemory() argument
3732 if (out_buf && out_buf->mem_hdl) { in releaseJpegMemory()
3733 LOGD("releasing jpeg out buffer of size: %d", out_buf->size); in releaseJpegMemory()
3734 camera_memory_t *cam_mem = (camera_memory_t*)out_buf->mem_hdl; in releaseJpegMemory()
[all …]
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/
Dmm_qcamera_main_menu.c317 int out_buf = INVALID_KEY_PRESS; in keypress_to_event() local
320 out_buf = tolower(keypress); in keypress_to_event()
321 out_buf = out_buf - 'a'; in keypress_to_event()
323 out_buf = (keypress - '0')+ ('z' - 'a'); in keypress_to_event()
325 return out_buf; in keypress_to_event()
/hardware/qcom/camera/msm8998/usbcamcore/src/
DQualcommUsbCamera.cpp119 static int convert_YUYV_to_420_NV12(char *in_buf, char *out_buf, int wd, int ht);
718 static int convert_YUYV_to_420_NV12(char *in_buf, char *out_buf, int wd, int ht) in convert_YUYV_to_420_NV12() argument
728 out_buf[row * wd + col / 2] = in_buf[row * wd * 2 + col]; in convert_YUYV_to_420_NV12()
735 out_buf[uv_row * wd + col / 2]= in_buf[row * wd * 2 + col + 2]; in convert_YUYV_to_420_NV12()
736 out_buf[uv_row * wd + col / 2 + 1] = in_buf[row * wd * 2 + col]; in convert_YUYV_to_420_NV12()
/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dtinyexr.h4426 tdefl_output_buffer out_buf; in tdefl_compress_mem_to_heap() local
4427 MZ_CLEAR_OBJ(out_buf); in tdefl_compress_mem_to_heap()
4432 out_buf.m_expandable = MZ_TRUE; in tdefl_compress_mem_to_heap()
4434 pSrc_buf, src_buf_len, tdefl_output_buffer_putter, &out_buf, flags)) in tdefl_compress_mem_to_heap()
4436 *pOut_len = out_buf.m_size; in tdefl_compress_mem_to_heap()
4437 return out_buf.m_pBuf; in tdefl_compress_mem_to_heap()
4443 tdefl_output_buffer out_buf; in tdefl_compress_mem_to_mem() local
4444 MZ_CLEAR_OBJ(out_buf); in tdefl_compress_mem_to_mem()
4446 out_buf.m_pBuf = (mz_uint8 *)pOut_buf; in tdefl_compress_mem_to_mem()
4447 out_buf.m_capacity = out_buf_len; in tdefl_compress_mem_to_mem()
[all …]