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

1 2 3 4 5

  /external/dhcpcd-6.8.2/crypt/
sha256.c 77 #define SHR(x, n) (x >> n)
81 #define s0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3))
82 #define s1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10))
  /external/libavc/common/arm/
ih264_platform_macros.h 124 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0)
  /external/libavc/common/armv8/
ih264_platform_macros.h 124 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0)
  /external/libavc/common/mips/
ih264_platform_macros.h 56 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0)
  /external/libavc/common/x86/
ih264_platform_macros.h 59 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0)
  /external/libhevc/common/arm/
ihevc_platform_macros.h 112 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0)
  /external/libhevc/common/mips/
ihevc_platform_macros.h 56 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0)
  /external/libmpeg2/common/arm/
icv_platform_macros.h 103 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0)
  /external/libmpeg2/common/armv8/
icv_platform_macros.h 81 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0)
  /external/libmpeg2/common/mips/
icv_platform_macros.h 87 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0)
  /external/libmpeg2/common/x86/
icv_platform_macros.h 87 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0)
  /external/libhevc/common/x86/
ihevc_platform_macros.h 57 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0)
  /external/libopus/celt/
fixed_generic.h 41 #define MULT16_32_Q16(a,b) ((opus_val32)SHR((opus_int64)((opus_val16)(a))*(b),16))
43 #define MULT16_32_Q16(a,b) ADD32(MULT16_16((a),SHR((b),16)), SHR(MULT16_16SU((a),((b)&0x0000ffff)),16))
50 #define MULT16_32_P16(a,b) ADD32(MULT16_16((a),SHR((b),16)), PSHR(MULT16_16SU((a),((b)&0x0000ffff)),16))
55 #define MULT16_32_Q15(a,b) ((opus_val32)SHR((opus_int64)((opus_val16)(a))*(b),15))
57 #define MULT16_32_Q15(a,b) ADD32(SHL(MULT16_16((a),SHR((b),16)),1), SHR(MULT16_16SU((a),((b)&0x0000ffff)),15))
62 #define MULT32_32_Q31(a,b) ((opus_val32)SHR((opus_int64)(a)*(opus_int64)(b),31))
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)& (…)
    [all...]
fixed_debug.h 45 #define MULT32_32_Q31(a,b) ADD32(ADD32(SHL32(MULT16_16(SHR32((a),16),SHR((b),16)),1), SHR32(MULT16_16SU(SHR32((a),16),((b)&0x0000ffff)),15)), SHR32(MULT16_16SU(SHR32((b),16),((a)&0x0000ffff)),15))
59 #define SHR(a,b) SHR32(a,b)
233 //#define SHR(a,shift) ((a) >> (shift))
arch.h 199 #define SHR(a,shift) (a)
  /external/openssh/
blocks.c 40 #define SHR(x,c) ((x) >> (c))
47 #define sigma0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x,7))
48 #define sigma1(x) (ROTR(x,19) ^ ROTR(x,61) ^ SHR(x,6))
  /external/speex/libspeex/
fixed_generic.h 59 #define SHR(a,shift) ((a) >> (shift))
61 #define PSHR(a,shift) (SHR((a)+((EXTEND32(1)<<((shift))>>1)),shift))
78 #define MULT16_32_Q12(a,b) ADD32(MULT16_16((a),SHR((b),12)), SHR(MULT16_16((a),((b)&0x00000fff)),12))
79 #define MULT16_32_Q13(a,b) ADD32(MULT16_16((a),SHR((b),13)), SHR(MULT16_16((a),((b)&0x00001fff)),13))
80 #define MULT16_32_Q14(a,b) ADD32(MULT16_16((a),SHR((b),14)), SHR(MULT16_16((a),((b)&0x00003fff)),14))
82 #define MULT16_32_Q11(a,b) ADD32(MULT16_16((a),SHR((b),11)), SHR(MULT16_16((a),((b)&0x000007ff)),11)
    [all...]
arch.h 177 #define SHR(a,shift) (a)
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegOps.java 121 public static final int SHR = 24;
337 case SHR: return "shr";
  /dalvik/dx/src/com/android/dx/rop/code/
RegOps.java 121 public static final int SHR = 24;
345 case SHR: return "shr";
  /external/libchrome/crypto/third_party/nss/
sha512.cc 66 #define SHR(x,n) (x >> n)
156 #define s0(x) (t1 = x, ROTR32(t1, 7) ^ ROTR32(t1,18) ^ SHR(t1, 3))
157 #define s1(x) (t2 = x, ROTR32(t2,17) ^ ROTR32(t2,19) ^ SHR(t2,10))
536 #define s0(x) (t1 = x, ROTR64(t1, 1) ^ ROTR64(t1, 8) ^ SHR(t1,7))
537 #define s1(x) (t2 = x, ROTR64(t2,19) ^ ROTR64(t2,61) ^ SHR(t2,6))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
SyntheticAccessorFSM.java 204 public static final int SHR = SyntheticAccessorResolver.SHR_ASSIGNMENT;
436 mathOp = SHR;
  /external/pdfium/core/fdrm/crypto/
fx_crypt_sha.cpp 198 #define SHR(x, n) ((x & 0xFFFFFFFF) >> n)
199 #define ROTR(x, n) (SHR(x, n) | (x << (32 - n)))
200 #define S0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3))
201 #define S1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10))
  /prebuilts/go/darwin-x86/src/go/token/
token.go 45 SHR // >>
149 SHR: ">>",
269 case MUL, QUO, REM, SHL, SHR, AND, AND_NOT:
  /prebuilts/go/linux-x86/src/go/token/
token.go 45 SHR // >>
149 SHR: ">>",
269 case MUL, QUO, REM, SHL, SHR, AND, AND_NOT:

Completed in 913 milliseconds

1 2 3 4 5