Home
last modified time | relevance | path

Searched refs:e0 (Results 1 – 25 of 134) sorted by relevance

123456

/OK3568_Linux_fs/kernel/arch/alpha/lib/
H A Dcsum_ipv6_magic.S24 ldq_u $0,0($16) # e0 : load src & dst addr words
26 extqh $18,1,$4 # e0 : byte swap len & proto while we wait
29 extbl $18,1,$5 # e0 :
31 extbl $18,2,$6 # e0 :
34 extbl $18,3,$18 # e0 :
36 sra $4,32,$4 # e0 :
39 extql $0,$16,$0 # e0 :
41 extqh $21,$16,$21 # e0 :
44 sll $5,16,$5 # e0 :
46 extql $1,$16,$1 # e0 :
[all …]
H A Dstxncpy.S56 mskqh t2, a1, t2 # e0 : detection in the src word
57 mskqh t1, a1, t3 # e0 :
59 mskql t0, a1, t0 # e0 : assemble the first output word
61 or t0, t3, t0 # e0 :
69 stq_u t0, 0(a0) # e0 :
71 ldq_u t0, 0(a1) # e0 :
73 subq a2, 1, a2 # e0 :
86 negq t8, t12 # e0 : find low bit set
91 and t12, 0x80, t6 # e0 :
96 ldq_u t1, 0(a0) # e0 :
[all …]
H A Dstxcpy.S48 mskqh t2, a1, t2 # e0 : detection in the src word
49 mskqh t1, a1, t3 # e0 :
51 mskql t0, a1, t0 # e0 : assemble the first output word
53 or t0, t3, t1 # e0 :
61 stq_u t1, 0(a0) # e0 :
63 ldq_u t1, 0(a1) # e0 :
65 cmpbge zero, t1, t8 # e0 (stall)
73 negq t8, t6 # e0 : find low bit set
78 and t12, 0x80, t6 # e0 :
83 ldq_u t0, 0(a0) # e0 :
[all …]
H A Dmemchr.S49 zap $18, 0x80, $5 #-e0 :
53 insbl $17, 1, $2 # .. e0 : $2 = 000000000000ch00
54 and $17, 0xff, $17 #-e0 : $17 = 00000000000000ch
56 or $2, $17, $17 # e0 : $17 = 000000000000chch
58 sll $17, 16, $2 #-e0 : $2 = 00000000chch0000
62 sll $17, 32, $2 #-e0 : $2 = chchchch00000000
64 extql $1, $16, $7 # e0 :
68 extqh $6, $16, $6 # .. e0 :
69 mov $16, $0 # e0 :
77 negq $18, $6 #-e0 :
[all …]
H A Dclear_user.S33 and $1, 3, $4 # e0 :
36 0: EX( stq_u $31, 0($16) ) # e0 : zero one word
38 subq $4, 1, $4 # e0 :
43 1: bic $1, 3, $1 # e0 :
46 2: EX( stq_u $31, 0($16) ) # e0 : zero four words
48 EX( stq_u $31, 8($16) ) # e0 :
50 EX( stq_u $31, 16($16) ) # e0 :
52 EX( stq_u $31, 24($16) ) # e0 :
54 subq $1, 4, $1 # e0 :
62 1: EX( ldq_u $5, 0($16) ) # e0 :
[all …]
H A Dstrrchr.S22 zapnot a1, 1, a1 # e0 : zero extend our test character
24 sll a1, 8, t5 # e0 : replicate our test character
26 or t5, a1, a1 # e0 :
28 sll a1, 16, t5 # e0 :
30 or t5, a1, a1 # e0 :
32 sll a1, 32, t5 # e0 :
34 mskqh t4, a0, t4 # e0 :
36 xor t0, a1, t2 # e0 : make bytes == c zero
38 cmpbge zero, t2, t3 # e0 : bits set iff byte == c
40 andnot t3, t4, t3 # e0 : clear garbage from char test
[all …]
H A Dstrchr.S22 zapnot a1, 1, a1 # e0 : zero extend the search character
24 sll a1, 8, t5 # e0 : replicate the search character
26 or t5, a1, a1 # e0 :
28 sll a1, 16, t5 # e0 :
30 mskqh t4, a0, t4 # e0 :
32 sll a1, 32, t5 # e0 :
34 or t5, a1, a1 # e0 :
36 cmpbge zero, t1, t3 # e0 : bits set iff byte == c
38 andnot t0, t4, t0 # e0 : clear garbage bits
41 $loop: ldq t0, 8(v0) # e0 :
[all …]
/OK3568_Linux_fs/kernel/lib/crypto/
H A Dsha256.c32 #define e0(x) (ror32(x, 2) ^ ror32(x, 13) ^ ror32(x, 22)) macro
67 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; in sha256_transform()
69 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; in sha256_transform()
71 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; in sha256_transform()
73 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; in sha256_transform()
75 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; in sha256_transform()
77 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; in sha256_transform()
79 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; in sha256_transform()
81 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2; in sha256_transform()
84 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; in sha256_transform()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/preprocessor/tuple/
H A Dto_seq.hpp54 # define BOOST_PP_TUPLE_TO_SEQ_1(e0) (e0) argument
55 # define BOOST_PP_TUPLE_TO_SEQ_2(e0, e1) (e0)(e1) argument
56 # define BOOST_PP_TUPLE_TO_SEQ_3(e0, e1, e2) (e0)(e1)(e2) argument
57 # define BOOST_PP_TUPLE_TO_SEQ_4(e0, e1, e2, e3) (e0)(e1)(e2)(e3) argument
58 # define BOOST_PP_TUPLE_TO_SEQ_5(e0, e1, e2, e3, e4) (e0)(e1)(e2)(e3)(e4) argument
59 # define BOOST_PP_TUPLE_TO_SEQ_6(e0, e1, e2, e3, e4, e5) (e0)(e1)(e2)(e3)(e4)(e5) argument
60 # define BOOST_PP_TUPLE_TO_SEQ_7(e0, e1, e2, e3, e4, e5, e6) (e0)(e1)(e2)(e3)(e4)(e5)(e6) argument
61 # define BOOST_PP_TUPLE_TO_SEQ_8(e0, e1, e2, e3, e4, e5, e6, e7) (e0)(e1)(e2)(e3)(e4)(e5)(e6)(e7) argument
62 # define BOOST_PP_TUPLE_TO_SEQ_9(e0, e1, e2, e3, e4, e5, e6, e7, e8) (e0)(e1)(e2)(e3)(e4)(e5)(e6)(e… argument
63 # define BOOST_PP_TUPLE_TO_SEQ_10(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9) (e0)(e1)(e2)(e3)(e4)(e5)(… argument
[all …]
H A Drem.hpp55 # define BOOST_PP_TUPLE_REM_1(e0) e0 argument
56 # define BOOST_PP_TUPLE_REM_2(e0, e1) e0, e1 argument
57 # define BOOST_PP_TUPLE_REM_3(e0, e1, e2) e0, e1, e2 argument
58 # define BOOST_PP_TUPLE_REM_4(e0, e1, e2, e3) e0, e1, e2, e3 argument
59 # define BOOST_PP_TUPLE_REM_5(e0, e1, e2, e3, e4) e0, e1, e2, e3, e4 argument
60 # define BOOST_PP_TUPLE_REM_6(e0, e1, e2, e3, e4, e5) e0, e1, e2, e3, e4, e5 argument
61 # define BOOST_PP_TUPLE_REM_7(e0, e1, e2, e3, e4, e5, e6) e0, e1, e2, e3, e4, e5, e6 argument
62 # define BOOST_PP_TUPLE_REM_8(e0, e1, e2, e3, e4, e5, e6, e7) e0, e1, e2, e3, e4, e5, e6, e7 argument
63 # define BOOST_PP_TUPLE_REM_9(e0, e1, e2, e3, e4, e5, e6, e7, e8) e0, e1, e2, e3, e4, e5, e6, e7, e8 argument
64 # define BOOST_PP_TUPLE_REM_10(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9) e0, e1, e2, e3, e4, e5, e6, … argument
[all …]
H A Dto_list.hpp53 # define BOOST_PP_TUPLE_TO_LIST_1(e0) (e0, BOOST_PP_NIL) argument
54 # define BOOST_PP_TUPLE_TO_LIST_2(e0, e1) (e0, (e1, BOOST_PP_NIL)) argument
55 # define BOOST_PP_TUPLE_TO_LIST_3(e0, e1, e2) (e0, (e1, (e2, BOOST_PP_NIL))) argument
56 # define BOOST_PP_TUPLE_TO_LIST_4(e0, e1, e2, e3) (e0, (e1, (e2, (e3, BOOST_PP_NIL)))) argument
57 # define BOOST_PP_TUPLE_TO_LIST_5(e0, e1, e2, e3, e4) (e0, (e1, (e2, (e3, (e4, BOOST_PP_NIL))))) argument
58 # define BOOST_PP_TUPLE_TO_LIST_6(e0, e1, e2, e3, e4, e5) (e0, (e1, (e2, (e3, (e4, (e5, BOOST_PP_NI… argument
59 # define BOOST_PP_TUPLE_TO_LIST_7(e0, e1, e2, e3, e4, e5, e6) (e0, (e1, (e2, (e3, (e4, (e5, (e6, BO… argument
60 # define BOOST_PP_TUPLE_TO_LIST_8(e0, e1, e2, e3, e4, e5, e6, e7) (e0, (e1, (e2, (e3, (e4, (e5, (e6… argument
61 # define BOOST_PP_TUPLE_TO_LIST_9(e0, e1, e2, e3, e4, e5, e6, e7, e8) (e0, (e1, (e2, (e3, (e4, (e5,… argument
62 # define BOOST_PP_TUPLE_TO_LIST_10(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9) (e0, (e1, (e2, (e3, (e4,… argument
[all …]
H A Deat.hpp50 # define BOOST_PP_TUPLE_EAT_1(e0) argument
51 # define BOOST_PP_TUPLE_EAT_2(e0, e1) argument
52 # define BOOST_PP_TUPLE_EAT_3(e0, e1, e2) argument
53 # define BOOST_PP_TUPLE_EAT_4(e0, e1, e2, e3) argument
54 # define BOOST_PP_TUPLE_EAT_5(e0, e1, e2, e3, e4) argument
55 # define BOOST_PP_TUPLE_EAT_6(e0, e1, e2, e3, e4, e5) argument
56 # define BOOST_PP_TUPLE_EAT_7(e0, e1, e2, e3, e4, e5, e6) argument
57 # define BOOST_PP_TUPLE_EAT_8(e0, e1, e2, e3, e4, e5, e6, e7) argument
58 # define BOOST_PP_TUPLE_EAT_9(e0, e1, e2, e3, e4, e5, e6, e7, e8) argument
59 # define BOOST_PP_TUPLE_EAT_10(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9) argument
[all …]
H A Delem.hpp60 # define BOOST_PP_TUPLE_ELEM_E_1(e0) (e0, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, … argument
61 # define BOOST_PP_TUPLE_ELEM_E_2(e0, e1) (e0, e1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?… argument
62 # define BOOST_PP_TUPLE_ELEM_E_3(e0, e1, e2) (e0, e1, e2, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,… argument
63 # define BOOST_PP_TUPLE_ELEM_E_4(e0, e1, e2, e3) (e0, e1, e2, e3, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, … argument
64 # define BOOST_PP_TUPLE_ELEM_E_5(e0, e1, e2, e3, e4) (e0, e1, e2, e3, e4, ?, ?, ?, ?, ?, ?, ?, ?… argument
65 # define BOOST_PP_TUPLE_ELEM_E_6(e0, e1, e2, e3, e4, e5) (e0, e1, e2, e3, e4, e5, ?, ?, ?, ?, ?,… argument
66 # define BOOST_PP_TUPLE_ELEM_E_7(e0, e1, e2, e3, e4, e5, e6) (e0, e1, e2, e3, e4, e5, e6, ?, ?, … argument
67 # define BOOST_PP_TUPLE_ELEM_E_8(e0, e1, e2, e3, e4, e5, e6, e7) (e0, e1, e2, e3, e4, e5, e6, e7… argument
68 # define BOOST_PP_TUPLE_ELEM_E_9(e0, e1, e2, e3, e4, e5, e6, e7, e8) (e0, e1, e2, e3, e4, e5, e6… argument
69 # define BOOST_PP_TUPLE_ELEM_E_10(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9) (e0, e1, e2, e3, e4, e… argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/preprocessor/variadic/
H A Delem.hpp28 # define BOOST_PP_VARIADIC_ELEM_0(e0, ...) e0 argument
29 # define BOOST_PP_VARIADIC_ELEM_1(e0, e1, ...) e1 argument
30 # define BOOST_PP_VARIADIC_ELEM_2(e0, e1, e2, ...) e2 argument
31 # define BOOST_PP_VARIADIC_ELEM_3(e0, e1, e2, e3, ...) e3 argument
32 # define BOOST_PP_VARIADIC_ELEM_4(e0, e1, e2, e3, e4, ...) e4 argument
33 # define BOOST_PP_VARIADIC_ELEM_5(e0, e1, e2, e3, e4, e5, ...) e5 argument
34 # define BOOST_PP_VARIADIC_ELEM_6(e0, e1, e2, e3, e4, e5, e6, ...) e6 argument
35 # define BOOST_PP_VARIADIC_ELEM_7(e0, e1, e2, e3, e4, e5, e6, e7, ...) e7 argument
36 # define BOOST_PP_VARIADIC_ELEM_8(e0, e1, e2, e3, e4, e5, e6, e7, e8, ...) e8 argument
37 # define BOOST_PP_VARIADIC_ELEM_9(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, ...) e9 argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/aux_/preprocessor/
H A Dtuple.hpp17 #define BOOST_MPL_PP_TUPLE_11_ELEM_0(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e0 argument
18 #define BOOST_MPL_PP_TUPLE_11_ELEM_1(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e1 argument
19 #define BOOST_MPL_PP_TUPLE_11_ELEM_2(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e2 argument
20 #define BOOST_MPL_PP_TUPLE_11_ELEM_3(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e3 argument
21 #define BOOST_MPL_PP_TUPLE_11_ELEM_4(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e4 argument
22 #define BOOST_MPL_PP_TUPLE_11_ELEM_5(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e5 argument
23 #define BOOST_MPL_PP_TUPLE_11_ELEM_6(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e6 argument
24 #define BOOST_MPL_PP_TUPLE_11_ELEM_7(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e7 argument
25 #define BOOST_MPL_PP_TUPLE_11_ELEM_8(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e8 argument
26 #define BOOST_MPL_PP_TUPLE_11_ELEM_9(e0,e1,e2,e3,e4,e5,e6,e7,e8,e9,e10) e9 argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/transform/
H A Ddefault.hpp65 … typedef typename result_of::child_c<Expr, 0>::type e0; \
66 … typedef typename Grammar::template impl<e0, State, Data>::result_type r0; \
75 … typename Grammar::template impl<e0, State, Data> t0; \
97 … typedef typename result_of::child_c<Expr, 0>::type e0; \
99 … typedef typename Grammar::template impl<e0, State, Data>::result_type r0; \
112 … typename Grammar::template impl<e0, State, Data> t0; \
189 typedef typename result_of::child_c<Expr, 0>::type e0; typedef
191 typedef typename Grammar::template impl<e0, State, Data>::result_type r0;
201 typename Grammar::template impl<e0, State, Data> t0; in operator ()()
216 typedef typename result_of::child_c<Expr, 0>::type e0; typedef
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dtile_cover.cpp37 static void scanSpans(edge e0, edge e1, int32_t ymin, int32_t ymax, ScanLine scanLine) { in scanSpans() argument
42 if ((e0.x0 == e1.x0 && e0.y0 == e1.y0) ? in scanSpans()
43 (e0.x0 + e1.dy / e0.dy * e0.dx < e1.x1) : in scanSpans()
44 (e0.x1 - e1.dy / e0.dy * e0.dx < e1.x0)) { in scanSpans()
45 std::swap(e0, e1); in scanSpans()
49 double m0 = e0.dx / e0.dy; in scanSpans()
51 double d0 = e0.dx > 0; // use y + 1 to compute x0 in scanSpans()
54 double x0 = m0 * ::fmax(0, ::fmin(e0.dy, y + d0 - e0.y0)) + e0.x0; in scanSpans()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/context/
H A Ddefault.hpp70 typedef typename proto::result_of::child_c<Expr, 0>::type e0; \
71 typedef typename proto::result_of::eval<UNREF(e0), Context>::type r0; \
88 typedef typename proto::result_of::child_c<Expr, 0>::type e0; \
90 typedef typename proto::result_of::eval<UNREF(e0), Context>::type r0; \
170 typedef typename result_of::child_c<Expr, 0>::type e0; typedef
172 typedef typename proto::result_of::eval<UNREF(e0), Context>::type r0;
190 typedef typename result_of::child_c<Expr, 0>::type e0; typedef
192 typedef typename proto::result_of::eval<UNREF(e0), Context>::type r0;
215 typedef typename proto::result_of::child_c<Expr, 0>::type e0; typedef
216 typedef typename proto::result_of::eval<UNREF(e0), Context>::type r0;
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/transform/detail/preprocessed/
H A Ddefault_function_impl.hpp13 …typedef typename result_of::child_c< Expr, 0>::type e0; typedef typename Grammar::template impl<e0 typedef
38 … return typename Grammar::template impl<e0, State, Data>()( proto::child_c< 0>( e), s, d )( in invoke()
53 typename Grammar::template impl<e0, State, Data>()( proto::child_c< 0>( e), s, d ) in invoke()
61 …typedef typename result_of::child_c< Expr, 0>::type e0; typedef typename Grammar::template impl<e0 typedef
86 … return typename Grammar::template impl<e0, State, Data>()( proto::child_c< 0>( e), s, d )( in invoke()
101 typename Grammar::template impl<e0, State, Data>()( proto::child_c< 0>( e), s, d ) in invoke()
109 …typedef typename result_of::child_c< Expr, 0>::type e0; typedef typename Grammar::template impl<e0 typedef
134 … return typename Grammar::template impl<e0, State, Data>()( proto::child_c< 0>( e), s, d )( in invoke()
149 typename Grammar::template impl<e0, State, Data>()( proto::child_c< 0>( e), s, d ) in invoke()
157 …typedef typename result_of::child_c< Expr, 0>::type e0; typedef typename Grammar::template impl<e0 typedef
[all …]
/OK3568_Linux_fs/kernel/crypto/
H A Dsha512_generic.c83 #define e0(x) (ror64(x,28) ^ ror64(x,34) ^ ror64(x,39)) macro
127 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2; in sha512_transform()
129 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; in sha512_transform()
131 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha512_transform()
133 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha512_transform()
135 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; in sha512_transform()
137 t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2; in sha512_transform()
139 t2 = e0(c) + Maj(c,d,e); f+=t1; b=t1+t2; in sha512_transform()
141 t2 = e0(b) + Maj(b,c,d); e+=t1; a=t1+t2; in sha512_transform()
/OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/dpu1/
H A Ddpu_formats.c33 #define INTERLEAVED_RGB_FMT(fmt, a, r, g, b, e0, e1, e2, e3, uc, alpha, \ argument
39 .element = { (e0), (e1), (e2), (e3) }, \
52 #define INTERLEAVED_RGB_FMT_TILED(fmt, a, r, g, b, e0, e1, e2, e3, uc, \ argument
58 .element = { (e0), (e1), (e2), (e3) }, \
72 #define INTERLEAVED_YUV_FMT(fmt, a, r, g, b, e0, e1, e2, e3, \ argument
78 .element = { (e0), (e1), (e2), (e3)}, \
91 #define PSEUDO_YUV_FMT(fmt, a, r, g, b, e0, e1, chroma, flg, fm, np) \ argument
96 .element = { (e0), (e1), 0, 0 }, \
109 #define PSEUDO_YUV_FMT_TILED(fmt, a, r, g, b, e0, e1, chroma, \ argument
115 .element = { (e0), (e1), 0, 0 }, \
[all …]
/OK3568_Linux_fs/u-boot/arch/x86/dts/
H A Dchromebook_samus.dts257 78 78 90 50 90 11 50 e0
296 78 78 90 50 90 11 50 e0
331 78 78 90 50 90 11 50 e0
370 78 78 90 50 90 11 50 e0
409 78 78 90 50 90 11 50 e0
448 78 78 90 50 90 11 50 e0
/OK3568_Linux_fs/u-boot/doc/SPI/
H A DREADME.ti_qspi_am43x_test41 820000e0: dededede dededede dededede dededede ................
58 820100e0: dededede dededede dededede dededede ................
75 820300e0: dededede dededede dededede dededede ................
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/
H A Dcavium-mdio.txt62 mdio0@87e0,05003800 {
73 mdio0@87e0,05003880 {
/OK3568_Linux_fs/kernel/arch/powerpc/crypto/
H A Daes-tab-4k.S113 .long R(db, e0, e0, 3b), R(64, 32, 32, 56)
124 .long R(9c, 4e, 4e, d2), R(49, a9, a9, e0)
137 .long R(e0, 70, 70, 90), R(7c, 3e, 3e, 42)
179 .long R(49, e0, 69, 29), R(8e, c9, c8, 44)
186 .long R(b1, 64, 77, e0), R(bb, 6b, ae, 84)
225 .long R(3c, 22, e0, 43), R(12, 1b, 17, 1d)
265 .long R(e0, 90, d0, b0), R(33, a7, d8, 15)

123456