Searched defs:SHR (Results 1 - 25 of 32) sorted by relevance

12

/external/libavc/common/arm/
H A Dih264_platform_macros.h124 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0) macro
/external/libavc/common/armv8/
H A Dih264_platform_macros.h124 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0) macro
/external/libavc/common/mips/
H A Dih264_platform_macros.h56 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0) macro
/external/libavc/common/x86/
H A Dih264_platform_macros.h59 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0) macro
/external/libhevc/common/mips/
H A Dihevc_platform_macros.h56 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0) macro
/external/libmpeg2/common/arm/
H A Dicv_platform_macros.h103 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0) macro
/external/libmpeg2/common/armv8/
H A Dicv_platform_macros.h81 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0) macro
/external/libmpeg2/common/mips/
H A Dicv_platform_macros.h87 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0) macro
/external/libmpeg2/common/x86/
H A Dicv_platform_macros.h87 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0) macro
/external/dhcpcd-6.8.2/crypt/
H A Dsha256.c77 #define SHR(x, n) (x >> n) macro
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/libhevc/common/arm/
H A Dihevc_platform_macros.h112 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0) macro
/external/libhevc/common/x86/
H A Dihevc_platform_macros.h57 #define SHR(x,y) (((y) < 32) ? ((x) >> (y)) : 0) macro
/external/libopus/celt/
H A Dfixed_generic.h41 #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((
98 #define SHR macro
[all...]
H A Dfixed_debug.h45 #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) macro
233 //#define SHR(a,shift) ((a) >> (shift))
H A Darch.h199 #define SHR(a,shift) (a) macro
/external/openssh/
H A Dblocks.c40 #define SHR(x,c) ((x) >> (c)) macro
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/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DSyntheticAccessorFSM.java204 public static final int SHR = SyntheticAccessorResolver.SHR_ASSIGNMENT; field in class:SyntheticAccessorFSM
436 mathOp = SHR;
/external/speex/libspeex/
H A Dfixed_generic.h59 #define SHR(a,shift) ((a) >> (shift)) macro
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_1
[all...]
H A Darch.h177 #define SHR(a,shift) (a) macro
/external/libchrome/crypto/third_party/nss/
H A Dsha512.cc66 #define SHR(x,n) (x >> n) macro
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))
/external/pdfium/core/fdrm/crypto/
H A Dfx_crypt_sha.cpp198 #define SHR(x, n) ((x & 0xFFFFFFFF) >> n) macro
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))
/external/skia/src/sksl/
H A DSkSLToken.h49 SHR, enumerator in enum:SkSL::Token::Kind
152 case Token::SHR: return String(">>");
/external/pcre/dist2/src/sljit/
H A DsljitNativeX86_common.c229 #define SHR (/* SHIFT */ 5 << 3) macro
1193 *inst |= SHR;
2237 return emit_shift_with_flags(compiler, SHR, GET_FLAGS(op),
/external/jarjar/lib/
H A Dasm-commons-4.0.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...

Completed in 902 milliseconds

12