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

1 2 3 4 5 6 7

  /external/libmpeg2/common/armv8/
impeg2_platform_macros.h 29 static __inline UWORD32 CLZ(UWORD32 u4_word)
icv_platform_macros.h 43 static INLINE UWORD32 CLZ(UWORD32 u4_word)
  /external/libmpeg2/common/mips/
impeg2_platform_macros.h 28 static __inline UWORD32 CLZ(UWORD32 u4_word)
icv_platform_macros.h 41 static __inline UWORD32 CLZ(UWORD32 u4_word)
  /external/libmpeg2/common/x86/
impeg2_platform_macros.h 28 static __inline UWORD32 CLZ(UWORD32 u4_word)
icv_platform_macros.h 41 static __inline UWORD32 CLZ(UWORD32 u4_word)
  /external/libmpeg2/common/arm/
impeg2_platform_macros.h 30 static __inline UWORD32 CLZ(UWORD32 u4_word)
icv_platform_macros.h 41 static __inline UWORD32 CLZ(UWORD32 u4_word)
  /external/libavc/decoder/
ih264d_cabac.h 172 u4_clz_m = CLZ(u4_codeIntRange_m); \
229 u4_clz_m = CLZ(u4_code_int_range); \
255 u4_clz_m = CLZ(u4_code_int_range); \
ih264d_bitstrm.h 166 u4_ldz = CLZ(u4_word); \
177 u4_ldz = CLZ(u4_word); \
ih264d_parse_cabac.c 105 u4_clz = CLZ(u4_code_int_range);
179 u4_clz = CLZ(u4_code_int_range);
202 u4_clz = CLZ(u4_code_int_range);
243 u4_clz = CLZ(u4_code_int_range);
345 u4_clz = CLZ(u4_code_int_range);
410 u4_clz = CLZ(u4_code_int_range);
460 u4_clz = CLZ(u4_code_int_range);
669 u4_clz = CLZ(u4_code_int_range);
691 u4_clz = CLZ(u4_code_int_range);
728 u4_clz = CLZ(u4_code_int_range)
    [all...]
  /external/libxaac/decoder/armv7/
ixheaacd_conv_ergtoamplitude.s 42 CLZ R8, R6
70 CLZ R8, R6
98 CLZ R8, R6
ixheaacd_conv_ergtoamplitudelp.s 43 CLZ R8, R6
69 CLZ R8, R6
97 CLZ R8, R6
ixheaacd_calcmaxspectralline.s 74 CLZ R0, R0
ixheaacd_enery_calc_per_subband.s 93 CLZ R6, R6
132 CLZ R12, R6
  /external/libhevc/decoder/
ihevcd_trace.h 101 m_clz = CLZ(m_range); \
112 m_clz = CLZ(m_range); \
ihevcd_cabac.c 85 m_clz = CLZ(m_range); \
242 WORD32 clz; local
251 clz = CLZ(u4_range);
252 clz -= (32 - RANGE_NUMBITS);
253 u4_qnt_range = u4_range << clz;
261 u4_rlps = u4_rlps << (RANGE_SHIFT - clz);
283 numbits = CLZ(u4_range);
381 WORD32 clz; local
386 clz = CLZ(u4_range)
400 WORD32 clz; local
    [all...]
ihevcd_parse_residual.c 662 /* Instead of initializing n to 15, set it to 31-CLZ(sig coeff map) */
665 UWORD32 clz; local
666 clz = CLZ(u4_sig_coeff_map);
667 n = 31 - clz;
668 u4_sig_coeff_map_shift = u4_sig_coeff_map << clz;
695 /* first_greater1_scan_pos is obtained using CLZ on u4_coeff_abs_level_greater1_map*/
714 /* They are computed outside the loop using CLZ and CTZ on sig_coeff_map */
722 clz = CLZ(u4_sig_coeff_map_shift)
723 u4_sig_coeff_map_shift <<= clz; local
771 UWORD32 clz; local
885 u4_sig_coeff_map_shift <<= clz; local
    [all...]
  /device/google/contexthub/firmware/os/inc/
util.h 58 return 8 * sizeof(n) - CLZ(n) - 1;
toolchain.h 40 #define CLZ __CLZ
85 #define CLZ __builtin_clz
  /external/libavc/common/mips/
ih264_platform_macros.h 72 static __inline UWORD32 CLZ(UWORD32 u4_word)
  /external/libavc/common/x86/
ih264_platform_macros.h 71 static __inline UWORD32 CLZ(UWORD32 u4_word)
  /external/libhevc/common/mips/
ihevc_platform_macros.h 61 static inline UWORD32 CLZ(UWORD32 u4_word)
  /art/libartbase/base/
bit_utils_test.cc 26 // NOTE: CLZ(0u) is undefined.
27 static_assert(31 == CLZ<uint32_t>(1u), "TestCLZ32#1");
28 static_assert(30 == CLZ<uint32_t>(2u), "TestCLZ32#2");
29 static_assert(16 == CLZ<uint32_t>(0x00008765u), "TestCLZ32#3");
30 static_assert(15 == CLZ<uint32_t>(0x00012345u), "TestCLZ32#4");
31 static_assert(1 == CLZ<uint32_t>(0x43214321u), "TestCLZ32#5");
32 static_assert(0 == CLZ<uint32_t>(0x87654321u), "TestCLZ32#6");
34 // NOTE: CLZ(0ull) is undefined.
35 static_assert(63 == CLZ<uint64_t>(UINT64_C(1)), "TestCLZ64#1");
36 static_assert(62 == CLZ<uint64_t>(UINT64_C(3)), "TestCLZ64#2")
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/arm/
anames.go 123 "CLZ",

Completed in 330 milliseconds

1 2 3 4 5 6 7