HomeSort by relevance Sort by last modified time
    Searched full:clz (Results 76 - 100 of 516) sorted by null

1 2 34 5 6 7 8 91011>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/armv5te/
boolhuff_armv5te.asm 80 clz r6, r4
156 clz r6, r4
250 clz r6, r4
  /art/runtime/base/
bit_utils.h 30 static constexpr int CLZ(T x) {
62 return (value == 0) ? -1 : std::numeric_limits<T>::digits - 1 - CLZ(value);
84 return (x < 2u) ? x : static_cast<T>(1u) << (std::numeric_limits<T>::digits - CLZ(x - 1u));
319 return std::numeric_limits<T>::digits - 1u - CLZ(this->bits_);
  /external/compiler-rt/lib/builtins/arm/
clzsi2.S 29 clz r0, r0
  /external/libavc/common/arm/
ih264_platform_macros.h 131 static INLINE UWORD32 CLZ(UWORD32 u4_word)
  /external/libavc/common/armv8/
ih264_platform_macros.h 131 static INLINE UWORD32 CLZ(UWORD32 u4_word)
  /external/libhevc/common/arm/
ihevc_platform_macros.h 119 static INLINE UWORD32 CLZ(UWORD32 u4_word)
  /external/libhevc/common/x86/
ihevc_platform_macros.h 74 static INLINE UWORD32 CLZ(UWORD32 u4_word)
  /external/libxml2/
timsort.h 50 #ifndef CLZ
52 #define CLZ __builtin_clzll
74 #define CLZ clzll
80 const int top_bit = 64 - CLZ(size);
  /external/llvm/test/MC/Mips/mips4/
invalid-mips64.s 10 clz $sp,$gp # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips5/
invalid-mips64.s 9 clz $sp,$gp # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /bionic/libc/arch-arm64/generic/bionic/
string_copy.S 133 clz pos, has_nul1
167 clz pos, has_nul2
strncmp.S 127 clz pos, syndrome
156 clz pos, syndrome
  /bionic/libc/arch-mips/string/
strcmp.S 56 /* Testing on a little endian machine showed using CLZ was a
148 clz t1, t0
  /external/aac/libFDK/include/mips/
clz_mips.h 99 __asm__ ("clz %0,%1" : "=d" (result) : "d" (value));
110 __asm__ ("clz %[result], %[value]" : [result] "=r" (result) : [value] "r" (value)) ;
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_normalize.h 67 clz y, x;
83 "clz %0, %1\n\t"
  /external/libavc/decoder/
ih264d_parse_mb_header.c 820 u4_clz = CLZ(u4_code_int_range);
839 u4_clz = CLZ(u4_code_int_range);
879 u4_clz = CLZ(u4_code_int_range);
919 u4_clz = CLZ(u4_code_int_range);
959 u4_clz = CLZ(u4_code_int_range);
    [all...]
  /external/libhevc/decoder/
ihevcd_parse_slice_header.c 154 num_bits_list_entry = 32 - CLZ(num_poc_total_curr);
351 /* Use CLZ to compute Ceil( Log2( PicSizeInCtbsY ) ) */
352 num_bits = 32 - CLZ(ps_sps->i4_pic_size_in_ctb - 1);
422 numbits = 32 - CLZ(ps_sps->i1_num_short_term_ref_pic_sets - 1);
467 /* Use CLZ to compute Ceil( Log2( num_long_term_ref_pics_sps ) ) */
468 WORD32 num_bits = 32 - CLZ(ps_sps->i1_num_long_term_ref_pics_sps);
    [all...]
  /frameworks/compile/slang/tests/P_all_api_11/
all11.rs     [all...]
  /frameworks/compile/slang/tests/P_all_api_12/
all12.rs     [all...]
  /frameworks/compile/slang/tests/P_all_api_13/
all13.rs     [all...]
  /frameworks/compile/slang/tests/P_all_api_14/
all14.rs     [all...]
  /frameworks/compile/slang/tests/P_all_api_15/
all15.rs     [all...]
  /frameworks/compile/slang/tests/P_all_api_16/
all16.rs     [all...]
  /frameworks/compile/slang/tests/P_all_api_17/
all17.rs     [all...]
  /frameworks/rs/scriptc/
rs_math.rsh 782 * clz: Number of leading 0 bits
786 * For example, clz((char)0x03) returns 6.
789 clz(char value);
792 clz(char2 value);
795 clz(char3 value);
798 clz(char4 value);
801 clz(uchar value);
804 clz(uchar2 value);
807 clz(uchar3 value);
810 clz(uchar4 value)
    [all...]

Completed in 710 milliseconds

1 2 34 5 6 7 8 91011>>