HomeSort by relevance Sort by last modified time
    Searched refs:CTZ (Results 1 - 21 of 21) sorted by null

  /external/libhevc/decoder/
ihevcd_sao.c 257 if(CTZ(u4_no_loop_filter_flag))
259 u4_no_loop_filter_flag >>= (CTZ(u4_no_loop_filter_flag));
260 pu1_src_tmp += MIN((WORD32)CTZ(u4_no_loop_filter_flag), tmp_wd);
261 pu1_src_copy += MIN((WORD32)CTZ(u4_no_loop_filter_flag), tmp_wd);
262 tmp_wd -= CTZ(u4_no_loop_filter_flag) * min_cu;
268 for(col = 0; col < MIN((WORD32)CTZ(~u4_no_loop_filter_flag) * min_cu, tmp_wd); col++)
274 u4_no_loop_filter_flag >>= (CTZ(~u4_no_loop_filter_flag));
275 pu1_src_tmp += MIN((WORD32)CTZ(~u4_no_loop_filter_flag), tmp_wd);
276 pu1_src_copy += MIN((WORD32)CTZ(~u4_no_loop_filter_flag), tmp_wd);
277 tmp_wd -= CTZ(~u4_no_loop_filter_flag) * min_cu
    [all...]
ihevcd_deblk.c 264 bs_tz = CTZ(u4_bs) >> 1;
405 bs_tz = CTZ(u4_bs) >> 1;
539 bs_tz = CTZ(u4_bs) >> 2;
686 bs_tz = CTZ(u4_bs) >> 2;
ihevcd_parse_residual.c 713 /* They are computed outside the loop using CLZ and CTZ on sig_coeff_map */
728 first_sig_scan_pos = CTZ(u4_sig_coeff_map);
    [all...]
  /external/libhevc/common/mips/
ihevc_platform_macros.h 67 static inline UWORD32 CTZ(UWORD32 u4_word)
  /external/libhevc/common/x86/
ihevc_platform_macros.h 82 static INLINE UWORD32 CTZ(UWORD32 u4_word)
ihevc_intra_pred_filters_sse42_intr.c 142 filter_flag = gau1_intra_pred_ref_filter[mode] & (1 << (CTZ(nt) - 2));
    [all...]
ihevc_intra_pred_filters_ssse3_intr.c 426 filter_flag = gau1_intra_pred_ref_filter[mode] & (1 << (CTZ(nt) - 2));
    [all...]
  /art/runtime/gc/accounting/
space_bitmap-inl.h 110 const size_t shift = CTZ(left_edge);
123 const size_t shift = CTZ(w);
149 const size_t shift = CTZ(right_edge);
space_bitmap.cc 115 const size_t shift = CTZ(w);
163 const size_t shift = CTZ(garbage);
259 const size_t shift = CTZ(w);
  /art/compiler/dex/quick/
resource_mask.cc 159 res = (low_regs != 0) ? &kSingleRegMasks[SingleRegMaskIndex(index, CTZ(low_regs))]
164 res = &kTwoRegsMasks[TwoRegsIndex(CTZ(low_regs_without_lowest), CTZ(low_regs))];
  /external/libhevc/common/arm/
ihevc_platform_macros.h 126 static INLINE UWORD32 CTZ(UWORD32 u4_word)
ihevc_intra_pred_filters_neon_intr.c 488 filter_flag = gau1_intra_pred_ref_filter[mode] & (1 << (CTZ(nt) - 2));
    [all...]
  /art/runtime/base/
bit_vector.h 117 return word_index * 32u + CTZ(word);
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp 285 unsigned CTX = 1, CTY = 1, CTZ = 1, CTW = 1;
303 CTZ = 0;
306 CTZ = 0;
310 CTZ = 0;
313 CTZ = 0;
333 .addImm(CTZ)
352 .addImm(CTZ)
372 .addImm(CTZ)
386 unsigned CTX = 1, CTY = 1, CTZ = 1, CTW = 1;
404 CTZ = 0
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
rtl.def 629 DEF_RTL_EXPR(CTZ, "ctz", "e", RTX_UNARY)
    [all...]
genrtl.h 1091 gen_rtx_fmt_e (CTZ, (MODE), (ARG0))
    [all...]
  /external/libhevc/common/
ihevc_intra_pred.h 43 #define look_up_trailing_zeros(x) (0 == (x) ? 8 : CTZ(x))
ihevc_intra_pred_filters.c 626 filter_flag = gau1_intra_pred_ref_filter[mode] & (1 << (CTZ(nt) - 2));
    [all...]
  /art/runtime/
utils.h 267 static constexpr int CTZ(T x) {
  /art/compiler/dex/quick/arm64/
int_arm64.cc     [all...]
  /art/disassembler/
disassembler_arm.cc     [all...]

Completed in 925 milliseconds