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

  /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/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/arm/
ihevc_platform_macros.h 134 static INLINE UWORD32 CTZ(UWORD32 u4_word)
  /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)
  /external/libhevc/common/x86/
ihevc_platform_macros.h 87 static INLINE UWORD32 CTZ(UWORD32 u4_word)
  /art/runtime/base/
bit_utils.h 63 constexpr int CTZ(T x) {
73 // Similar to CTZ except that on zero input it returns bitwidth and supports signed integers.
78 return (x == 0) ? BitSizeOf<T>() : CTZ(static_cast<unsigned_type>(x));
113 return (value == 0) ? -1 : CTZ(value);
142 return CTZ(x);
  /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...]

Completed in 225 milliseconds