Searched defs:output (Results 51 - 75 of 76) sorted by relevance

1234

/hardware/invensense/6515/libsensors_iio/software/core/mllite/
H A Dml_math_func.c68 * @return the computed magnitude squared output of the gyroscope.
610 * @param[out] output Output vector, length 3
612 void inv_convert_to_body(unsigned short orientation, const long *input, long *output) argument
614 output[0] = input[orientation & 0x03] * SIGNSET(orientation & 0x004);
615 output[1] = input[(orientation>>3) & 0x03] * SIGNSET(orientation & 0x020);
616 output[2] = input[(orientation>>6) & 0x03] * SIGNSET(orientation & 0x100);
622 * @param[out] output Output vector, length 3
624 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output) argument
626 output[orientation & 0x03] = input[0] * SIGNSET(orientation & 0x004);
627 output[(orientatio
639 inv_convert_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output) argument
[all...]
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/
H A Dml_math_func.c68 * @return the computed magnitude squared output of the gyroscope.
610 * @param[out] output Output vector, length 3
612 void inv_convert_to_body(unsigned short orientation, const long *input, long *output) argument
614 output[0] = input[orientation & 0x03] * SIGNSET(orientation & 0x004);
615 output[1] = input[(orientation>>3) & 0x03] * SIGNSET(orientation & 0x020);
616 output[2] = input[(orientation>>6) & 0x03] * SIGNSET(orientation & 0x100);
622 * @param[out] output Output vector, length 3
624 void inv_convert_to_chip(unsigned short orientation, const long *input, long *output) argument
626 output[orientation & 0x03] = input[0] * SIGNSET(orientation & 0x004);
627 output[(orientatio
639 inv_convert_to_body_with_scale(unsigned short orientation, long sensitivity, const long *input, long *output) argument
[all...]
/hardware/ti/omap4-aah/camera/
H A DAppCallbackNotifier.cpp1147 structConvImage output = {mVideoWidth, local
1155 VT_resizeFrame_Video_opt2_lp(&input, &output, NULL, 0);
/hardware/ti/omap4xxx/camera/
H A DAppCallbackNotifier.cpp1072 structConvImage output = {mVideoWidth, local
1080 VT_resizeFrame_Video_opt2_lp(&input, &output, NULL, 0);
/hardware/qcom/audio/visualizer/
H A Doffload_visualizer.c61 int (*start)(effect_context_t *context, output_context_t *output);
62 int (*stop)(effect_context_t *context, output_context_t *output);
76 audio_io_handle_t out_handle; /* io handle of the output the effect is attached to */
87 struct listnode effects_list; /* list of effects attached to this output */
153 /* list of active output streams. Updated by visualizer_hal_start_output()
158 * attached to an active output stream */
165 /* cond is signaled when an output is started or stopped or an effect is enabled or disable: the
238 output_context_t *get_output(audio_io_handle_t output) { argument
245 if (out_ctxt->handle == output) {
252 void add_effect_to_output(output_context_t * output, effect_context_ argument
267 remove_effect_from_output(output_context_t * output, effect_context_t *context) argument
429 visualizer_hal_start_output(audio_io_handle_t output, int pcm_id) argument
475 visualizer_hal_stop_output(audio_io_handle_t output, int pcm_id) argument
[all...]
/hardware/qcom/msm8960/kernel-headers/linux/
H A Dmsm_q6vdec.h125 struct vdec_buf_desc output; member in struct:vdec_buf_req
260 struct vdec_buf_desc output; member in struct:vdec_dec_attributes
H A Dvideodev2.h2080 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon1904
/hardware/qcom/msm8960/original-kernel-headers/linux/
H A Dmsm_q6vdec.h104 struct vdec_buf_desc output; member in struct:vdec_buf_req
230 struct vdec_buf_desc output; member in struct:vdec_dec_attributes
H A Dvideodev2.h261 #define V4L2_CAP_VIDEO_OUTPUT 0x00000002 /* Is a video output device */
264 #define V4L2_CAP_VBI_OUTPUT 0x00000020 /* Is a raw VBI output device */
266 #define V4L2_CAP_SLICED_VBI_OUTPUT 0x00000080 /* Is a sliced VBI output device */
268 #define V4L2_CAP_VIDEO_OUTPUT_OVERLAY 0x00000200 /* Can do video output overlay */
274 /* Is a video output device that supports multiplanar formats */
579 * output. Unless you exactly know what
1127 __u32 index; /* Which output */
1129 __u32 type; /* Type of output */
2422 * @vbi: raw VBI capture or output parameters
2423 * @sliced: sliced VBI capture or output parameter
2444 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon1959
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
H A Dvp9_dct_avx2.c15 void vp9_fdct4x4_avx2(const int16_t *input, int16_t *output, int stride) { argument
102 // Post-condition output and store it (v + 1) >> 2, taking advantage
108 _mm_storeu_si128((__m128i *)(output + 0 * 4), out01);
109 _mm_storeu_si128((__m128i *)(output + 2 * 4), out23);
135 static INLINE void write_buffer_4x4_avx2(int16_t *output, __m128i *res) { argument
143 _mm_store_si128((__m128i *)(output + 0 * 8), out01);
144 _mm_store_si128((__m128i *)(output + 1 * 8), out23);
247 void vp9_fht4x4_avx2(const int16_t *input, int16_t *output, argument
253 vp9_fdct4x4_avx2(input, output, stride);
259 write_buffer_4x4_avx2(output, i
279 vp9_fdct8x8_avx2(const int16_t *input, int16_t *output, int stride) argument
602 write_buffer_8x8_avx2(int16_t *output, __m128i *res, int stride) argument
1035 vp9_fht8x8_avx2(const int16_t *input, int16_t *output, int stride, int tx_type) argument
1070 vp9_fdct16x16_avx2(const int16_t *input, int16_t *output, int stride) argument
1707 write_buffer_16x16_avx2(int16_t *output, __m128i *in0, __m128i *in1, int stride) argument
2547 vp9_fht16x16_avx2(const int16_t *input, int16_t *output, int stride, int tx_type) argument
[all...]
H A Dvp9_dct_sse2.c15 void vp9_fdct4x4_sse2(const int16_t *input, int16_t *output, int stride) { argument
24 // output locations.
191 // remember the o's are numbered according to the correct output location
209 _mm_storeu_si128((__m128i *)(output + 0 * 4), in0);
210 _mm_storeu_si128((__m128i *)(output + 2 * 4), in1);
236 static INLINE void write_buffer_4x4(int16_t *output, __m128i *res) { argument
244 _mm_store_si128((__m128i *)(output + 0 * 8), out01);
245 _mm_store_si128((__m128i *)(output + 1 * 8), out23);
348 void vp9_fht4x4_sse2(const int16_t *input, int16_t *output, argument
354 vp9_fdct4x4_sse2(input, output, strid
380 vp9_fdct8x8_sse2(const int16_t *input, int16_t *output, int stride) argument
703 write_buffer_8x8(int16_t *output, __m128i *res, int stride) argument
1136 vp9_fht8x8_sse2(const int16_t *input, int16_t *output, int stride, int tx_type) argument
1171 vp9_fdct16x16_sse2(const int16_t *input, int16_t *output, int stride) argument
1808 write_buffer_16x16(int16_t *output, __m128i *in0, __m128i *in1, int stride) argument
2648 vp9_fht16x16_sse2(const int16_t *input, int16_t *output, int stride, int tx_type) argument
[all...]
H A Dvp9_dct32x32_sse2.c2568 int16_t *output; local
2570 output = &intermediate[column_start * 32];
2572 output = &output_org[column_start * 32];
2633 // output[j] = (output[j] + 1 + (output[j] > 0)) >> 2;
2635 // output[j] = (output[j] + 1) >> 2;
2674 _mm_storeu_si128((__m128i *)(output + 0 * 32), tr2_0);
2675 _mm_storeu_si128((__m128i *)(output
[all...]
/hardware/libhardware_legacy/audio/
H A DAudioPolicyManagerBase.cpp30 // A device mask for all audio output devices that are considered "remote" when evaluating
31 // active output devices in isStreamActiveRemotely()
71 // handle output devices
88 // save a copy of the opened output descriptors before any output is opened or closed
94 // handle output device connection
133 // handle output device disconnection
141 // remove device from available output devices
183 // do not force device change on duplicated output because if device is 0, it will
193 } // end if is output devic
466 audio_io_handle_t output = mOutputs.keyAt(i); local
544 audio_io_handle_t output = 0; local
740 startOutput(audio_io_handle_t output, AudioSystem::stream_type stream, int session) argument
808 stopOutput(audio_io_handle_t output, AudioSystem::stream_type stream, int session) argument
865 releaseOutput(audio_io_handle_t output) argument
1219 audio_io_handle_t output = selectOutputForEffects(dstOutputs); local
1594 audio_io_handle_t output = mpClientInterface->openOutput( local
1818 testOutputIndex(audio_io_handle_t output) argument
1903 audio_io_handle_t output = mpClientInterface->openOutput(profile->mModule->mHandle, local
2242 closeOutput(audio_io_handle_t output) argument
2440 getNewDevice(audio_io_handle_t output, bool fromCache) argument
2826 setOutputDevice(audio_io_handle_t output, audio_devices_t device, bool force, int delayMs) argument
3217 computeVolume(int stream, int index, audio_io_handle_t output, audio_devices_t device) argument
3279 checkAndSetVolume(int stream, int index, audio_io_handle_t output, audio_devices_t device, int delayMs, bool force) argument
3337 applyStreamVolumes(audio_io_handle_t output, audio_devices_t device, int delayMs, bool force) argument
3354 setStrategyMute(routing_strategy strategy, bool on, audio_io_handle_t output, int delayMs, audio_devices_t device) argument
3368 setStreamMute(int stream, bool on, audio_io_handle_t output, int delayMs, audio_devices_t device) argument
[all...]
/hardware/samsung_slsi/exynos5/libcamera/
H A DExynosCamera.cpp2368 int ExynosCamera::getFocusDistances(float *output) argument
/hardware/qcom/msm8x74/kernel-headers/linux/
H A Dmsm_mdp.h716 uint32_t output; member in struct:mdss_ad_input
H A Dvideodev2.h2175 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon2078
/hardware/qcom/msm8x74/original-kernel-headers/linux/
H A Dmsm_mdp.h355 /* flags for enable CSC, toggling RGB,YUV input/output */
728 uint32_t output; member in struct:mdss_ad_input
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc496 const char kOutputFlag[] = "output";
515 // Returns true iff Google Test should use colors in the output.
575 output_ = GTEST_FLAG(output);
596 GTEST_FLAG(output) = output_;
644 // (i.e. outside of Unicode range U+0 to U+10FFFF) they will be output
777 // Returns the output format, or "" for normal printed output.
780 // Returns the absolute path of the requested output file, or the
1181 // Initializes the event listener performing XML output as specified by
1647 // The default output fil
4671 std::string output; local
[all...]
/hardware/qcom/msm8x26/kernel-headers/linux/
H A Dmsm_mdp.h885 uint32_t output; member in struct:mdss_ad_input
/hardware/qcom/msm8x26/original-kernel-headers/linux/
H A Dmsm_mdp.h416 /* flags for enable CSC, toggling RGB,YUV input/output */
934 uint32_t output; member in struct:mdss_ad_input
/hardware/qcom/msm8x84/kernel-headers/linux/
H A Dmsm_mdp.h871 uint32_t output; member in struct:mdss_ad_input
H A Dvideodev2.h1249 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon2219
/hardware/qcom/msm8x84/original-kernel-headers/linux/
H A Dmsm_mdp.h414 /* flags for enable CSC, toggling RGB,YUV input/output */
911 uint32_t output; member in struct:mdss_ad_input
H A Dvideodev2.h242 #define V4L2_CAP_VIDEO_OUTPUT 0x00000002 /* Is a video output device */
245 #define V4L2_CAP_VBI_OUTPUT 0x00000020 /* Is a raw VBI output device */
247 #define V4L2_CAP_SLICED_VBI_OUTPUT 0x00000080 /* Is a sliced VBI output device */
249 #define V4L2_CAP_VIDEO_OUTPUT_OVERLAY 0x00000200 /* Can do video output overlay */
255 /* Is a video output device that supports multiplanar formats */
571 * output. Unless you exactly know what
1221 __u32 index; /* Which output */
1223 __u32 type; /* Type of output */
1734 * @vbi: raw VBI capture or output parameters
1735 * @sliced: sliced VBI capture or output parameter
1756 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon2316
[all...]
/hardware/samsung_slsi/exynos5/include/linux/
H A Dvideodev2.h262 #define V4L2_CAP_VIDEO_OUTPUT 0x00000002 /* Is a video output device */
265 #define V4L2_CAP_VBI_OUTPUT 0x00000020 /* Is a raw VBI output device */
267 #define V4L2_CAP_SLICED_VBI_OUTPUT 0x00000080 /* Is a sliced VBI output device */
269 #define V4L2_CAP_VIDEO_OUTPUT_OVERLAY 0x00000200 /* Can do video output overlay */
275 /* Is a video output device that supports multiplanar formats */
555 * output. Unless you exactly know what
1126 __u32 index; /* Which output */
1128 __u32 type; /* Type of output */
2203 * @vbi: raw VBI capture or output parameters
2204 * @sliced: sliced VBI capture or output parameter
2225 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon2711
[all...]

Completed in 1978 milliseconds

1234