Searched defs:input (Results 1 - 25 of 34) sorted by relevance

12

/hardware/invensense/60xx/libsensors_iio/software/core/mllite/
H A Dml_math_func.h30 float input; member in struct:__anon148
94 void inv_convert_to_body(unsigned short orientation, const long *input, long *output);
95 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output);
96 void inv_convert_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output);
113 float inv_biquad_filter_process(inv_biquad_filter_t *pFilter, float input);
114 void inv_calc_state_to_match_output(inv_biquad_filter_t *pFilter, float input);
H A Dml_math_func.c610 * @param[in] input Input vector, length 3
613 void inv_convert_to_body(unsigned short orientation, const long *input, long *output) argument
615 output[0] = input[orientation & 0x03] * SIGNSET(orientation & 0x004);
616 output[1] = input[(orientation>>3) & 0x03] * SIGNSET(orientation & 0x020);
617 output[2] = input[(orientation>>6) & 0x03] * SIGNSET(orientation & 0x100);
622 * @param[in] input Input vector, length 3
625 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output) argument
627 output[orientation & 0x03] = input[0] * SIGNSET(orientation & 0x004);
628 output[(orientation>>3) & 0x03] = input[1] * SIGNSET(orientation & 0x020);
629 output[(orientation>>6) & 0x03] = input[
640 inv_convert_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output) argument
671 inv_calc_state_to_match_output(inv_biquad_filter_t *pFilter, float input) argument
679 inv_biquad_filter_process(inv_biquad_filter_t *pFilter, float input) argument
[all...]
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/
H A Dml_math_func.h30 float input; member in struct:__anon164
94 void inv_convert_to_body(unsigned short orientation, const long *input, long *output);
95 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output);
96 void inv_convert_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output);
113 float inv_biquad_filter_process(inv_biquad_filter_t *pFilter, float input);
114 void inv_calc_state_to_match_output(inv_biquad_filter_t *pFilter, float input);
H A Dml_math_func.c610 * @param[in] input Input vector, length 3
613 void inv_convert_to_body(unsigned short orientation, const long *input, long *output) argument
615 output[0] = input[orientation & 0x03] * SIGNSET(orientation & 0x004);
616 output[1] = input[(orientation>>3) & 0x03] * SIGNSET(orientation & 0x020);
617 output[2] = input[(orientation>>6) & 0x03] * SIGNSET(orientation & 0x100);
622 * @param[in] input Input vector, length 3
625 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output) argument
627 output[orientation & 0x03] = input[0] * SIGNSET(orientation & 0x004);
628 output[(orientation>>3) & 0x03] = input[1] * SIGNSET(orientation & 0x020);
629 output[(orientation>>6) & 0x03] = input[
640 inv_convert_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output) argument
671 inv_calc_state_to_match_output(inv_biquad_filter_t *pFilter, float input) argument
679 inv_biquad_filter_process(inv_biquad_filter_t *pFilter, float input) argument
[all...]
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/linux/
H A Dml_sysfs_helper.c102 const char input[] = "/proc/bus/input/devices"; local
110 if(NULL == (fp = fopen(input, "rt")) ){
377 * @brief return input number. If the handler number is not found
383 * @int *num: input number store
/hardware/invensense/60xx/mlsdk/mllite/
H A Dcompass.c185 static int update(yas_filter_handle_t *t, float *input, float *output) argument
189 if (t == NULL || input == NULL || output == NULL) {
194 output[i] = adaptive_filter_filter(&t->adap_filter[i], input[i]);
/hardware/libhardware_legacy/audio/
H A DAudioPolicyCompatClient.cpp83 status_t AudioPolicyCompatClient::closeInput(audio_io_handle_t input) argument
85 return mServiceOps->close_input(mService, input);
H A Daudio_policy_hal.cpp187 static int ap_start_input(struct audio_policy *pol, audio_io_handle_t input) argument
190 return lap->apm->startInput(input);
193 static int ap_stop_input(struct audio_policy *pol, audio_io_handle_t input) argument
196 return lap->apm->stopInput(input);
199 static void ap_release_input(struct audio_policy *pol, audio_io_handle_t input) argument
202 lap->apm->releaseInput(input);
/hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/test/
H A Dmm_jpeg_test.c72 buffer_test_t input; member in struct:__anon633
153 CDBG_ERROR("%s:%d] input file size is %d buf_size %ld",
154 __func__, __LINE__, file_size, p_obj->input.size);
156 if (p_obj->input.size > file_size) {
161 fread(p_obj->input.addr, 1, p_obj->input.size, fp);
183 p_obj->input.size = size * 3/2;
184 rc = mm_jpeg_test_alloc(&p_obj->input, p_obj->use_ion);
216 p_params->src_main_buf[0].buf_size = p_obj->input.size;
217 p_params->src_main_buf[0].buf_vaddr = p_obj->input
[all...]
/hardware/samsung_slsi/exynos5/libv4l2/
H A Dexynos_v4l2.c194 struct v4l2_input input; local
203 input.index = index;
204 ret = ioctl(fd, VIDIOC_ENUMINPUT, &input);
210 ALOGI("Name of input channel[%d] is %s", input.index, input.name);
212 strcpy(input_name_buf, (const char *)input.name);
222 struct v4l2_input input; local
231 input.index = index;
233 ret = ioctl(fd, VIDIOC_S_INPUT, &input);
[all...]
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
H A Dml_sysfs_helper.c113 const char input[] = "/proc/bus/input/devices"; local
121 if(NULL == (fp = fopen(input, "rt")) ){
480 * @brief return input number. If the handler number is not found
486 * @int *num: input number store
/hardware/libhardware/modules/audio/
H A Daudio_policy.c134 static int ap_start_input(struct audio_policy *pol, audio_io_handle_t input) argument
139 static int ap_stop_input(struct audio_policy *pol, audio_io_handle_t input) argument
144 static void ap_release_input(struct audio_policy *pol, audio_io_handle_t input) argument
/hardware/ti/omap4xxx/camera/
H A DEncoder_libjpeg.cpp63 libjpeg_destination_mgr(uint8_t* input, int size);
91 libjpeg_destination_mgr::libjpeg_destination_mgr(uint8_t* input, int size) { argument
96 this->buf = input;
183 //input
354 size_t Encoder_libjpeg::encode(params* input) { argument
367 if (!input) {
371 out_width = input->out_width;
372 in_width = input->in_width;
373 out_height = input->out_height;
374 in_height = input
[all...]
H A DAppCallbackNotifier.cpp1064 structConvImage input = {frame->mWidth, local
1080 VT_resizeFrame_Video_opt2_lp(&input, &output, NULL, 0);
/hardware/qcom/audio/legacy/alsa_sound/
H A Daudio_policy_hal.cpp185 static int ap_start_input(struct audio_policy *pol, audio_io_handle_t input) argument
188 return qap->apm->startInput(input);
191 static int ap_stop_input(struct audio_policy *pol, audio_io_handle_t input) argument
194 return qap->apm->stopInput(input);
197 static void ap_release_input(struct audio_policy *pol, audio_io_handle_t input) argument
200 qap->apm->releaseInput(input);
H A Dalsa_default.cpp198 static char *getUCMDevice(uint32_t devices, int input, char *rxDevice);
1310 char *getUCMDevice(uint32_t devices, int input, char *rxDevice) argument
1314 if (!input) {
1501 // Mapping for quad mic input device.
1567 ALOGD("No valid input device: %u", devices);
1781 void s_setInput(int input) argument
1783 input_source = input;
/hardware/libhardware/tests/camera2/
H A DCameraMultiStreamTests.cpp155 Size CapSize(Size cap, Size input) { argument
156 if (input.width * input.height > cap.width * cap.height) {
159 return input;
/hardware/qcom/media/mm-video-legacy/vidc/venc/src/
H A Domx_video_base.cpp101 void* message_thread(void *input) argument
103 omx_video* omx = reinterpret_cast<omx_video*>(input);
492 DEBUG_PRINT_LOW("\n dev_stop called after input flush complete\n");
1295 flushtype - input flush(1)/output flush(0)/ both.
1308 //flush input only
2041 Helper function for Use buffer in the input pin
2216 Helper function for Use buffer in the input pin
2668 Helper function for allocate buffer in the input pin
4307 DEBUG_PRINT_ERROR("\nInvalid input to alloc_map_ion_memory");
4356 DEBUG_PRINT_ERROR("\n Invalid input t
[all...]
H A Dvideo_encoder_device.cpp140 char inputfilename [] = "/data/input.yuv";
165 void* async_venc_message_thread (void *input) argument
171 omx_venc *omx = reinterpret_cast<omx_venc*>(input);
191 else if(omx->async_message_process(input,&venc_msg) < 0)
526 // must be 4k aligned, hence aligning the input buffer
1508 DEBUG_PRINT_ERROR("\nERROR: venc_use_buf:get input buffer failed ");
1535 DEBUG_PRINT_ERROR("\nERROR: venc_use_buf:set input buffer failed ");
1598 DEBUG_PRINT_ERROR("\nERROR: venc_free_buf: free input buffer failed ");
H A Dvideo_encoder_device_copper.cpp139 char inputfilename [] = "/data/input.yuv";
158 void* async_venc_message_thread (void *input) argument
163 omx_venc *omx = reinterpret_cast<omx_venc*>(input);
164 omx_venc_base = reinterpret_cast<omx_video*>(input);
229 if(omx->async_message_process(input,&venc_msg) < 0)
568 // must be 4k aligned, hence aligning the input buffer
1471 DEBUG_PRINT_ERROR("\nERROR: venc_use_buf:set input buffer failed ");
1534 DEBUG_PRINT_ERROR("\nERROR: venc_free_buf: free input buffer failed ");
/hardware/qcom/media/mm-video-v4l2/vidc/venc/src/
H A Domx_video_base.cpp96 void* message_thread(void *input) argument
98 omx_video* omx = reinterpret_cast<omx_video*>(input);
460 DEBUG_PRINT_LOW("\n dev_stop called after input flush complete\n");
1134 flushtype - input flush(1)/output flush(0)/ both.
1157 //flush input only
1942 Helper function for Use buffer in the input pin
2102 Helper function for Use buffer in the input pin
2508 Helper function for allocate buffer in the input pin
3029 DEBUG_PRINT_HIGH("in free buffer, release not done, need to free more buffers input 0x%x output 0x%x",
4023 DEBUG_PRINT_ERROR("\nInvalid input t
[all...]
H A Dvideo_encoder_device.cpp135 char inputfilename [] = "/data/input.yuv";
159 void* async_venc_message_thread (void *input) argument
165 omx_venc *omx = reinterpret_cast<omx_venc*>(input);
182 } else if (omx->async_message_process(input,&venc_msg) < 0) {
553 // must be 4k aligned, hence aligning the input buffer
1606 DEBUG_PRINT_ERROR("\nERROR: venc_use_buf:get input buffer failed ");
1631 DEBUG_PRINT_ERROR("\nERROR: venc_use_buf:set input buffer failed ");
1687 DEBUG_PRINT_ERROR("\nERROR: venc_free_buf: free input buffer failed ");
H A Dvideo_encoder_device_v4l2.cpp164 char inputfilename [] = "/data/input.yuv";
215 void* venc_dev::async_venc_message_thread (void *input) argument
219 omx_venc *omx = reinterpret_cast<omx_venc*>(input);
220 omx_venc_base = reinterpret_cast<omx_video*>(input);
241 if (omx->async_message_process(input, &venc_msg) < 0) {
254 if (omx->async_message_process(input, &venc_msg) < 0) {
312 if (omx->async_message_process(input,&venc_msg) < 0) {
332 if (omx->async_message_process(input,&venc_msg) < 0) {
349 if (omx->async_message_process(input,&venc_msg) < 0) {
357 if (omx->async_message_process(input,
[all...]
/hardware/qcom/msm8960/kernel-headers/linux/
H A Dmsm_q6vdec.h124 struct vdec_buf_desc input; member in struct:vdec_buf_req
259 struct vdec_buf_desc input; member in struct:vdec_dec_attributes
/hardware/qcom/msm8960/original-kernel-headers/linux/
H A Dmsm_q6vdec.h103 struct vdec_buf_desc input; member in struct:vdec_buf_req
120 u32 notify_enable; /* enable notify input buffer done event */
167 u32 flags; /* input flags */
229 struct vdec_buf_desc input; member in struct:vdec_dec_attributes

Completed in 691 milliseconds

12