Searched refs:mask (Results 151 - 175 of 270) sorted by relevance

1234567891011

/hardware/qcom/gps/msm8960/core/
H A DLocApiBase.h68 open(LOC_API_ADAPTER_EVENT_MASK_T mask);
/hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
H A DOMX_Debug.h97 void OMX_Log(unsigned int mask, const char *szFileName, int iLineNum,
/hardware/ti/omap4-aah/domx/omx_core/inc/
H A DOMX_Debug.h122 void OMX_Log(unsigned int mask, const char *szFileName, int iLineNum,
/hardware/ti/omap4xxx/domx/omx_core/inc/
H A DOMX_Debug.h122 void OMX_Log(unsigned int mask, const char *szFileName, int iLineNum,
/hardware/ti/omap4-aah/camera/
H A DBaseCameraAdapter.cpp1288 unsigned int mask; local
1296 for( mask = 1; mask < CameraFrame::ALL_FRAMES; mask <<= 1){
1297 if( mask & frame->mFrameMask ){
1298 switch( mask ){
1339 CAMHAL_LOGEB("FRAMETYPE NOT SUPPORTED 0x%x", mask);
1342 frame->mFrameMask &= ~mask;
1415 int BaseCameraAdapter::setInitFrameRefCount(CameraBuffer * buf, unsigned int mask) argument
1428 if( lmask & mask ){
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/
H A Dsimpleloopfilter_v6.asm86 sel r10, r8, lr ; filter mask: F or 0
105 and r3, r3, r10 ; vp8_filter &= mask
192 sel lr, r10, r8 ; filter mask
214 and r3, r3, lr ; vp8_filter &= mask
H A Dloopfilter_v6.asm150 sel lr, r11, r12 ; filter mask: lr
194 and r7, r7, lr ; vp8_filter &= mask;
360 sel lr, r11, r12 ; filter mask: lr
374 sel r6, r12, r11 ; hev mask: r6
401 and r7, r7, lr ; vp8_filter &= mask (lr is free)
687 sel lr, r11, r12 ; filter mask: lr
703 sel r6, r12, r11 ; hev mask: r6
759 and r7, r7, lr ; vp8_filter &= mask
965 sel lr, r11, r12 ; filter mask: lr
983 sel r6, r12, r11 ; hev mask
[all...]
/hardware/intel/img/psb_video/src/
H A Dpsb_cmdbuf.c317 * "mask" determines which bits of the target DWORD will be updated with the so
324 uint32_t mask,
354 new_val = (background & ~mask) | (new_val & mask);
360 reloc->mask = mask;
436 uint64_t mask = PSB_GPU_ACCESS_MASK; local
452 req->set_flags = (PSB_GPU_ACCESS_READ | PSB_GPU_ACCESS_WRITE) & mask;
453 req->clear_flags = (~(PSB_GPU_ACCESS_READ | PSB_GPU_ACCESS_WRITE)) & mask;
320 psb_cmdbuf_add_relocation(psb_cmdbuf_p cmdbuf, uint32_t *addr_in_cmdbuf, psb_buffer_p ref_buffer, uint32_t buf_offset, uint32_t mask, uint32_t background, uint32_t align_shift, uint32_t dst_buffer) argument
H A Dpsb_overlay.c278 i830_swidth(unsigned int offset, unsigned int width, unsigned int mask, int shift) argument
280 int swidth = ((offset + width + mask) >> shift) - (offset >> shift);
421 unsigned int mask, shift, offsety, offsetu; local
529 mask = 0x3f;
542 swidthy = i830_swidth(offsety, width, mask, shift);
543 swidthuv = i830_swidth(offsetu, width / 2, mask, shift);
550 swidthy = i830_swidth(offsety, width, mask, shift);
551 swidthuv = i830_swidth(offsetu, width / 2, mask, shift);
559 swidth = ((offsety + (width << 1) + mask) >> shift) -
H A Dpsb_cmdbuf.h145 * "mask" determines which bits of the target DWORD will be updated with the so
152 uint32_t mask,
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dbcmutils.h627 #define VALID_MASK(mask) !((mask) & ((mask) + 1))
741 uint32 mask; member in struct:bcm_bit_desc_ex
823 #define mboolmaskset(mb, mask, val) ((mb) = (((mb) & ~(mask)) | (val)))
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
H A Dloopfilter_block_sse2.asm29 pmaxub %1, %2 ; accumulate mask
41 pmaxub %1, %5 ; accumulate mask
45 pmaxub %1, %6 ; accumulate mask
47 pmaxub %1, %7 ; accumulate mask
57 pcmpeqb %1, zero ; mask
65 ; %5: mask
83 pand %5, scratch2 ; &= mask
H A Dloopfilter_sse2.asm25 ; Use of pmaxub instead of psubusb to compute filter mask was seen
172 pcmpeqb xmm1, xmm7 ; mask xmm1
197 pand xmm2, xmm4 ; high var mask (hvm)(p1 - q1)
205 pand xmm1, xmm2 ; mask filter values we don't care about
409 pand xmm1, xmm2 ; mask filter values we don't care about
864 por xmm1, xmm0 ; mask
955 ; calculate filter mask and high edge variance
1020 ; calculate filter mask and high edge variance
1169 ; calculate filter mask and high edge variance
1236 ; calculate filter mask an
[all...]
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
H A DOMXCameraAdapter.cpp2940 unsigned int mask = 0xFFFF; local
3008 mask = (unsigned int)CameraFrame::SNAPSHOT_FRAME;
3023 mask = (unsigned int)CameraFrame::PREVIEW_FRAME_SYNC;
3028 mask |= (unsigned int)CameraFrame::VIDEO_FRAME_SYNC;
3045 stat = sendCallBacks(cameraFrame, pBuffHeader, mask, pPortParam);
3078 mask = (unsigned int)CameraFrame::FRAME_DATA_SYNC;
3080 stat = sendCallBacks(cameraFrame, pBuffHeader, mask, pPortParam);
3092 mask = (unsigned int) CameraFrame::IMAGE_FRAME;
3100 mask = (unsigned int) CameraFrame::IMAGE_FRAME;
3113 mask
3233 sendCallBacks(CameraFrame frame, OMX_IN OMX_BUFFERHEADERTYPE *pBuffHeader, unsigned int mask, OMXCameraPortParameters *port) argument
[all...]
/hardware/ti/omap4-aah/camera/OMXCameraAdapter/
H A DOMXCameraAdapter.cpp3302 unsigned int mask = 0xFFFF; local
3318 mask = (unsigned int)CameraFrame::REPROCESS_INPUT_FRAME;
3320 stat = sendCallBacks(cameraFrame, pBuffHeader, mask, pPortParam);
3430 unsigned int mask = 0xFFFF; local
3495 mask = (unsigned int)CameraFrame::SNAPSHOT_FRAME;
3510 mask = (unsigned int)CameraFrame::PREVIEW_FRAME_SYNC;
3515 mask |= (unsigned int)CameraFrame::VIDEO_FRAME_SYNC;
3532 stat = sendCallBacks(cameraFrame, pBuffHeader, mask, pPortParam);
3589 mask = (unsigned int)CameraFrame::FRAME_DATA_SYNC;
3591 stat = sendCallBacks(cameraFrame, pBuffHeader, mask, pPortPara
3830 sendCallBacks(CameraFrame frame, OMX_IN OMX_BUFFERHEADERTYPE *pBuffHeader, unsigned int mask, OMXCameraPortParameters *port) argument
[all...]
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
H A Dmain.c219 if(_dmem.int_status[cur].mask)
501 if((_dmem.stream_info[i].pending_interrupt) && _dmem.int_status[i].mask)
/hardware/qcom/audio/msm8909/post_proc/
H A Dequalizer.c428 context->config.inputCfg.mask = EFFECT_CONFIG_ALL;
436 context->config.outputCfg.mask = EFFECT_CONFIG_ALL;
H A Dvirtualizer.c94 * Check if a channel mask + audio device is supported by this implementation
97 * channel_mask channel mask of input buffer
195 * Get the virtual speaker angles for a channel mask + audio device configuration
199 * channel_mask the channel mask of the input to virtualize
204 * int32_t a bit mask with a single value selected for each speaker, following
429 context->config.inputCfg.mask = EFFECT_CONFIG_ALL;
437 context->config.outputCfg.mask = EFFECT_CONFIG_ALL;
/hardware/qcom/audio/post_proc/
H A Dequalizer.c437 context->config.inputCfg.mask = EFFECT_CONFIG_ALL;
445 context->config.outputCfg.mask = EFFECT_CONFIG_ALL;
/hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
H A DLocEngAdapter.cpp63 LocEngAdapter::LocEngAdapter(LOC_API_ADAPTER_EVENT_MASK_T mask, argument
66 LocAdapterBase(mask,
583 LOC_LOGD("%s] update registration mask succeed.", __func__);
585 LOC_LOGE("%s] update registration mask failed.", __func__);
/hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
H A DLocEngAdapter.cpp63 LocEngAdapter::LocEngAdapter(LOC_API_ADAPTER_EVENT_MASK_T mask, argument
66 LocAdapterBase(mask,
583 LOC_LOGD("%s] update registration mask succeed.", __func__);
585 LOC_LOGE("%s] update registration mask failed.", __func__);
/hardware/invensense/6515/libsensors_iio/software/core/mllite/
H A Ddata_builder.h262 void inv_set_accel_bias_mask(const long *bias, int accuracy, int mask);
/hardware/libhardware/include/hardware/
H A Daudio_effect.h773 // regard to the channel mask definition in audio.h, audio_channel_mask_t e.g :
817 uint32_t channels; // channel mask (see audio_channel_mask_t in audio.h)
821 uint16_t mask; // indicates which of the above fields is valid member in struct:buffer_config_s
842 audio_channel_mask_t main_channels; // channel mask for main channels
843 audio_channel_mask_t aux_channels; // channel mask for auxiliary channels
847 // Values for bit field "mask" in buffer_config_t. If a bit is set, the corresponding field
H A Daudio_policy.h106 uint32_t mask);
/hardware/libhardware/modules/audio/
H A Daudio_policy.c67 uint32_t mask)
66 ap_set_ringer_mode(struct audio_policy *pol, uint32_t mode, uint32_t mask) argument

Completed in 2427 milliseconds

1234567891011