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

1 2

  /art/runtime/gc/accounting/
bitmap-inl.h 89 const size_t shift = CTZ(left_edge);
101 const size_t shift = CTZ(w);
125 const size_t shift = CTZ(right_edge);
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 122 const size_t shift = CTZ(w);
170 const size_t shift = CTZ(garbage);
262 const size_t shift = CTZ(w);
  /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...]
  /art/runtime/base/
bit_vector-inl.h 65 return word_index * 32u + CTZ(word);
bit_utils_test.cc 43 // NOTE: CTZ(0u) is undefined.
44 static_assert(0 == CTZ<uint32_t>(1u), "TestCTZ32#1");
45 static_assert(1 == CTZ<uint32_t>(2u), "TestCTZ32#2");
46 static_assert(15 == CTZ<uint32_t>(0x45678000u), "TestCTZ32#3");
47 static_assert(16 == CTZ<uint32_t>(0x43210000u), "TestCTZ32#4");
48 static_assert(30 == CTZ<uint32_t>(0xc0000000u), "TestCTZ32#5");
49 static_assert(31 == CTZ<uint32_t>(0x80000000u), "TestCTZ32#6");
51 // NOTE: CTZ(0ull) is undefined.
52 static_assert(0 == CTZ<uint64_t>(UINT64_C(1)), "TestCTZ64#1");
53 static_assert(1 == CTZ<uint64_t>(UINT64_C(2)), "TestCTZ64#2")
    [all...]
bit_utils.h 41 static constexpr int CTZ(T x) {
70 return (value == 0) ? -1 : CTZ(value);
99 return CTZ(x);
307 return CTZ(this->bits_);
  /external/libavc/common/mips/
ih264_platform_macros.h 80 static __inline UWORD32 CTZ(UWORD32 u4_word)
  /external/libavc/common/x86/
ih264_platform_macros.h 79 static __inline UWORD32 CTZ(UWORD32 u4_word)
  /external/libhevc/common/mips/
ihevc_platform_macros.h 67 static inline UWORD32 CTZ(UWORD32 u4_word)
  /art/compiler/dex/quick/
resource_mask.cc 161 res = (low_regs != 0) ? &kSingleRegMasks[SingleRegMaskIndex(index, CTZ(low_regs))]
166 res = &kTwoRegsMasks[TwoRegsIndex(CTZ(low_regs_without_lowest), CTZ(low_regs))];
gen_common.cc     [all...]
  /external/libavc/common/arm/
ih264_platform_macros.h 138 static INLINE UWORD32 CTZ(UWORD32 u4_word)
  /external/libavc/common/armv8/
ih264_platform_macros.h 138 static INLINE UWORD32 CTZ(UWORD32 u4_word)
  /external/libhevc/common/arm/
ihevc_platform_macros.h 127 static INLINE UWORD32 CTZ(UWORD32 u4_word)
  /external/libhevc/common/x86/
ihevc_platform_macros.h 82 static INLINE UWORD32 CTZ(UWORD32 u4_word)
  /art/compiler/dwarf/
debug_frame_opcode_writer.h 87 int num_zeros = CTZ(reg_mask);
101 int num_zeros = CTZ(reg_mask);
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp 296 unsigned CTX = 1, CTY = 1, CTZ = 1, CTW = 1;
314 CTZ = 0;
317 CTZ = 0;
321 CTZ = 0;
324 CTZ = 0;
344 .addImm(CTZ)
363 .addImm(CTZ)
383 .addImm(CTZ)
397 unsigned CTX = 1, CTY = 1, CTZ = 1, CTW = 1;
415 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...]
  /external/libhevc/common/
ihevc_intra_pred.h 43 #define look_up_trailing_zeros(x) (0 == (x) ? 8 : CTZ(x))
  /art/compiler/dex/quick/arm/
int_arm.cc 592 op->shift = CTZ(lit);
598 op->shift = CTZ(lit - 1);
604 op->shift = CTZ(lit + 1);
622 uint32_t shift = CTZ(lit1);
630 shift = CTZ(lit1);
638 shift = CTZ(lit1);
    [all...]
call_arm.cc 425 NewLIR1(kThumb2Push1, CTZ(core_spill_mask_));
563 NewLIR1(kThumb2Pop1, CTZ(core_spill_mask_));
  /art/compiler/utils/arm/
assembler_arm.cc 404 vpushs(SRegister(CTZ(fp_spill_mask)), POPCOUNT(fp_spill_mask));
460 vpops(SRegister(CTZ(fp_spill_mask)), POPCOUNT(fp_spill_mask));
    [all...]

Completed in 1174 milliseconds

1 2