Searched refs:mode (Results 1 - 25 of 557) sorted by relevance

1234567891011>>

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/
H A Dreconintra_arm.c22 int mode,
31 int mode = x->mode_info_context->mbmi.mode; local
35 vp8_build_intra_predictors_mby_neon_func(y_buffer, ypred_ptr, y_stride, mode, Up, Left);
42 int mode,
51 int mode = x->mode_info_context->mbmi.mode; local
55 vp8_build_intra_predictors_mby_s_neon_func(y_buffer, ypred_ptr, y_stride, mode, Up, Left);
/hardware/intel/img/psb_video/src/android/
H A Dpsb_mds.cpp60 int mode = MDS_MODE_NONE; local
62 mode = mListener->getDisplayMode(false);
63 if (checkMode(mode, (MDS_VIDEO_ON | MDS_HDMI_CONNECTED)))
64 mode = MDS_HDMI_VIDEO_ISPLAYING;
65 else if (checkMode(mode, (MDS_VIDEO_ON | MDS_WIDI_ON)))
66 mode = MDS_WIDI_VIDEO_ISPLAYING;
68 mode = MDS_INIT_VALUE;
69 //ALOGV("mds mode is %d", mode);
70 return mode;
84 int mode = mListener->getDisplayMode(false); local
[all...]
/hardware/qcom/msm8960/kernel-headers/linux/
H A Dmsm_rmnet.h27 #define RMNET_IS_MODE_QOS(mode) ((mode & RMNET_MODE_QOS) == RMNET_MODE_QOS)
29 #define RMNET_IS_MODE_IP(mode) ((mode & RMNET_MODE_LLP_IP) == RMNET_MODE_LLP_IP)
/hardware/qcom/msm8960/original-kernel-headers/linux/
H A Dmsm_rmnet.h17 /* Bitmap macros for RmNET driver operation mode. */
26 #define RMNET_IS_MODE_QOS(mode) \
27 ((mode & RMNET_MODE_QOS) == RMNET_MODE_QOS)
28 #define RMNET_IS_MODE_IP(mode) \
29 ((mode & RMNET_MODE_LLP_IP) == RMNET_MODE_LLP_IP)
40 RMNET_IOCTL_GET_OPMODE = 0x000089F7, /* Get operation mode */
/hardware/intel/common/libwsbm/
H A Dautogen.sh12 $srcdir/configure --enable-maintainer-mode "$@"
/hardware/libhardware_legacy/audio/
H A DAudioHardwareInterface.cpp54 static const char* displayMode(int mode) argument
56 if ((mode < AudioSystem::MODE_INVALID) || (mode >= AudioSystem::NUM_MODES))
58 return routingModeStrings[mode+3];
86 status_t AudioHardwareBase::setMode(int mode) argument
89 ALOGD("setMode(%s)", displayMode(mode));
91 if ((mode < 0) || (mode >= AudioSystem::NUM_MODES))
93 if (mMode == mode)
95 mMode = mode;
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_mbgraph.h23 MB_PREDICTION_MODE mode; member in union:__anon1152::__anon1153::__anon1154
/hardware/libhardware_legacy/include/hardware_legacy/
H A DAudioHardwareBase.h39 * setMode is called when the audio mode changes. NORMAL mode is for
43 virtual status_t setMode(int mode);
55 /** returns true if the given mode maps to a telephony or VoIP call is in progress */
56 virtual bool isModeInCall(int mode) argument
57 { return ((mode == AudioSystem::MODE_IN_CALL)
58 || (mode == AudioSystem::MODE_IN_COMMUNICATION)); };
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
H A DDrm.cpp198 // current mode
200 ILOGTRACE("mode is valid, kernel mode settings");
201 memcpy(&output->mode, &output->crtc->mode, sizeof(drmModeModeInfo));
205 ELOGTRACE("mode is invalid. Kernel mode setting is not completed");
229 ILOGTRACE("mode is: %dx%d@%dHz", output->mode.hdisplay, output->mode
277 drmModeModeInfoPtr mode; local
321 drmModeModeInfoPtr mode; local
419 getModeInfo(int device, drmModeModeInfo& mode) argument
508 setDpmsMode(int device, int mode) argument
595 drmModeModeInfoPtr mode; local
608 setDrmMode(int index, drmModeModeInfoPtr mode) argument
[all...]
H A DDrm.h60 bool setDpmsMode(int device, int mode);
62 bool getModeInfo(int device, drmModeModeInfo& mode);
65 bool isSameDrmMode(drmModeModeInfoPtr mode, drmModeModeInfoPtr base) const;
72 bool setDrmMode(int index, drmModeModeInfoPtr mode);
90 drmModeModeInfo mode; member in struct:android::intel::Drm::DrmOutput
/hardware/bsp/intel/peripheral/libmraa/api/mraa/
H A Dgpio.hpp119 * Set the edge mode for ISR
121 * @param mode The edge mode to set
125 edge(Edge mode) argument
127 return (Result) mraa_gpio_edge_mode(m_gpio, (mraa_gpio_edge_t) mode);
131 isr(Edge mode, PyObject* pyfunc, PyObject* args) argument
133 return (Result) mraa_gpio_isr(m_gpio, (mraa_gpio_edge_t) mode, (void (*) (void*)) pyfunc, (void*) args);
166 isr(Edge mode, v8::Handle<v8::Function> func) argument
173 return (Result) mraa_gpio_isr(m_gpio, (mraa_gpio_edge_t) mode, &uvwork, this);
177 isr(Edge mode, jobjec argument
192 isr(Edge mode, void (*fptr)(void*), void* args) argument
223 mode(Mode mode) argument
[all...]
/hardware/intel/img/hwcomposer/merrifield/common/base/
H A DDrm.h56 bool setDpmsMode(int device, int mode);
58 bool getModeInfo(int device, drmModeModeInfo& mode);
60 bool isSameDrmMode(drmModeModeInfoPtr mode, drmModeModeInfoPtr base) const;
66 bool setDrmMode(int index, drmModeModeInfoPtr mode);
84 drmModeModeInfo mode; member in struct:android::intel::Drm::DrmOutput
H A DDrm.cpp195 // current mode
197 ITRACE("mode is valid, kernel mode settings");
198 memcpy(&output->mode, &output->crtc->mode, sizeof(drmModeModeInfo));
201 ITRACE("mode is invalid, setting preferred mode");
225 ITRACE("mode is: %dx%d@%dHz", output->mode.hdisplay, output->mode
273 drmModeModeInfoPtr mode; local
317 drmModeModeInfoPtr mode; local
415 getModeInfo(int device, drmModeModeInfo& mode) argument
471 setDpmsMode(int device, int mode) argument
559 drmModeModeInfoPtr mode; local
572 setDrmMode(int index, drmModeModeInfoPtr mode) argument
[all...]
/hardware/qcom/display/msm8909/libhdmi/
H A Dhdmi.h41 // Predetermined ordering for each mode
43 EDIDData(int mode, int width, int height, int fps, int order) argument
44 : mMode(mode), mWidth(width), mHeight(height), mFps(fps), mModeOrder(order)
69 for scaling mode */
81 bool isValidMode(int mode);
82 int getModeOrder(int mode);
85 bool isInterlacedMode(int mode);
/hardware/qcom/gps/core/
H A Dgps_extended.h40 LocPositionMode mode; member in struct:LocPosMode
50 mode(m), recurrence(recr),
64 mode(LOC_POSITION_MODE_MS_BASED),
74 return anotherMode.mode == mode &&
/hardware/qcom/gps/msm8084/core/
H A Dgps_extended.h40 LocPositionMode mode; member in struct:LocPosMode
50 mode(m), recurrence(recr),
64 mode(LOC_POSITION_MODE_MS_BASED),
74 return anotherMode.mode == mode &&
/hardware/qcom/gps/msm8909/core/
H A Dgps_extended.h40 LocPositionMode mode; member in struct:LocPosMode
50 mode(m), recurrence(recr),
64 mode(LOC_POSITION_MODE_MS_BASED),
74 return anotherMode.mode == mode &&
/hardware/qcom/gps/msm8960/core/
H A Dgps_extended.h40 LocPositionMode mode; member in struct:LocPosMode
50 mode(m), recurrence(recr),
64 mode(LOC_POSITION_MODE_MS_BASED),
74 return anotherMode.mode == mode &&
/hardware/qcom/gps/msm8994/core/
H A Dgps_extended.h40 LocPositionMode mode; member in struct:LocPosMode
50 mode(m), recurrence(recr),
64 mode(LOC_POSITION_MODE_MS_BASED),
74 return anotherMode.mode == mode &&
/hardware/qcom/gps/msm8996/core/
H A Dgps_extended.h40 LocPositionMode mode; member in struct:LocPosMode
50 mode(m), recurrence(recr),
64 mode(LOC_POSITION_MODE_MS_BASED),
74 return anotherMode.mode == mode &&
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_ports/
H A Dx86.h213 x87_set_control_word(unsigned short mode) { argument
214 __asm__ __volatile__("fldcw %0" : : "m"(*&mode));
218 unsigned short mode; local
219 __asm__ __volatile__("fstcw %0\n\t":"=m"(*&mode):);
220 return mode;
224 x87_set_control_word(unsigned short mode) { argument
225 asm volatile("fldcw %0" : : "m"(*&mode));
229 unsigned short mode; local
230 asm volatile("fstcw %0\n\t":"=m"(*&mode):);
231 return mode;
241 x87_set_control_word(unsigned short mode) argument
246 unsigned short mode; local
254 unsigned short mode = x87_get_control_word(); local
[all...]
/hardware/qcom/display/msm8994/libhdmi/
H A Dhdmi.h41 // Predetermined ordering for each mode
43 EDIDData(int mode, int width, int height, int fps, int order) argument
44 : mMode(mode), mWidth(width), mHeight(height), mFps(fps), mModeOrder(order)
69 for scaling mode */
86 bool isValidMode(int mode);
87 int getModeOrder(int mode);
90 bool isInterlacedMode(int mode);
95 int getModeIndex(int mode);
103 // mActiveConfig is the index correponding to the currently active mode for
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/
H A Dquantize_arm.c29 int has_2nd_order = (x->e_mbd.mode_info_context->mbmi.mode != B_PRED
30 && x->e_mbd.mode_info_context->mbmi.mode != SPLITMV);
43 int has_2nd_order=(x->e_mbd.mode_info_context->mbmi.mode != B_PRED
44 && x->e_mbd.mode_info_context->mbmi.mode != SPLITMV);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_reconintra.h22 TX_SIZE tx_size, MB_PREDICTION_MODE mode,
/hardware/qcom/gps/loc_api/libloc_api_50001/
H A Dloc_eng_dmn_conn_glue_msg.h40 int loc_eng_dmn_conn_glue_msgget(const char * q_path, int mode);

Completed in 876 milliseconds

1234567891011>>