Searched defs:out (Results 1 - 25 of 72) sorted by relevance

123

/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
H A DNotificationQueue.h51 * @param out beginning of queue header
56 notificationQueue_t *out,
80 notificationQueue_t *out; member in class:NotificationQueue
/hardware/libhardware/modules/sensors/
H A DSensorEventQueue.cpp39 int SensorEventQueue::getWritableRegion(int requestedLength, sensors_event_t** out) { argument
41 *out = NULL;
57 *out = &mData[firstWritable];
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Didct8x8_test.cc85 double out[64], out2[64]; local
93 out[j + i*8] = temp_out[j];
99 temp_in[j] = out[j*8 + i];
H A Ddct32x32_test.cc40 void reference_32x32_dct_1d(const double in[32], double out[32], int stride) { argument
43 out[k] = 0.0;
45 out[k] += in[n] * cos(kPi * (2 * n + 1) * k / 64.0);
47 out[k] = out[k] * kInvSqrt2;
74 typedef void (*fwd_txfm_t)(const int16_t *in, int16_t *out, int stride);
75 typedef void (*inv_txfm_t)(const int16_t *in, uint8_t *out, int stride);
H A Dfdct4x4_test.cc33 typedef void (*fdct_t)(const int16_t *in, int16_t *out, int stride);
34 typedef void (*idct_t)(const int16_t *in, uint8_t *out, int stride);
35 typedef void (*fht_t) (const int16_t *in, int16_t *out, int stride,
37 typedef void (*iht_t) (const int16_t *in, uint8_t *out, int stride,
43 void fdct4x4_ref(const int16_t *in, int16_t *out, int stride, int tx_type) { argument
44 vp9_fdct4x4_c(in, out, stride);
47 void fht4x4_ref(const int16_t *in, int16_t *out, int stride, int tx_type) { argument
48 vp9_fht4x4_c(in, out, stride, tx_type);
56 virtual void RunFwdTxfm(const int16_t *in, int16_t *out, int stride) = 0;
58 virtual void RunInvTxfm(const int16_t *out, uint8_
204 RunFwdTxfm(const int16_t *in, int16_t *out, int stride) argument
207 RunInvTxfm(const int16_t *out, uint8_t *dst, int stride) argument
247 RunFwdTxfm(const int16_t *in, int16_t *out, int stride) argument
251 RunInvTxfm(const int16_t *out, uint8_t *dst, int stride) argument
[all...]
H A Dfdct8x8_test.cc32 typedef void (*fdct_t)(const int16_t *in, int16_t *out, int stride);
33 typedef void (*idct_t)(const int16_t *in, uint8_t *out, int stride);
34 typedef void (*fht_t) (const int16_t *in, int16_t *out, int stride,
36 typedef void (*iht_t) (const int16_t *in, uint8_t *out, int stride,
42 void fdct8x8_ref(const int16_t *in, int16_t *out, int stride, int tx_type) { argument
43 vp9_fdct8x8_c(in, out, stride);
46 void fht8x8_ref(const int16_t *in, int16_t *out, int stride, int tx_type) { argument
47 vp9_fht8x8_c(in, out, stride, tx_type);
55 virtual void RunFwdTxfm(int16_t *in, int16_t *out, int stride) = 0;
56 virtual void RunInvTxfm(int16_t *out, uint8_
239 RunFwdTxfm(int16_t *in, int16_t *out, int stride) argument
242 RunInvTxfm(int16_t *out, uint8_t *dst, int stride) argument
279 RunFwdTxfm(int16_t *in, int16_t *out, int stride) argument
282 RunInvTxfm(int16_t *out, uint8_t *dst, int stride) argument
[all...]
H A Ddct16x16_test.cc261 typedef void (*fdct_t)(const int16_t *in, int16_t *out, int stride);
262 typedef void (*idct_t)(const int16_t *in, uint8_t *out, int stride);
263 typedef void (*fht_t) (const int16_t *in, int16_t *out, int stride,
265 typedef void (*iht_t) (const int16_t *in, uint8_t *out, int stride,
271 void fdct16x16_ref(const int16_t *in, int16_t *out, int stride, int tx_type) { argument
272 vp9_fdct16x16_c(in, out, stride);
275 void fht16x16_ref(const int16_t *in, int16_t *out, int stride, int tx_type) { argument
276 vp9_fht16x16_c(in, out, stride, tx_type);
284 virtual void RunFwdTxfm(int16_t *in, int16_t *out, int stride) = 0;
286 virtual void RunInvTxfm(int16_t *out, uint8_
435 RunFwdTxfm(int16_t *in, int16_t *out, int stride) argument
438 RunInvTxfm(int16_t *out, uint8_t *dst, int stride) argument
478 RunFwdTxfm(int16_t *in, int16_t *out, int stride) argument
481 RunInvTxfm(int16_t *out, uint8_t *dst, int stride) argument
[all...]
H A Dconvolve_test.cc260 uint8_t* const out = output(); local
264 UUT_->h8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
271 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
277 uint8_t* const out = output(); local
281 UUT_->v8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
288 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
294 uint8_t* const out = output(); local
298 UUT_->hv8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16,
305 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x])
343 uint8_t* const out local
388 uint8_t* const out = output(); local
467 uint8_t* const out = output(); local
555 uint8_t* const out = output(); local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/
H A DEbmlWriter.c125 signed long out = ((val & 0x003FFFFF) | 0x00200000) << 8; local
126 Ebml_Serialize(glob, &out, sizeof(out), 3);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
H A Ddetokenize.c90 int ctx, int n, int16_t* out)
156 out[j] = GetSigned(br, v);
89 GetCoeffs(BOOL_DECODER *br, ProbaArray prob, int ctx, int n, int16_t* out) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans4_dspr2.c231 DECLARE_ALIGNED(32, int16_t, out[4 * 4]);
232 int16_t *outptr = out;
246 vp9_idct4_columns_add_blk_dspr2(&out[0], dest, dest_stride);
253 int32_t out; local
266 out = DCT_CONST_ROUND_SHIFT_TWICE_COSPI_16_64(input_dc);
268 "addi %[out], %[out], 8 \n\t"
269 "sra %[a1], %[out], 4 \n\t"
271 : [out] "+r" (out), [a
[all...]
H A Dvp9_itrans8_dspr2.c453 DECLARE_ALIGNED(32, int16_t, out[8 * 8]);
454 int16_t *outptr = out;
468 idct8_columns_add_blk_dspr2(&out[0], dest, dest_stride);
552 DECLARE_ALIGNED(32, int16_t, out[8 * 8]);
553 int16_t *outptr = out;
567 idct8_columns_add_blk_dspr2(&out[0], dest, dest_stride);
573 iadst8_dspr2(&out[i * 8], temp_out);
590 temp_in[i * 8 + j] = out[j * 8 + i];
604 temp_in[j] = out[j * 8 + i];
622 DECLARE_ALIGNED(32, int16_t, out[
668 int32_t out; local
[all...]
/hardware/intel/img/hwcomposer/common/base/
H A DDrm.cpp523 DrmOutput *out = &mOutputs[output]; local
524 if (!out->connected) {
530 for (int i = 0; i < out->connector->count_props; i++) {
531 props = drmModeGetProperty(mDrmFd, out->connector->props[i]);
539 out->connector->connector_id,
/hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
H A Dand_constructor.c102 void int32_to_long(int32_t in[], long out[], int length) argument
106 out[ii] = (long)in[ii];
/hardware/libhardware_legacy/audio/
H A DAudioHardwareGeneric.cpp81 AudioStreamOutGeneric* out = new AudioStreamOutGeneric(); local
82 status_t lStatus = out->set(this, mFd, devices, format, channels, sampleRate);
87 mOutput = out;
89 delete out;
94 void AudioHardwareGeneric::closeOutputStream(AudioStreamOut* out) { argument
95 if (mOutput && out == mOutput) {
H A DAudioHardwareStub.cpp48 AudioStreamOutStub* out = new AudioStreamOutStub(); local
49 status_t lStatus = out->set(format, channels, sampleRate);
54 return out;
55 delete out;
59 void AudioHardwareStub::closeOutputStream(AudioStreamOut* out) argument
61 delete out;
H A DA2dpAudioInterface.cpp81 A2dpAudioStreamOut* out = new A2dpAudioStreamOut(); local
82 if ((err = out->set(devices, format, channels, sampleRate)) == NO_ERROR) {
83 mOutput = out;
87 delete out;
95 void A2dpAudioInterface::closeOutputStream(AudioStreamOut* out) { argument
96 if (mOutput == 0 || mOutput != out) {
97 mHardwareInterface->closeOutputStream(out);
H A DAudioDumpInterface.cpp106 void AudioDumpInterface::closeOutputStream(AudioStreamOut* out) argument
108 AudioStreamOutDump *dumpOut = (AudioStreamOutDump *)out;
115 ALOGV("closeOutputStream() output %p", out);
/hardware/qcom/audio/hal/
H A Dvoice.c112 uc_info->stream.out = adev->current_call_output ;
272 struct stream_out *out)
276 ret = voice_extn_check_and_set_incall_music_usecase(adev, out);
465 usecase->stream.out = adev->current_call_output;
271 voice_check_and_set_incall_music_usecase(struct audio_device *adev, struct stream_out *out) argument
/hardware/qcom/audio/hal/voice_extn/
H A Dvoice_extn.c269 } //end out switch loop
552 struct stream_out *out)
558 out->usecase = USECASE_INCALL_MUSIC_UPLINK;
560 out->usecase = USECASE_INCALL_MUSIC_UPLINK2;
566 out->config = pcm_config_incall_music;
567 out->supported_channel_masks[0] = AUDIO_CHANNEL_OUT_MONO;
568 out->channel_mask = AUDIO_CHANNEL_OUT_MONO;
551 voice_extn_check_and_set_incall_music_usecase(struct audio_device *adev, struct stream_out *out) argument
/hardware/qcom/display/msm8084/libcopybit/
H A Dcopybit.cpp114 /** Determine the intersection of lhs & rhs store in out */
115 static void intersect(struct copybit_rect_t *out, argument
118 out->l = max(lhs->l, rhs->l);
119 out->t = max(lhs->t, rhs->t);
120 out->r = min(lhs->r, rhs->r);
121 out->b = min(lhs->b, rhs->b);
/hardware/qcom/display/msm8226/libcopybit/
H A Dcopybit.cpp114 /** Determine the intersection of lhs & rhs store in out */
115 static void intersect(struct copybit_rect_t *out, argument
118 out->l = max(lhs->l, rhs->l);
119 out->t = max(lhs->t, rhs->t);
120 out->r = min(lhs->r, rhs->r);
121 out->b = min(lhs->b, rhs->b);
/hardware/qcom/display/msm8960/libcopybit/
H A Dcopybit.cpp112 /** Determine the intersection of lhs & rhs store in out */
113 static void intersect(struct copybit_rect_t *out, argument
116 out->l = max(lhs->l, rhs->l);
117 out->t = max(lhs->t, rhs->t);
118 out->r = min(lhs->r, rhs->r);
119 out->b = min(lhs->b, rhs->b);
/hardware/qcom/display/msm8974/libcopybit/
H A Dcopybit.cpp114 /** Determine the intersection of lhs & rhs store in out */
115 static void intersect(struct copybit_rect_t *out, argument
118 out->l = max(lhs->l, rhs->l);
119 out->t = max(lhs->t, rhs->t);
120 out->r = min(lhs->r, rhs->r);
121 out->b = min(lhs->b, rhs->b);
/hardware/libhardware/modules/camera/
H A DCamera.cpp197 // Clear out last seen settings metadata
419 camera3_stream_buffer_t *out)
434 out->stream = in->stream;
435 out->buffer = in->buffer;
436 out->status = CAMERA3_BUFFER_STATUS_OK;
438 out->acquire_fence = -1;
439 out->release_fence = -1;
418 processCaptureBuffer(const camera3_stream_buffer_t *in, camera3_stream_buffer_t *out) argument

Completed in 8699 milliseconds

123