Home | History | Annotate | Download | only in m_debuginfo

Lines Matching refs:shift1

2927 #  define _DV2_A(p,shift1,shift2) \
2928 (((( (lzo_xint)((p)[0]) << shift1) ^ (p)[1]) << shift2) ^ (p)[2])
2929 # define _DV2_B(p,shift1,shift2) \
2930 (((( (lzo_xint)((p)[2]) << shift1) ^ (p)[1]) << shift2) ^ (p)[0])
2931 # define _DV3_B(p,shift1,shift2,shift3) \
2932 ((_DV2_B((p)+1,shift1,shift2) << (shift3)) ^ (p)[0])
2934 # define _DV2_A(p,shift1,shift2) \
2935 (( (lzo_xint)(p[0]) << shift1) ^ p[1])
2936 # define _DV2_B(p,shift1,shift2) \
2937 (( (lzo_xint)(p[1]) << shift1) ^ p[2])