Searched defs:in (Results 1 - 25 of 26) sorted by relevance

12

/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
H A DNotificationQueue.h9 * Redistribution and use in source and binary forms, with or without
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
50 * @param in queue to initialize
55 notificationQueue_t *in,
62 * @param notification Data to be placed in queue.
79 notificationQueue_t *in; member in class:NotificationQueue
/hardware/invensense/mlsdk/mllite/
H A Dcompass.c6 you may not use this file except in compliance with the License.
11 Unless required by applicable law or agreed to in writing, software
105 static float adaptive_filter_filter(struct yas_adaptive_filter *adap_filter, float in) argument
111 return in;
114 adap_filter->sequence[adap_filter->index++] = in;
116 return in;
121 adap_filter->sequence[adap_filter->index++] = in;
143 return ((in - avg) * (sum - adap_filter->noise) / sum + avg);
152 static float thresh_filter_filter(struct yas_thresh_filter *thresh_filter, float in) argument
154 if (in < thresh_filte
[all...]
/hardware/libhardware_legacy/audio/
H A DAudioHardwareGeneric.cpp6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
121 AudioStreamInGeneric* in = new AudioStreamInGeneric(); local
122 status_t lStatus = in->set(this, mFd, devices, format, channels, sampleRate, acoustics);
127 mInput = in;
129 delete in;
134 void AudioHardwareGeneric::closeInputStream(AudioStreamIn* in) { argument
135 if (mInput && in == mInput) {
H A DAudioHardwareStub.cpp6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
73 AudioStreamInStub* in = new AudioStreamInStub(); local
74 status_t lStatus = in->set(format, channels, sampleRate, acoustics);
79 return in;
80 delete in;
84 void AudioHardwareStub::closeInputStream(AudioStreamIn* in) argument
86 delete in;
H A DA2dpAudioInterface.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
113 void A2dpAudioInterface::closeInputStream(AudioStreamIn* in) argument
115 return mHardwareInterface->closeInputStream(in);
330 // Simulate audio output timing in case of error
H A DAudioDumpInterface.cpp6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
171 void AudioDumpInterface::closeInputStream(AudioStreamIn* in) argument
173 AudioStreamInDump *dumpIn = (AudioStreamInDump *)in;
H A Daudio_hw_hal.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
272 const struct legacy_stream_in *in = local
274 return in->legacy_in->sampleRate();
279 struct legacy_stream_in *in = local
289 const struct legacy_stream_in *in = local
291 return in->legacy_in->bufferSize();
296 const struct legacy_stream_in *in = local
298 return (audio_channel_mask_t) in->legacy_in->channels();
303 const struct legacy_stream_in *in local
311 struct legacy_stream_in *in = local
320 struct legacy_stream_in *in = reinterpret_cast<struct legacy_stream_in *>(stream); local
326 const struct legacy_stream_in *in = local
334 struct legacy_stream_in *in = local
353 const struct legacy_stream_in *in = local
373 struct legacy_stream_in *in = local
381 struct legacy_stream_in *in = local
388 struct legacy_stream_in *in = local
395 const struct legacy_stream_in *in = local
402 const struct legacy_stream_in *in = local
558 struct legacy_stream_in *in; local
604 struct legacy_stream_in *in = local
[all...]
/hardware/msm7k/libaudio-qdsp5v2/
H A DAudioHardware.cpp5 ** you may not use this file except in compliance with the License.
10 ** Unless required by applicable law or agreed to in writing, software
109 void AudioHardware::closeInputStream(AudioStreamIn* in) { argument
156 // We return an error code here to let the audioflinger do in-software
292 // Simulate audio output timing in case of error
/hardware/msm7k/libgralloc-qsd8k/
H A Dgralloc_priv.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
41 //HAL_PIXEL_FORMAT_YCbCr_422_SP = 0x100, // defined in hardware.h
42 //HAL_PIXEL_FORMAT_YCrCb_420_SP = 0x101, // defined in hardware.h
45 //HAL_PIXEL_FORMAT_YCbCr_422_I = 0x104, // defined in hardware.h
156 static private_handle_t* dynamicCast(const native_handle* in) { argument
157 if (validate(in) == 0) {
158 return (private_handle_t*) in;
/hardware/samsung_slsi/exynos5/include/
H A Dgralloc_priv.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
160 static private_handle_t* dynamicCast(const native_handle* in) argument
162 if (validate(in) == 0)
163 return (private_handle_t*) in;
/hardware/invensense/libsensors_iio/software/core/mllite/
H A Dml_math_func.c34 * @param[in] compass Compass Vector (Body Frame), length 3
35 * @param[in] grav Gravity Vector (Body Frame), length 3
36 * @param[in] quat Quaternion, Length 4
67 * @param[in] gyro Gyro data scaled with 1 dps = 2^16
84 /** Performs a multiply and shift by 29. These are good functions to write in assembly on
87 * @param[in] a
88 * @param[in] b
106 /** Performs a multiply and shift by 30. These are good functions to write in assembly on
109 * @param[in] a
110 * @param[in]
247 inv_q_rotate(const long *q, const long *in, long *out) argument
[all...]
/hardware/libhardware/modules/audio/
H A Daudio_hw.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
333 struct stub_stream_in *in; local
336 in = (struct stub_stream_in *)calloc(1, sizeof(struct stub_stream_in));
337 if (!in)
340 in->stream.common.get_sample_rate = in_get_sample_rate;
341 in->stream.common.set_sample_rate = in_set_sample_rate;
342 in->stream.common.get_buffer_size = in_get_buffer_size;
343 in->stream.common.get_channels = in_get_channels;
344 in
365 adev_close_input_stream(struct audio_hw_device *dev, struct audio_stream_in *in) argument
[all...]
/hardware/msm7k/libaudio/
H A DAudioHardware.cpp5 ** you may not use this file except in compliance with the License.
10 ** Unless required by applicable law or agreed to in writing, software
208 AudioStreamInMSM72xx* in = new AudioStreamInMSM72xx(); local
209 status_t lStatus = in->set(this, devices, format, channels, sampleRate, acoustic_flags);
215 delete in;
219 mInputs.add(in);
222 return in;
225 void AudioHardware::closeInputStream(AudioStreamIn* in) { argument
228 ssize_t index = mInputs.indexOf((AudioStreamInMSM72xx *)in);
317 "(%s not in acousti
[all...]
/hardware/qcom/audio/legacy/alsa_sound/
H A DAudioHardwareALSA.cpp7 ** you may not use this file except in compliance with the License.
12 ** Unless required by applicable law or agreed to in writing, software
274 // So adjust the volume to get the correct volume index in driver
393 ALOGV("Enabling Incall Music setting in the setparameter\n");
400 ALOGV("Disabling Incall Music setting in the setparameter\n");
414 ALOGV("Enabling ANC setting in the setparameter\n");
417 ALOGV("Disabling ANC setting in the setparameter\n");
803 ALOGD("Routing to proxy for normal voip call in openOutputStream");
807 ALOGD("enabling VOIP in openoutputstream, musbPlaybackState: %d", musbPlaybackState);
810 ALOGD("Starting recording in openoutputstrea
1105 AudioStreamInALSA *in = 0; local
1382 closeInputStream(AudioStreamIn* in) argument
[all...]
H A Daudio_hw_hal.cpp6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
294 const struct qcom_stream_in *in = local
296 return in->qcom_in->sampleRate();
301 struct qcom_stream_in *in = local
311 const struct qcom_stream_in *in = local
313 return in->qcom_in->bufferSize();
318 const struct qcom_stream_in *in = local
320 return in->qcom_in->channels();
325 const struct qcom_stream_in *in local
332 struct qcom_stream_in *in = local
341 struct qcom_stream_in *in = reinterpret_cast<struct qcom_stream_in *>(stream); local
347 const struct qcom_stream_in *in = local
355 struct qcom_stream_in *in = local
374 const struct qcom_stream_in *in = local
394 struct qcom_stream_in *in = local
402 struct qcom_stream_in *in = local
409 struct qcom_stream_in *in = local
416 const struct qcom_stream_in *in = local
423 const struct qcom_stream_in *in = local
627 struct qcom_stream_in *in; local
675 struct qcom_stream_in *in = local
[all...]
/hardware/qcom/display/libgralloc/
H A Dgralloc_priv.h6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
149 // Not mapped in userspace
240 static private_handle_t* dynamicCast(const native_handle* in) { argument
241 if (validate(in) == 0) {
242 return (private_handle_t*) in;
/hardware/libhardware/modules/audio_remote_submix/
H A Daudio_hw.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
58 unsigned int period_size; // size of the audio pipe is period_size * period_count in frames
181 // FIXME this is using hard-coded strings but in the future, this functionality will be
317 const struct submix_stream_in *in = reinterpret_cast<const struct submix_stream_in *>(stream); local
318 //ALOGV("in_get_sample_rate() returns %u", in->dev->config.rate);
319 return in->dev->config.rate;
329 const struct submix_stream_in *in = reinterpret_cast<const struct submix_stream_in *>(stream); local
331 in->dev->config.period_size * audio_stream_frame_size(stream));
332 return in
357 const struct submix_stream_in *in = reinterpret_cast<const struct submix_stream_in *>(stream); local
394 struct submix_stream_in *in = reinterpret_cast<struct submix_stream_in *>(stream); local
681 struct submix_stream_in *in; local
[all...]
/hardware/qcom/audio/hal/
H A Daudio_hw.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
209 struct stream_in *in; member in union:stream_ptr
H A Daudio_hw.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
552 * Do not handle stereo output in Multi-channel cases
553 * Stereo case is handled in normal playback path
887 usecase->devices = usecase->stream.in->device;
911 * Limitation: While in call, to do a device switch we need to disable
985 static int stop_input_stream(struct stream_in *in) argument
989 struct audio_device *adev = in->dev;
994 in->usecase, use_case_table[in
1015 start_input_stream(struct stream_in *in) argument
1585 struct stream_in *in = (struct stream_in *)stream; local
1597 struct stream_in *in = (struct stream_in *)stream; local
1604 struct stream_in *in = (struct stream_in *)stream; local
1621 struct stream_in *in = (struct stream_in *)stream; local
1648 struct stream_in *in = (struct stream_in *)stream; local
1703 struct stream_in *in = (struct stream_in *)stream; local
1750 struct stream_in *in = (struct stream_in *)stream; local
2136 struct stream_in *in; local
[all...]
/hardware/msm7k/libaudio-qsd8k/
H A DAudioHardware.cpp5 ** you may not use this file except in compliance with the License.
10 ** Unless required by applicable law or agreed to in writing, software
85 // enable or disable 2-mic noise suppression in call on receiver mode
87 //FIXME add new settings in A1026 driver for an incall no ns mode, based on the current vr no ns
175 // reset voice mode in case media_server crashed and restarted while in call
274 AudioStreamInMSM72xx* in = new AudioStreamInMSM72xx(); local
275 status_t lStatus = in->set(this, devices, format, channels, sampleRate, acoustic_flags);
281 delete in;
285 mInputs.add(in);
291 closeInputStream(AudioStreamIn* in) argument
[all...]
/hardware/qcom/display/liboverlay/
H A DoverlayUtils.h4 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions in binary form must reproduce the above
11 * disclaimer in the documentation and/or other materials provided
60 // or put it as -D in Android.mk. your choice.
151 bool getCropS3D(const Dim& in, Dim& out, uint32_t fmt);
226 //Enable rotator downscale optimization for hardware bugs not handled in
329 /* rotate invalid like in Transform.h */
568 //Clients in Android dont factor in 90 rotation while deciding flip.
635 inline Dim getCropS3DImpl(const Dim& in, uint32_ argument
655 getCropS3DImpl(const Dim& in, uint32_t fmt) argument
675 getCropS3D(const Dim& in, Dim& out, uint32_t fmt) argument
[all...]
/hardware/qcom/msm8960/kernel-headers/linux/
H A Dmsm_vidc_enc.h169 void __user *in; member in struct:venc_ioctl_msg
H A Dmsm_vidc_dec.h92 void __user *in; member in struct:vdec_ioctl_msg
/hardware/qcom/msm8960/original-kernel-headers/linux/
H A Dmsm_vidc_enc.h14 /*Command called in invalid state*/
171 void __user *in; member in struct:venc_ioctl_msg
H A Dmsm_vidc_dec.h16 /* Error detected in the passed parameters */
18 /* Command called in invalid state. */
89 void __user *in; member in struct:vdec_ioctl_msg

Completed in 884 milliseconds

12