Searched refs:input (Results 1 - 25 of 40) sorted by relevance

12

/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...]
/hardware/invensense/libsensors_iio/software/core/mllite/
H A Dml_math_func.h30 float input; member in struct:__anon144
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/libsensors/
H A Dsensors.h25 #include <linux/input.h>
H A DSensorBase.cpp27 #include <linux/input.h>
93 const char *dirname = "/dev/input";
126 ALOGE_IF(fd<0, "couldn't find '%s' input device", inputName);
/hardware/invensense/mlsdk/mllite/
H A Dcompass.h69 int (*update)(yas_filter_handle_t *t, float *input, float *output);
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/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/
H A DFmPresetList.java147 // Set an EditText view to get user input
148 final EditText input = new EditText(this);
149 alert.setView(input);
155 String value = input.getText().toString();
/hardware/invensense/libsensors_iio/
H A DInputEventReader.cpp27 #include <linux/input.h>
H A Dsensors.h25 #include <linux/input.h>
H A DSensorBase.cpp24 #include <linux/input.h>
91 const char *dirname = "/dev/input";
127 LOGE_IF(fd < 0, "couldn't find '%s' input device", inputName);
/hardware/libhardware/include/hardware/
H A Daudio_policy.h51 * the activity and configuration of audio input and output streams.
155 /* request an input appropriate for record from the supplied device with
163 /* indicates to the audio policy manager that the input starts being used */
164 int (*start_input)(struct audio_policy *pol, audio_io_handle_t input);
166 /* indicates to the audio policy manager that the input stops being used. */
167 int (*stop_input)(struct audio_policy *pol, audio_io_handle_t input);
169 /* releases the input. */
170 void (*release_input)(struct audio_policy *pol, audio_io_handle_t input);
298 /* Audio input Control functions */
301 /* opens an audio input
[all...]
/hardware/libhardware_legacy/include/hardware_legacy/
H A DAudioPolicyInterface.h37 // configuration of audio input and output streams.
107 // request an input appropriate for record from the supplied device with supplied parameters.
113 // indicates to the audio policy manager that the input starts being used.
114 virtual status_t startInput(audio_io_handle_t input) = 0;
115 // indicates to the audio policy manager that the input stops being used.
116 virtual status_t stopInput(audio_io_handle_t input) = 0;
117 // releases the input.
118 virtual void releaseInput(audio_io_handle_t input) = 0;
208 // Audio input Control functions
211 // opens an audio input
[all...]
H A DAudioPolicyManagerBase.h104 // indicates to the audio policy manager that the input starts being used.
105 virtual status_t startInput(audio_io_handle_t input);
107 // indicates to the audio policy manager that the input stops being used.
108 virtual status_t stopInput(audio_io_handle_t input);
109 virtual void releaseInput(audio_io_handle_t input);
189 Vector <IOProfile *> mInputProfiles; // input profiles exposed by this module
192 // the IOProfile class describes the capabilities of an output or input stream.
194 // It is used by the policy manager to determine if an output or input is suitable for
281 // descriptor for audio inputs. Used to maintain current configuration of each opened audio input
282 // and keep track of the usage of this 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/libhardware_legacy/audio/
H A Daudio_policy_hal.cpp185 static int ap_start_input(struct audio_policy *pol, audio_io_handle_t input) argument
188 return lap->apm->startInput(input);
191 static int ap_stop_input(struct audio_policy *pol, audio_io_handle_t input) argument
194 return lap->apm->stopInput(input);
197 static void ap_release_input(struct audio_policy *pol, audio_io_handle_t input) argument
200 lap->apm->releaseInput(input);
H A DAudioPolicyCompatClient.cpp82 status_t AudioPolicyCompatClient::closeInput(audio_io_handle_t input) argument
84 return mServiceOps->close_input(mService, input);
H A DAudioPolicyCompatClient.h57 virtual status_t closeInput(audio_io_handle_t input);
H A DAudioPolicyManagerBase.cpp27 // A device mask for all audio input devices that are considered "virtual" when evaluating
194 // handle input devices
199 // handle input device connection
209 // handle input device disconnection
228 ALOGV("setDeviceConnectionState() changing device from %x to %x for input %d",
461 ALOGV("setForceUse() changing device from %x to %x for input %d",
850 audio_io_handle_t input = 0; local
861 // adapt channel selection to input source
900 input = mpClientInterface->openInput(profile->mModule->mHandle,
906 // only accept input wit
923 startInput(audio_io_handle_t input) argument
960 stopInput(audio_io_handle_t input) argument
982 releaseInput(audio_io_handle_t input) argument
[all...]
/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);
/hardware/libhardware/modules/audio/
H A Daudio_policy.c133 static int ap_start_input(struct audio_policy *pol, audio_io_handle_t input) argument
138 static int ap_stop_input(struct audio_policy *pol, audio_io_handle_t input) argument
143 static void ap_release_input(struct audio_policy *pol, audio_io_handle_t input) argument
/hardware/invensense/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/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
/hardware/invensense/libsensors_iio/software/simple_apps/mpu_iio/
H A Dmpu_iio.c62 void print2byte(int input, struct iio_channel_info *info) argument
66 input = input >> info->shift;
68 int16_t val = input;
77 uint16_t val = input;

Completed in 541 milliseconds

12