Searched defs:mode (Results 101 - 125 of 197) sorted by relevance

12345678

/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
H A DOMX3A.cpp48 // 1. Find camera's scene mode LUT
57 // 2. Find scene mode entry in table
76 int mode = 0; local
87 mode = getLUTvalue_HALtoOMX( str, SceneLUT);
88 if ( mFirstTimeInit || ((str != NULL) && ( mParameters3A.SceneMode != mode )) ) {
89 if ( 0 <= mode ) {
90 mParameters3A.SceneMode = mode;
91 if ((mode == OMX_Manual) && (mFirstTimeInit == false)){//Auto mode
94 if ((mode !
[all...]
/hardware/intel/audio_media/hdmi/
H A Dtinyaudio_hw.c855 static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode) argument
858 UNUSED_PARAMETER(mode);
/hardware/intel/common/libwsbm/src/
H A Dwsbm_manager.c370 wsbmBOMap(struct _WsbmBufferObject *buf, unsigned mode) argument
376 retval = storage->pool->map(storage, mode, &virtual);
393 wsbmBOSyncForCpu(struct _WsbmBufferObject *buf, unsigned mode) argument
397 return storage->pool->syncforcpu(storage, mode);
401 wsbmBOReleaseFromCpu(struct _WsbmBufferObject *buf, unsigned mode) argument
405 storage->pool->releasefromcpu(storage, mode);
H A Dwsbm_slabpool.c888 pool_map(struct _WsbmBufStorage *buf, unsigned mode __attribute__ ((unused)), void **virtual)
898 pool_releaseFromCpu(struct _WsbmBufStorage *buf, unsigned mode __attribute__ ((unused)))
907 pool_syncForCpu(struct _WsbmBufStorage *buf, unsigned mode) argument
913 if ((mode & WSBM_SYNCCPU_DONT_BLOCK)) {
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
H A Dblockd.h80 B_PRED, /* block based prediction, each block has its own prediction mode */
157 uint8_t mode, uv_mode; member in struct:__anon513
178 MB_PREDICTION_MODE mode; member in struct:__anon514
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dbitstream.c570 const MB_PREDICTION_MODE mode = mi->mode; local
599 write_ymode(w, mode, pc->fc.ymode_prob);
601 if (mode == B_PRED)
637 accum_mv_refs(mode, ct);
646 write_mv_ref(w, mode, mv_ref_p);
648 switch (mode) /* new, split require MVs */
678 blockmode = cpi->mb.partition_info->bmi[j].mode;
751 const int ym = m->mbmi.mode;
1402 /* Write out loop filter deltas applied at the MB level based on mode
[all...]
H A Dpickinter.c146 B_PREDICTION_MODE mode; local
155 for (mode = B_DC_PRED; mode <= B_HE_PRED; mode++)
159 rate = mode_costs[mode];
161 vp8_intra4x4_predict(Above, yleft, dst_stride, mode,
171 *best_mode = mode;
398 * therefore, only need to modify MVcount in NEWMV mode. */
399 if (xd->mode_info_context->mbmi.mode == NEWMV)
435 /* Read lower-resolution mode
1256 MB_PREDICTION_MODE mode, best_mode = DC_PRED; local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_blockd.h82 static INLINE int is_inter_mode(MB_PREDICTION_MODE mode) { argument
83 return mode >= NEARESTMV && mode <= NEWMV;
90 #define INTER_OFFSET(mode) ((mode) - NEARESTMV)
125 MB_PREDICTION_MODE mode; member in struct:__anon570
149 : mi->mbmi.mode;
260 return intra_mode_to_tx_type_lookup[mbmi->mode];
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
H A Dvp9_cx_iface.c184 // automatic keyframe placement mode.
188 ERROR("kf_min_dist not supported in auto mode, use 0 "
293 oxcf->mode = MODE_GOODQUALITY;
296 oxcf->mode = MODE_FIRSTPASS;
299 oxcf->mode = MODE_SECONDPASS_BEST;
391 printf("Mode: %d\n", oxcf->mode);
588 // Use best quality mode if no deadline is given.
598 // use good quality mode. Otherwise use realtime mode.
608 if (ctx->oxcf.mode !
997 vpx_scaling_mode_t *const mode = va_arg(args, vpx_scaling_mode_t *); local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Dvpxdec.c122 FilterMode mode) {
133 mode);
121 vpx_image_scale(vpx_image_t *src, vpx_image_t *dst, FilterMode mode) argument
/hardware/intel/img/hwcomposer/ips/common/
H A DOverlayPlaneBase.cpp376 // this is for sw decode with tiled buffer in landscape mode
601 drmModeModeInfoPtr mode = &mModeInfo; local
603 if (mode->hdisplay == 0 || mode->vdisplay == 0)
610 if ((x + w) > mode->hdisplay)
611 w = mode->hdisplay - x;
612 if ((y + h) > mode->vdisplay)
613 h = mode->vdisplay - y;
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/
H A Ddata_builder.c898 int mode; local
907 mode = 0;
909 mode |= INV_GYRO_NEW;
911 mode |= INV_ACCEL_NEW;
913 mode |= INV_MAG_NEW;
915 mode |= INV_TEMP_NEW;
917 mode |= INV_QUAT_NEW;
922 if (mode & inv_data_builder.process[kk].data_required) {
/hardware/invensense/6515/libsensors_iio/software/core/mllite/
H A Ddata_builder.c49 int mode; member in struct:inv_data_builder_t
338 if (inv_data_builder.mode & INV_QUAT_NEW)
344 if (inv_data_builder.mode & INV_GYRO_NEW)
350 if (inv_data_builder.mode & INV_ACCEL_NEW)
356 if (inv_data_builder.mode & INV_MAG_NEW)
382 if (inv_data_builder.mode & INV_QUAT_NEW)
1368 inv_data_builder.mode = 0;
1370 inv_data_builder.mode |= INV_GYRO_NEW;
1372 inv_data_builder.mode |= INV_ACCEL_NEW;
1374 inv_data_builder.mode |
[all...]
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/
H A Ddata_builder.c1132 int mode; local
1141 mode = 0;
1143 mode |= INV_GYRO_NEW;
1145 mode |= INV_ACCEL_NEW;
1147 mode |= INV_MAG_NEW;
1149 mode |= INV_TEMP_NEW;
1151 mode |= INV_QUAT_NEW;
1153 mode |= INV_PRESSURE_NEW;
1158 if (mode & inv_data_builder.process[kk].data_required) {
/hardware/libhardware/modules/usbaudio/
H A Daudio_hw.c44 * 2 forces to legacy stereo mode.
1058 static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode) argument
/hardware/libhardware_legacy/audio/
H A Daudio_hw_hal.cpp443 static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode) argument
447 return ladev->hwif->setMode((int) mode);
/hardware/libhardware_legacy/include/hardware_legacy/
H A Dlink_layer_stats.h63 wifi_interface_mode mode; // interface mode member in struct:__anon1356
197 u32 aggressive_statistics_gathering; // set for field debug mode. Driver should collect all statistics regardless of performance impact.
/hardware/qcom/audio/hal/
H A Daudio_hw.h199 audio_mode_t mode; member in struct:audio_device
/hardware/qcom/audio/hal/msm8960/
H A Dplatform.c562 if (my_data->adev->mode == AUDIO_MODE_IN_CALL) {
590 audio_mode_t mode = adev->mode; local
687 audio_mode_t mode = adev->mode; local
712 ALOGE("%s: Invalid TTY mode (%#x)", __func__, adev->voice.tty_mode);
/hardware/qcom/audio/hal/msm8974/
H A Dplatform.c1116 if (adev->mode != AUDIO_MODE_IN_CALL)
1181 audio_mode_t mode = adev->mode; local
1301 audio_mode_t mode = adev->mode; local
1328 ALOGE("%s: Invalid TTY mode (%#x)", __func__, adev->voice.tty_mode);
/hardware/qcom/audio/legacy/alsa_sound/
H A Dalsa_default.cpp78 static void s_set_voc_rec_mode(uint8_t mode);
173 property_get("persist.audio.fluence.mode",value,"0");
197 static void switchDevice(alsa_handle_t *handle, uint32_t devices, uint32_t mode);
392 void switchDevice(alsa_handle_t *handle, uint32_t devices, uint32_t mode) argument
401 ALOGD("%s: device %d mode:%d", __FUNCTION__, devices, mode);
403 if ((mode == AudioSystem::MODE_IN_CALL) || (mode == AudioSystem::MODE_IN_COMMUNICATION)) {
412 if (mode == AudioSystem::MODE_IN_CALL) {
414 } else if (mode
1182 s_route(alsa_handle_t *handle, uint32_t devices, int mode) argument
1642 s_set_voip_config(int mode, int rate) argument
1705 s_set_voc_rec_mode(uint8_t mode) argument
[all...]
H A Daudio_hw_hal.cpp472 static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode) argument
475 return qadev->hwif->setMode(mode);
/hardware/qcom/display/msm8960/libexternal/
H A Dexternal.cpp93 * mode set thru adb shell */
94 int mode = getUserMode(); local
95 if (mode == -1) {
96 //Get the best mode and set
97 mode = getBestMode();
99 setResolution(mode);
390 // Parse this string to get mode(int)
483 int ExternalDisplay::getModeOrder(int mode) argument
487 switch (mode) {
526 /// Returns the user mode se
531 int mode = atoi(property_value); local
547 int mode = mEDIDModes[i]; local
603 const struct disp_mode_timing_type *mode = local
[all...]
/hardware/qcom/gps/loc_api/libloc_api_50001/
H A Dloc.cpp69 static int loc_set_position_mode(GpsPositionMode mode, GpsPositionRecurrence recurrence,
490 Sets the mode and fix frequency for the tracking session.
502 static int loc_set_position_mode(GpsPositionMode mode, argument
511 switch (mode) {
/hardware/qcom/msm8x74/original-kernel-headers/video/
H A Dmsm_hdmi_modes.h210 struct msm_hdmi_mode_timing_info mode = MODE##_TIMING; \
211 LUT[MODE] = mode;\
218 struct msm_hdmi_mode_timing_info mode = \
220 (__lut)[i] = mode; \
282 static inline const char *msm_hdmi_mode_2string(uint32_t mode) argument
284 switch (mode) {

Completed in 947 milliseconds

12345678