Home
last modified time | relevance | path

Searched refs:W (Results 1 – 25 of 1130) sorted by relevance

12345678910>>...46

/OK3568_Linux_fs/kernel/arch/powerpc/crypto/
H A Dsha1-powerpc-asm.S34 #define W(t) (((t)%16)+16) macro
37 LWZ(W(t),(t)*4,r4)
46 add r14,r0,W(t); \
47 LWZ(W((t)+4),((t)+4)*4,r4); \
58 xor r5,W((t)+4-3),W((t)+4-8); \
60 xor W((t)+4),W((t)+4-16),W((t)+4-14); \
61 add r0,r0,W(t); \
62 xor W((t)+4),W((t)+4),r5; \
64 rotlwi W((t)+4),W((t)+4),1
73 add r0,r0,W(t); \
[all …]
/OK3568_Linux_fs/kernel/lib/crypto/
H A Dsha256.c37 static inline void LOAD_OP(int I, u32 *W, const u8 *input) in LOAD_OP() argument
39 W[I] = get_unaligned_be32((__u32 *)input + I); in LOAD_OP()
42 static inline void BLEND_OP(int I, u32 *W) in BLEND_OP() argument
44 W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16]; in BLEND_OP()
50 u32 W[64]; in sha256_transform() local
55 LOAD_OP(i, W, input); in sha256_transform()
59 BLEND_OP(i, W); in sha256_transform()
66 t1 = h + e1(e) + Ch(e, f, g) + 0x428a2f98 + W[0]; in sha256_transform()
68 t1 = g + e1(d) + Ch(d, e, f) + 0x71374491 + W[1]; in sha256_transform()
70 t1 = f + e1(c) + Ch(c, d, e) + 0xb5c0fbcf + W[2]; in sha256_transform()
[all …]
/OK3568_Linux_fs/kernel/arch/x86/kernel/
H A Duprobes.c46 #define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\ macro
89 W(0x00, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1) | /* 00 */
90 W(0x10, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0) , /* 10 */
91 W(0x20, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 20 */
92 W(0x30, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 30 */
93 W(0x40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 40 */
94 W(0x50, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 50 */
95 W(0x60, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0) | /* 60 */
96 W(0x70, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) , /* 70 */
97 W(0x80, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1) | /* 80 */
[all …]
/OK3568_Linux_fs/kernel/arch/x86/crypto/
H A Dsha1_ssse3_asm.S311 .set W, W0 define
319 .set W_minus_32, W
330 .set W_minus_04, W
331 .set W, W_minus_32 define
352 movdqa W_TMP1, W
374 movdqa W_minus_12, W
375 palignr $8, W_minus_16, W # w[i-14]
378 pxor W_minus_08, W
381 pxor W_TMP1, W
382 movdqa W, W_TMP2
[all …]
H A Dsha512-ssse3-asm.S102 # W[t]+K[t] (stack frame)
129 add WK_2(idx), T1 # W[t] + K[t] from message scheduler
133 add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h
135 add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e)
158 # Two rounds are computed based on the values for K[t-2]+W[t-2] and
159 # K[t-1]+W[t-1] which were previously stored at WK_2 by the message
166 # Eg. XMM2=W[t-2] really means XMM2={W[t-2]|W[t-1]}
175 movdqa W_t(idx), %xmm2 # XMM2 = W[t-2]
178 movdqa %xmm2, %xmm0 # XMM0 = W[t-2]
183 movdqu W_t(idx), %xmm5 # XMM5 = W[t-15]
[all …]
H A Dsha512-avx-asm.S77 # W[t] + K[t] | W[t+1] + K[t+1]
104 # W[t]+K[t] (stack frame)
135 add WK_2(idx), T1 # W[t] + K[t] from message scheduler
139 add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h
141 add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e)
163 # Two rounds are computed based on the values for K[t-2]+W[t-2] and
164 # K[t-1]+W[t-1] which were previously stored at WK_2 by the message
171 # Eg. XMM4=W[t-2] really means XMM4={W[t-2]|W[t-1]}
176 vmovdqa W_t(idx), %xmm4 # XMM4 = W[t-2]
178 vmovdqu W_t(idx), %xmm5 # XMM5 = W[t-15]
[all …]
H A Dsha512-avx2-asm.S170 MY_VPALIGNR YTMP0, Y_3, Y_2, 8 # YTMP0 = W[-7]
172 vpaddq Y_0, YTMP0, YTMP0 # YTMP0 = W[-7] + W[-16]
174 MY_VPALIGNR YTMP1, Y_1, Y_0, 8 # YTMP1 = W[-15]
181 vpor YTMP2, YTMP3, YTMP3 # YTMP3 = W[-15] ror 1
183 vpsrlq $7, YTMP1, YTMP4 # YTMP4 = W[-15] >> 7
227 vpor YTMP2, YTMP1, YTMP1 # YTMP1 = W[-15] ror 8
229 vpxor YTMP4, YTMP3, YTMP3 # YTMP3 = W[-15] ror 1 ^ W[-15] >> 7
234 vpaddq YTMP1, YTMP0, YTMP0 # YTMP0 = W[-16] + W[-7] + s0
236 vperm2f128 $0x0, YTMP0, YTMP0, Y_0 # Y_0 = W[-16] + W[-7] + s0 {BABA}
238 vpand MASK_YMM_LO(%rip), YTMP0, YTMP0 # YTMP0 = W[-16] + W[-7] + s0 {DC00}
[all …]
/OK3568_Linux_fs/kernel/tools/bpf/bpftool/bash-completion/
H A Dbpftool22 COMPREPLY+=( $( compgen -W "$w" -- "$cur" ) )
44 COMPREPLY+=( $( compgen -W "$*" -- "$cur" ) )
49 COMPREPLY+=( $( compgen -W "$( bpftool -jp map 2>&1 | \
57 COMPREPLY+=( $( compgen -W "$( bpftool -jp map 2>&1 | \
64 COMPREPLY+=( $( compgen -W "$( bpftool -jp map 2>&1 | \
72 COMPREPLY+=( $( compgen -W "$( bpftool -jp map 2>&1 | \
79 COMPREPLY+=( $( compgen -W "$( bpftool -jp prog 2>&1 | \
85 COMPREPLY+=( $( compgen -W "$( bpftool -jp prog 2>&1 | \
91 COMPREPLY+=( $( compgen -W "$( bpftool -jp prog 2>&1 | \
97 COMPREPLY+=( $( compgen -W "$( bpftool -jp btf 2>&1 | \
[all …]
/OK3568_Linux_fs/external/security/librkcrypto/test/c_mode/
H A Dhash_sha1.c87 uint32_t temp, W[16], A, B, C, D, E; in mbedtls_sha1_process() local
89 GET_UINT32_BE( W[ 0], data, 0 ); in mbedtls_sha1_process()
90 GET_UINT32_BE( W[ 1], data, 4 ); in mbedtls_sha1_process()
91 GET_UINT32_BE( W[ 2], data, 8 ); in mbedtls_sha1_process()
92 GET_UINT32_BE( W[ 3], data, 12 ); in mbedtls_sha1_process()
93 GET_UINT32_BE( W[ 4], data, 16 ); in mbedtls_sha1_process()
94 GET_UINT32_BE( W[ 5], data, 20 ); in mbedtls_sha1_process()
95 GET_UINT32_BE( W[ 6], data, 24 ); in mbedtls_sha1_process()
96 GET_UINT32_BE( W[ 7], data, 28 ); in mbedtls_sha1_process()
97 GET_UINT32_BE( W[ 8], data, 32 ); in mbedtls_sha1_process()
[all …]
H A Dhash_sm3.c240 TT1 = FF##xx(A, B, C) + D + SS2 + (W[j] ^ W[j + 4]); \
241 TT2 = GG##xx(E, F, G) + H + SS1 + W[j]; \
368 uint32_t W[68]; in sm3_compress_blocks() local
395 _mm_storeu_si128((__m128i *)(W + j), X); in sm3_compress_blocks()
400 X = _mm_loadu_si128((__m128i *)(W + j - 3)); in sm3_compress_blocks()
404 T = _mm_loadu_si128((__m128i *)(W + j - 9)); in sm3_compress_blocks()
406 T = _mm_loadu_si128((__m128i *)(W + j - 16)); in sm3_compress_blocks()
415 T = _mm_loadu_si128((__m128i *)(W + j - 13)); in sm3_compress_blocks()
418 T = _mm_loadu_si128((__m128i *)(W + j - 6)); in sm3_compress_blocks()
431 _mm_storeu_si128((__m128i *)(W + j), X); in sm3_compress_blocks()
[all …]
H A Dhash_sha256.c140 W[t] = S1(W[t - 2]) + W[t - 7] + \
141 S0(W[t - 15]) + W[t - 16] \
153 uint32_t temp1, temp2, W[64]; in mbedtls_sha256_process() local
164 GET_UINT32_BE( W[i], data, 4 * i ); in mbedtls_sha256_process()
168 P( A[0], A[1], A[2], A[3], A[4], A[5], A[6], A[7], W[i], K[i] ); in mbedtls_sha256_process()
175 GET_UINT32_BE( W[i], data, 4 * i ); in mbedtls_sha256_process()
179 P( A[0], A[1], A[2], A[3], A[4], A[5], A[6], A[7], W[i+0], K[i+0] ); in mbedtls_sha256_process()
180 P( A[7], A[0], A[1], A[2], A[3], A[4], A[5], A[6], W[i+1], K[i+1] ); in mbedtls_sha256_process()
181 P( A[6], A[7], A[0], A[1], A[2], A[3], A[4], A[5], W[i+2], K[i+2] ); in mbedtls_sha256_process()
182 P( A[5], A[6], A[7], A[0], A[1], A[2], A[3], A[4], W[i+3], K[i+3] ); in mbedtls_sha256_process()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/transform/
H A Dmap_transformer.hpp64 template <typename W, typename D>
65 explicit inline map_transformer(W const& wx1, W const& wy1, W const& wx2, W const& wy2, in map_transformer()
73 template <typename W, typename P, typename S>
74 inline void set_transformation_point(W const& wx, W const& wy, in set_transformation_point()
103 template <typename W, typename D>
104 void set_transformation(W const& wx1, W const& wy1, W const& wx2, W const& wy2, in set_transformation()
118 W wdx = wx2 - wx1; in set_transformation()
119 W wdy = wy2 - wy1; in set_transformation()
131 W wtx = wx1 + wx2; in set_transformation()
132 W wty = wy1 + wy2; in set_transformation()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/positioning/geoflickr/flickrmobile/
H A Dnmealog.txt8 $GPRMC,222437.000,A,2734.33926,S,15305.44310,E,33.9,157.8,030308,11.2,W,A*0F
17 $GPRMC,222438.000,A,2734.34821,S,15305.44697,E,33.8,158.3,030308,11.2,W,A*0E
26 $GPRMC,222439.000,A,2734.35696,S,15305.45072,E,33.2,158.7,030308,11.2,W,A*0E
35 $GPRMC,222440.000,A,2734.36580,S,15305.45446,E,33.7,159.1,030308,11.2,W,A*06
44 $GPRMC,222441.000,A,2734.37483,S,15305.45825,E,34.6,159.4,030308,11.2,W,A*0E
53 $GPRMC,222442.000,A,2734.38407,S,15305.46216,E,35.5,159.3,030308,11.2,W,A*02
62 $GPRMC,222443.000,A,2734.39347,S,15305.46609,E,36.2,159.4,030308,11.2,W,A*08
71 $GPRMC,222444.000,A,2734.40297,S,15305.47000,E,36.5,159.5,030308,11.2,W,A*05
80 $GPRMC,222445.000,A,2734.41247,S,15305.47390,E,36.6,159.7,030308,11.2,W,A*03
89 $GPRMC,222446.000,A,2734.42201,S,15305.47790,E,36.6,159.3,030308,11.2,W,A*01
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/snippets/declarative/
H A Dnmealog.txt8 $GPRMC,222437.000,A,2734.33926,S,15305.44310,E,33.9,157.8,030308,11.2,W,A*0F
17 $GPRMC,222438.000,A,2734.34821,S,15305.44697,E,33.8,158.3,030308,11.2,W,A*0E
26 $GPRMC,222439.000,A,2734.35696,S,15305.45072,E,33.2,158.7,030308,11.2,W,A*0E
35 $GPRMC,222440.000,A,2734.36580,S,15305.45446,E,33.7,159.1,030308,11.2,W,A*06
44 $GPRMC,222441.000,A,2734.37483,S,15305.45825,E,34.6,159.4,030308,11.2,W,A*0E
53 $GPRMC,222442.000,A,2734.38407,S,15305.46216,E,35.5,159.3,030308,11.2,W,A*02
62 $GPRMC,222443.000,A,2734.39347,S,15305.46609,E,36.2,159.4,030308,11.2,W,A*08
71 $GPRMC,222444.000,A,2734.40297,S,15305.47000,E,36.5,159.5,030308,11.2,W,A*05
80 $GPRMC,222445.000,A,2734.41247,S,15305.47390,E,36.6,159.7,030308,11.2,W,A*03
89 $GPRMC,222446.000,A,2734.42201,S,15305.47790,E,36.6,159.3,030308,11.2,W,A*01
[all …]
/OK3568_Linux_fs/u-boot/tools/rockchip/
H A Dsha.c60 uint32_t W[80]; in SHA1_Transform() local
71 E += ror27(A) + (W[t] = bswap_32(ctx->buf.w[t])) + (D ^ (B & (C ^ D))) + \ in SHA1_Transform()
88 ror27(A) + (W[t] = ror31(W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16])) + \ in SHA1_Transform()
101 ror27(A) + (W[t] = ror31(W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16])) + \ in SHA1_Transform()
117 ror27(A) + (W[t] = ror31(W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16])) + \ in SHA1_Transform()
133 ror27(A) + (W[t] = ror31(W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16])) + \ in SHA1_Transform()
205 uint32_t W[80]; in SHA1_transform() local
215 W[t] = tmp; in SHA1_transform()
219 W[t] = rol(1, W[t - 3] ^ W[t - 8] ^ W[t - 14] ^ W[t - 16]); in SHA1_transform()
229 uint32_t tmp = rol(5, A) + E + W[t]; in SHA1_transform()
H A Dresource_tool.c64 unsigned long temp, W[16], A, B, C, D, E; in sha1_process() local
66 GET_UINT32_BE (W[0], data, 0); in sha1_process()
67 GET_UINT32_BE (W[1], data, 4); in sha1_process()
68 GET_UINT32_BE (W[2], data, 8); in sha1_process()
69 GET_UINT32_BE (W[3], data, 12); in sha1_process()
70 GET_UINT32_BE (W[4], data, 16); in sha1_process()
71 GET_UINT32_BE (W[5], data, 20); in sha1_process()
72 GET_UINT32_BE (W[6], data, 24); in sha1_process()
73 GET_UINT32_BE (W[7], data, 28); in sha1_process()
74 GET_UINT32_BE (W[8], data, 32); in sha1_process()
[all …]
/OK3568_Linux_fs/u-boot/lib/
H A Dsha1.c80 unsigned long temp, W[16], A, B, C, D, E; in sha1_process_one() local
82 GET_UINT32_BE (W[0], data, 0); in sha1_process_one()
83 GET_UINT32_BE (W[1], data, 4); in sha1_process_one()
84 GET_UINT32_BE (W[2], data, 8); in sha1_process_one()
85 GET_UINT32_BE (W[3], data, 12); in sha1_process_one()
86 GET_UINT32_BE (W[4], data, 16); in sha1_process_one()
87 GET_UINT32_BE (W[5], data, 20); in sha1_process_one()
88 GET_UINT32_BE (W[6], data, 24); in sha1_process_one()
89 GET_UINT32_BE (W[7], data, 28); in sha1_process_one()
90 GET_UINT32_BE (W[8], data, 32); in sha1_process_one()
[all …]
H A Dsha256.c69 uint32_t W[64]; in sha256_process_one() local
72 GET_UINT32_BE(W[0], data, 0); in sha256_process_one()
73 GET_UINT32_BE(W[1], data, 4); in sha256_process_one()
74 GET_UINT32_BE(W[2], data, 8); in sha256_process_one()
75 GET_UINT32_BE(W[3], data, 12); in sha256_process_one()
76 GET_UINT32_BE(W[4], data, 16); in sha256_process_one()
77 GET_UINT32_BE(W[5], data, 20); in sha256_process_one()
78 GET_UINT32_BE(W[6], data, 24); in sha256_process_one()
79 GET_UINT32_BE(W[7], data, 28); in sha256_process_one()
80 GET_UINT32_BE(W[8], data, 32); in sha256_process_one()
[all …]
H A Dsha512.c161 uint64_t temp1, temp2, W[80]; in sha512_process() local
184 GET_UINT64_BE(W[i], data, i << 3); in sha512_process()
188 W[i] = S1(W[i - 2]) + W[i - 7] + in sha512_process()
189 S0(W[i - 15]) + W[i - 16]; in sha512_process()
203 P(A, B, C, D, E, F, G, H, W[i], K[i]); in sha512_process()
205 P(H, A, B, C, D, E, F, G, W[i], K[i]); in sha512_process()
207 P(G, H, A, B, C, D, E, F, W[i], K[i]); in sha512_process()
209 P(F, G, H, A, B, C, D, E, W[i], K[i]); in sha512_process()
211 P(E, F, G, H, A, B, C, D, W[i], K[i]); in sha512_process()
213 P(D, E, F, G, H, A, B, C, W[i], K[i]); in sha512_process()
[all …]
/OK3568_Linux_fs/kernel/arch/arm/crypto/
H A Dsha1-armv7-neon.S88 W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28) \ argument
90 pre1(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \
94 pre2(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \
98 pre3(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \
102 W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28) \ argument
104 pre1(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \
108 pre2(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \
111 pre3(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \
115 W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28) \ argument
117 pre1(i16,W,W_m04,W_m08,W_m12,W_m16,W_m20,W_m24,W_m28); \
[all …]
/OK3568_Linux_fs/kernel/crypto/
H A Dsha512_generic.c88 static inline void LOAD_OP(int I, u64 *W, const u8 *input) in LOAD_OP() argument
90 W[I] = get_unaligned_be64((__u64 *)input + I); in LOAD_OP()
93 static inline void BLEND_OP(int I, u64 *W) in BLEND_OP() argument
95 W[I & 15] += s1(W[(I-2) & 15]) + W[(I-7) & 15] + s0(W[(I-15) & 15]); in BLEND_OP()
104 u64 W[16]; in sha512_transform() local
118 LOAD_OP(i + j, W, input); in sha512_transform()
121 BLEND_OP(i + j, W); in sha512_transform()
126 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[(i & 15)]; in sha512_transform()
128 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[(i & 15) + 1]; in sha512_transform()
130 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[(i & 15) + 2]; in sha512_transform()
[all …]
/OK3568_Linux_fs/kernel/scripts/
H A Dresource_tool.c64 unsigned long temp, W[16], A, B, C, D, E; in sha1_process() local
66 GET_UINT32_BE (W[0], data, 0); in sha1_process()
67 GET_UINT32_BE (W[1], data, 4); in sha1_process()
68 GET_UINT32_BE (W[2], data, 8); in sha1_process()
69 GET_UINT32_BE (W[3], data, 12); in sha1_process()
70 GET_UINT32_BE (W[4], data, 16); in sha1_process()
71 GET_UINT32_BE (W[5], data, 20); in sha1_process()
72 GET_UINT32_BE (W[6], data, 24); in sha1_process()
73 GET_UINT32_BE (W[7], data, 28); in sha1_process()
74 GET_UINT32_BE (W[8], data, 32); in sha1_process()
[all …]
/OK3568_Linux_fs/kernel/tools/memory-model/
H A Dlinux-kernel.def34 cmpxchg(X,V,W) __cmpxchg{mb}(X,V,W)
35 cmpxchg_relaxed(X,V,W) __cmpxchg{once}(X,V,W)
36 cmpxchg_acquire(X,V,W) __cmpxchg{acquire}(X,V,W)
37 cmpxchg_release(X,V,W) __cmpxchg{release}(X,V,W)
108 atomic_cmpxchg(X,V,W) __cmpxchg{mb}(X,V,W)
109 atomic_cmpxchg_relaxed(X,V,W) __cmpxchg{once}(X,V,W)
110 atomic_cmpxchg_acquire(X,V,W) __cmpxchg{acquire}(X,V,W)
111 atomic_cmpxchg_release(X,V,W) __cmpxchg{release}(X,V,W)
/OK3568_Linux_fs/kernel/arch/arm/lib/
H A Dmemmove.S85 6: W(nop)
86 W(ldr) r3, [r1, #-4]!
87 W(ldr) r4, [r1, #-4]!
88 W(ldr) r5, [r1, #-4]!
89 W(ldr) r6, [r1, #-4]!
90 W(ldr) r7, [r1, #-4]!
91 W(ldr) r8, [r1, #-4]!
92 W(ldr) lr, [r1, #-4]!
96 W(nop)
97 W(str) r3, [r0, #-4]!
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/mvl88w8977/mlan/esa/common/
H A Dsha1.c233 #define blk(i) (W[i&15] = rol(W[(i+13)&15]^W[(i+8)&15]^W[(i+2)&15]^W[i&15],1))
234 #define blk0(i) ((i & 0x30)? blk(i) : W[i])
255 UINT32 *W; in Mrvl_SHA1ProcessMessageBlock() local
259 W = context->Scratch; in Mrvl_SHA1ProcessMessageBlock()
262 W[t] = context->Message_Block[t * 4] << 24; in Mrvl_SHA1ProcessMessageBlock()
263 W[t] |= context->Message_Block[t * 4 + 1] << 16; in Mrvl_SHA1ProcessMessageBlock()
264 W[t] |= context->Message_Block[t * 4 + 2] << 8; in Mrvl_SHA1ProcessMessageBlock()
265 W[t] |= context->Message_Block[t * 4 + 3]; in Mrvl_SHA1ProcessMessageBlock()

12345678910>>...46