Searched refs:mask (Results 51 - 75 of 270) sorted by relevance

1234567891011

/hardware/qcom/gps/msm8996/core/
H A DLocAdapterBase.h53 LocAdapterBase(const LOC_API_ADAPTER_EVENT_MASK_T mask,
56 checkMask(LOC_API_ADAPTER_EVENT_MASK_T mask) const {
57 return mEvtMask & mask;
H A DLocAdapterBase.cpp44 LocAdapterBase::LocAdapterBase(const LOC_API_ADAPTER_EVENT_MASK_T mask, argument
46 mEvtMask(mask), mContext(context),
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/
H A Dvp9_loopfilter_intrin_avx2.c16 __m128i mask, hev, flat, flat2; local
64 mask = _mm_subs_epu8(_mm_adds_epu8(abs_p0q0, abs_p1q1), blimit);
65 mask = _mm_xor_si128(_mm_cmpeq_epi8(mask, zero), ff);
66 // mask |= (abs(p0 - q0) * 2 + abs(p1 - q1) / 2 > blimit) * -1;
67 mask = _mm_max_epu8(abs_p1p0, mask);
68 // mask |= (abs(p1 - p0) > limit) * -1;
69 // mask |= (abs(q1 - q0) > limit) * -1;
76 mask
398 __m128i mask, hev, flat, flat2; local
[all...]
H A Dvp9_loopfilter_intrin_sse2.c25 __m128i mask, hev, flat, flat2; local
64 mask = _mm_subs_epu8(_mm_adds_epu8(abs_p0q0, abs_p1q1), blimit);
65 mask = _mm_xor_si128(_mm_cmpeq_epi8(mask, zero), ff);
66 // mask |= (abs(p0 - q0) * 2 + abs(p1 - q1) / 2 > blimit) * -1;
67 mask = _mm_max_epu8(abs_p1p0, mask);
68 // mask |= (abs(p1 - p0) > limit) * -1;
69 // mask |= (abs(q1 - q0) > limit) * -1;
75 mask
386 __m128i mask, hev, flat, flat2; local
873 __m128i mask, hev, flat; local
1106 __m128i mask, hev, flat; local
1347 __m128i mask, hev, flat; local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/
H A Dvp9_loopfilter_masks_dspr2.h26 * compute hev and mask in the same function */
33 uint32_t *mask) {
40 /* mask |= (abs(p3 - p2) > limit) */
47 /* mask |= (abs(p2 - p1) > limit) */
54 /* mask |= (abs(p1 - p0) > limit)
65 /* mask |= (abs(q1 - q0) > limit)
76 /* mask |= (abs(q2 - q1) > limit) */
84 /* mask |= (abs(q3 - q2) > limit) */
129 *mask = s2;
140 uint32_t *mask,
27 vp9_filter_hev_mask_dspr2(uint32_t limit, uint32_t flimit, uint32_t p1, uint32_t p0, uint32_t p3, uint32_t p2, uint32_t q0, uint32_t q1, uint32_t q2, uint32_t q3, uint32_t thresh, uint32_t *hev, uint32_t *mask) argument
132 vp9_filter_hev_mask_flatmask4_dspr2(uint32_t limit, uint32_t flimit, uint32_t thresh, uint32_t p1, uint32_t p0, uint32_t p3, uint32_t p2, uint32_t q0, uint32_t q1, uint32_t q2, uint32_t q3, uint32_t *hev, uint32_t *mask, uint32_t *flat) argument
[all...]
H A Dvp9_loopfilter_filters_dspr2.c30 uint32_t mask; local
78 mask will be zero and filtering is not needed */
93 thresh_vec, &hev, &mask);
95 /* if mask == 0 do filtering is not needed */
96 if (mask) {
98 vp9_filter_dspr2(mask, hev, &p1, &p2, &p3, &p4);
124 uint32_t mask, hev; local
217 * mask will be zero and filtering is not needed
222 &hev, &mask);
224 /* if mask
[all...]
/hardware/qcom/gps/core/
H A DLocAdapterBase.cpp44 LocAdapterBase::LocAdapterBase(const LOC_API_ADAPTER_EVENT_MASK_T mask, argument
46 mEvtMask(mask), mContext(context),
/hardware/qcom/gps/msm8909/core/
H A DLocAdapterBase.cpp44 LocAdapterBase::LocAdapterBase(const LOC_API_ADAPTER_EVENT_MASK_T mask, argument
46 mEvtMask(mask), mContext(context),
/hardware/qcom/gps/msm8960/core/
H A DLocAdapterBase.cpp63 LocAdapterBase::LocAdapterBase(const LOC_API_ADAPTER_EVENT_MASK_T mask, argument
65 mEvtMask(mask), mContext(context),
/hardware/qcom/gps/msm8994/core/
H A DLocAdapterBase.cpp44 LocAdapterBase::LocAdapterBase(const LOC_API_ADAPTER_EVENT_MASK_T mask, argument
46 mEvtMask(mask), mContext(context),
/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
H A Dperf.c82 if ((config->mask & eModule & ~PERF_ModuleMask) &&
83 (config->mask & (1 << (eModule & PERF_ModuleMask))))
/hardware/qcom/gps/msm8084/core/
H A DLocApiBase.cpp111 LOC_API_ADAPTER_EVENT_MASK_T mask) :
112 LocMsg(), mLocApi(locApi), mMask(mask)
138 LOC_API_ADAPTER_EVENT_MASK_T mask = 0; local
140 TO_ALL_LOCADAPTERS(mask |= mLocAdapters[i]->getEvtMask());
142 return mask & ~mExcludedMask;
338 open(LOC_API_ADAPTER_EVENT_MASK_T mask)
110 LocOpenMsg(LocApiBase* locApi, LOC_API_ADAPTER_EVENT_MASK_T mask) argument
/hardware/intel/img/psb_video/src/mrst/
H A Dlnc_cmdbuf.c250 * "mask" determines which bits of the target DWORD will be updated with the so
257 uint32_t mask,
277 new_val = (background & ~mask) | (new_val & mask);
286 reloc->mask = mask;
350 uint64_t mask = PSB_GPU_ACCESS_MASK; local
366 req->set_flags = (PSB_GPU_ACCESS_READ | PSB_GPU_ACCESS_WRITE) & mask;
367 req->clear_flags = (~(PSB_GPU_ACCESS_READ | PSB_GPU_ACCESS_WRITE)) & mask;
253 lnc_cmdbuf_add_relocation(lnc_cmdbuf_p cmdbuf, uint32_t *addr_in_dst_buffer, psb_buffer_p ref_buffer, uint32_t buf_offset, uint32_t mask, uint32_t background, uint32_t align_shift, uint32_t dst_buffer, uint32_t *start_of_dst_buffer) argument
/hardware/intel/img/psb_video/src/
H A Dvsp_cmdbuf.c201 * "mask" determines which bits of the target DWORD will be updated with the so
208 uint32_t mask,
228 new_val = (background & ~mask) | (new_val & mask);
237 reloc->mask = mask;
300 uint64_t mask = PSB_GPU_ACCESS_MASK; local
315 req->set_flags = (PSB_GPU_ACCESS_READ | PSB_GPU_ACCESS_WRITE) & mask;
316 req->clear_flags = (~(PSB_GPU_ACCESS_READ | PSB_GPU_ACCESS_WRITE)) & mask;
204 vsp_cmdbuf_add_relocation(vsp_cmdbuf_p cmdbuf, uint32_t *addr_in_dst_buffer, psb_buffer_p ref_buffer, uint32_t buf_offset, uint32_t mask, uint32_t background, uint32_t align_shift, uint32_t dst_buffer, uint32_t *start_of_dst_buffer) argument
/hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
H A DLocApiRpc.h51 static rpc_loc_event_mask_type convertMask(LOC_API_ADAPTER_EVENT_MASK_T mask);
67 open(LOC_API_ADAPTER_EVENT_MASK_T mask);
/hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
H A DLocApiRpc.h51 static rpc_loc_event_mask_type convertMask(LOC_API_ADAPTER_EVENT_MASK_T mask);
67 open(LOC_API_ADAPTER_EVENT_MASK_T mask);
/hardware/qcom/gps/msm8084/utils/
H A Dloc_log.cpp59 const char* loc_get_name_from_mask(loc_name_val_s_type table[], int table_size, long mask) argument
64 if (table[i].val & (long) mask)
/hardware/qcom/gps/msm8909/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
H A DLocApiRpc.h51 static rpc_loc_event_mask_type convertMask(LOC_API_ADAPTER_EVENT_MASK_T mask);
67 open(LOC_API_ADAPTER_EVENT_MASK_T mask);
/hardware/qcom/gps/msm8909/utils/
H A Dloc_log.cpp60 const char* loc_get_name_from_mask(const loc_name_val_s_type table[], size_t table_size, long mask) argument
65 if (table[i].val & (long) mask)
/hardware/qcom/gps/msm8960/utils/
H A Dloc_log.cpp59 const char* loc_get_name_from_mask(loc_name_val_s_type table[], int table_size, long mask) argument
64 if (table[i].val & (long) mask)
/hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
H A DLocApiRpc.h51 static rpc_loc_event_mask_type convertMask(LOC_API_ADAPTER_EVENT_MASK_T mask);
67 open(LOC_API_ADAPTER_EVENT_MASK_T mask);
/hardware/qcom/gps/msm8994/utils/
H A Dloc_log.cpp59 const char* loc_get_name_from_mask(loc_name_val_s_type table[], int table_size, long mask) argument
64 if (table[i].val & (long) mask)
/hardware/qcom/gps/msm8996/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/rpc_inc/
H A DLocApiRpc.h51 static rpc_loc_event_mask_type convertMask(LOC_API_ADAPTER_EVENT_MASK_T mask);
67 open(LOC_API_ADAPTER_EVENT_MASK_T mask);
/hardware/qcom/gps/msm8996/utils/
H A Dloc_log.cpp60 const char* loc_get_name_from_mask(const loc_name_val_s_type table[], size_t table_size, long mask) argument
65 if (table[i].val & (long) mask)
/hardware/qcom/gps/utils/
H A Dloc_log.cpp59 const char* loc_get_name_from_mask(loc_name_val_s_type table[], int table_size, long mask) argument
64 if (table[i].val & (long) mask)

Completed in 808 milliseconds

1234567891011