HomeSort by relevance Sort by last modified time
    Searched refs:CTZ (Results 1 - 25 of 47) 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 114 const size_t shift = CTZ(left_edge);
128 const size_t shift = CTZ(w);
155 const size_t shift = CTZ(right_edge);
176 const size_t shift = CTZ(w);
space_bitmap.cc 200 const size_t shift = CTZ(garbage);
  /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 -= (WORD32)(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 714 /* They are computed outside the loop using CLZ and CTZ on sig_coeff_map */
729 first_sig_scan_pos = CTZ(u4_sig_coeff_map);
    [all...]
  /external/libhevc/common/mips/
ihevc_platform_macros.h 74 static inline UWORD32 CTZ(UWORD32 u4_word)
  /external/libmpeg2/common/mips/
icv_platform_macros.h 55 static __inline UWORD32 CTZ(UWORD32 u4_word)
  /external/libmpeg2/common/x86/
icv_platform_macros.h 55 static __inline UWORD32 CTZ(UWORD32 u4_word)
  /art/libartbase/base/
bit_utils_test.cc 44 // NOTE: CTZ(0u) is undefined.
45 static_assert(0 == CTZ<uint32_t>(1u), "TestCTZ32#1");
46 static_assert(1 == CTZ<uint32_t>(2u), "TestCTZ32#2");
47 static_assert(15 == CTZ<uint32_t>(0x45678000u), "TestCTZ32#3");
48 static_assert(16 == CTZ<uint32_t>(0x43210000u), "TestCTZ32#4");
49 static_assert(30 == CTZ<uint32_t>(0xc0000000u), "TestCTZ32#5");
50 static_assert(31 == CTZ<uint32_t>(0x80000000u), "TestCTZ32#6");
52 // NOTE: CTZ(0ull) is undefined.
53 static_assert(0 == CTZ<uint64_t>(UINT64_C(1)), "TestCTZ64#1");
54 static_assert(1 == CTZ<uint64_t>(UINT64_C(2)), "TestCTZ64#2")
    [all...]
bit_vector-inl.h 67 return word_index * 32u + CTZ(word);
bit_utils_iterator.h 83 return CTZ(this->bits_);
bit_utils.h 69 constexpr int CTZ(T x) {
79 // Similar to CTZ except that on zero input it returns bitwidth and supports signed integers.
84 return (x == 0) ? BitSizeOf<T>() : CTZ(static_cast<unsigned_type>(x));
119 return (value == 0) ? -1 : CTZ(value);
156 return CTZ(x);
  /external/libavc/common/mips/
ih264_platform_macros.h 80 /* In normal cases, 0 will not be passed as an argument to CLZ and CTZ.
81 As CLZ and CTZ outputs are used as a shift value in few places, these return
93 static __inline UWORD32 CTZ(UWORD32 u4_word)
  /external/libavc/common/x86/
ih264_platform_macros.h 77 /* In normal cases, 0 will not be passed as an argument to CLZ and CTZ.
78 As CLZ and CTZ outputs are used as a shift value in few places, these return
90 static __inline UWORD32 CTZ(UWORD32 u4_word)
  /external/libhevc/common/x86/
ihevc_platform_macros.h 88 static INLINE UWORD32 CTZ(UWORD32 u4_word)
  /art/libelffile/dwarf/
debug_frame_opcode_writer.h 89 int num_zeros = CTZ(reg_mask);
103 int num_zeros = CTZ(reg_mask);
  /external/libavc/common/arm/
ih264_platform_macros.h 153 /* In normal cases, 0 will not be passed as an argument to CLZ and CTZ.
154 As CLZ and CTZ outputs are used as a shift value in few places, these return
165 static INLINE UWORD32 CTZ(UWORD32 u4_word)
  /external/libavc/common/armv8/
ih264_platform_macros.h 153 /* In normal cases, 0 will not be passed as an argument to CLZ and CTZ.
154 As CLZ and CTZ outputs are used as a shift value in few places, these return
165 static INLINE UWORD32 CTZ(UWORD32 u4_word)
  /external/libhevc/common/arm/
ihevc_platform_macros.h 149 static INLINE UWORD32 CTZ(UWORD32 u4_word)
  /art/compiler/utils/arm/
jni_macro_assembler_arm_vixl.cc 102 uint32_t first = CTZ(fp_spill_mask);
105 DCHECK_EQ(fp_spill_mask >> CTZ(fp_spill_mask), ~0u >> (32 - POPCOUNT(fp_spill_mask)));
165 uint32_t first = CTZ(fp_spill_mask);
167 DCHECK_EQ(fp_spill_mask >> CTZ(fp_spill_mask), ~0u >> (32 - POPCOUNT(fp_spill_mask)));
  /external/llvm/lib/Target/AMDGPU/
R600ISelLowering.cpp 326 unsigned CTX = 1, CTY = 1, CTZ = 1, CTW = 1;
344 CTZ = 0;
347 CTZ = 0;
351 CTZ = 0;
354 CTZ = 0;
375 .addImm(CTZ)
395 .addImm(CTZ)
415 .addImm(CTZ)
429 unsigned CTX = 1, CTY = 1, CTZ = 1, CTW = 1;
447 CTZ = 0
    [all...]
  /art/runtime/native/
dalvik_system_ZygoteHooks.cc 156 API_ENFORCEMENT_POLICY_SHIFT = CTZ(HIDDEN_API_ENFORCEMENT_POLICY_MASK),
  /external/libhevc/common/
ihevc_intra_pred.h 43 #define look_up_trailing_zeros(x) (0 == (x) ? 8 : CTZ(x))
  /art/runtime/
stack_map.cc 162 uint32_t bit = CTZ(bits);

Completed in 1011 milliseconds

1 2