HomeSort by relevance Sort by last modified time
    Searched defs:SHL (Results 1 - 25 of 149) sorted by null

1 2 3 4 5 6

  /external/libavc/common/arm/
ih264_platform_macros.h 123 #define SHL(x,y) (((y) < 32) ? ((x) << (y)) : 0)
  /external/libavc/common/armv8/
ih264_platform_macros.h 123 #define SHL(x,y) (((y) < 32) ? ((x) << (y)) : 0)
  /external/libavc/common/mips/
ih264_platform_macros.h 55 #define SHL(x,y) (((y) < 32) ? ((x) << (y)) : 0)
  /external/libavc/common/x86/
ih264_platform_macros.h 58 #define SHL(x,y) (((y) < 32) ? ((x) << (y)) : 0)
  /external/libhevc/common/arm/
ihevc_platform_macros.h 111 #define SHL(x,y) (((y) < 32) ? ((x) << (y)) : 0)
  /external/libhevc/common/mips/
ihevc_platform_macros.h 55 #define SHL(x,y) (((y) < 32) ? ((x) << (y)) : 0)
  /external/libmpeg2/common/arm/
icv_platform_macros.h 102 #define SHL(x,y) (((y) < 32) ? ((x) << (y)) : 0)
  /external/libmpeg2/common/armv8/
icv_platform_macros.h 80 #define SHL(x,y) (((y) < 32) ? ((x) << (y)) : 0)
  /external/libmpeg2/common/mips/
icv_platform_macros.h 86 #define SHL(x,y) (((y) < 32) ? ((x) << (y)) : 0)
  /external/libmpeg2/common/x86/
icv_platform_macros.h 86 #define SHL(x,y) (((y) < 32) ? ((x) << (y)) : 0)
  /external/swiftshader/third_party/LLVM/lib/Target/MSP430/
MSP430ISelLowering.h 64 /// SHL, SRA, SRL - Non-constant shifts.
65 SHL, SRA, SRL
  /external/libhevc/common/x86/
ihevc_platform_macros.h 56 #define SHL(x,y) (((y) < 32) ? ((x) << (y)) : 0)
  /external/llvm/lib/Target/Lanai/
LanaiAluCode.h 36 SHL = 0x17,
93 case SHL:
113 .Case("sh", SHL)
135 case ISD::SHL:
136 return AluCode::SHL;
  /external/libopus/celt/
fixed_generic.h 57 #define MULT16_32_Q15(a,b) ADD32(SHL(MULT16_16((a),SHR((b),16)),1), SHR(MULT16_16SU((a),((b)&0x0000ffff)),15))
64 #define MULT32_32_Q31(a,b) ADD32(ADD32(SHL(MULT16_16(SHR((a),16),SHR((b),16)),1), SHR(MULT16_16SU(SHR((a),16),((b)&0x0000ffff)),15)), SHR(MULT16_16SU(SHR((b),16),((a)&0x0000ffff)),15))
99 #define SHL(a,shift) SHL32(a,shift)
arch.h 214 #define SHL(a,shift) (a)
  /external/speex/libspeex/
fixed_generic.h 60 #define SHL(a,shift) ((spx_word32_t)(a) << (shift))
arch.h 178 #define SHL(a,shift) (a)
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCISelLowering.h 91 SRL, SRA, SHL,
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegOps.java 115 public static final int SHL = 23;
336 case SHL: return "shl";
  /dalvik/dx/src/com/android/dx/rop/code/
RegOps.java 115 public static final int SHL = 23;
352 case SHL: return "shl";
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
SyntheticAccessorFSM.java 203 public static final int SHL = SyntheticAccessorResolver.SHL_ASSIGNMENT;
430 mathOp = SHL;
  /external/skia/src/sksl/
SkSLLexer.h 136 #undef SHL
137 SHL,
  /external/skqp/src/sksl/
SkSLLexer.h 136 #undef SHL
137 SHL,
  /prebuilts/go/darwin-x86/src/go/token/
token.go 44 SHL // <<
148 SHL: "<<",
269 case MUL, QUO, REM, SHL, SHR, AND, AND_NOT:
  /prebuilts/go/linux-x86/src/go/token/
token.go 44 SHL // <<
148 SHL: "<<",
269 case MUL, QUO, REM, SHL, SHR, AND, AND_NOT:

Completed in 1755 milliseconds

1 2 3 4 5 6