Home
last modified time | relevance | path

Searched +full:0 +full:x2 (Results 1 – 25 of 1143) sorted by relevance

12345678910>>...46

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/math/tools/detail/
H A Dpolynomial_horner3_20.hpp15 inline V evaluate_polynomial_c_imp(const T*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEXCEPT(V) in evaluate_polynomial_c_imp() argument
17 return static_cast<V>(0); in evaluate_polynomial_c_imp()
23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp()
29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp()
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
47 V x2 = x * x; in evaluate_polynomial_c_imp() local
49 t[0] = static_cast<V>(a[4] * x2 + a[2]); in evaluate_polynomial_c_imp()
50 t[1] = static_cast<V>(a[3] * x2 + a[1]); in evaluate_polynomial_c_imp()
51 t[0] *= x2; in evaluate_polynomial_c_imp()
[all …]
H A Dpolynomial_horner3_19.hpp15 inline V evaluate_polynomial_c_imp(const T*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEXCEPT(V) in evaluate_polynomial_c_imp() argument
17 return static_cast<V>(0); in evaluate_polynomial_c_imp()
23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp()
29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp()
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
47 V x2 = x * x; in evaluate_polynomial_c_imp() local
49 t[0] = static_cast<V>(a[4] * x2 + a[2]); in evaluate_polynomial_c_imp()
50 t[1] = static_cast<V>(a[3] * x2 + a[1]); in evaluate_polynomial_c_imp()
51 t[0] *= x2; in evaluate_polynomial_c_imp()
[all …]
H A Dpolynomial_horner3_18.hpp15 inline V evaluate_polynomial_c_imp(const T*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEXCEPT(V) in evaluate_polynomial_c_imp() argument
17 return static_cast<V>(0); in evaluate_polynomial_c_imp()
23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp()
29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp()
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
47 V x2 = x * x; in evaluate_polynomial_c_imp() local
49 t[0] = static_cast<V>(a[4] * x2 + a[2]); in evaluate_polynomial_c_imp()
50 t[1] = static_cast<V>(a[3] * x2 + a[1]); in evaluate_polynomial_c_imp()
51 t[0] *= x2; in evaluate_polynomial_c_imp()
[all …]
H A Dpolynomial_horner3_17.hpp15 inline V evaluate_polynomial_c_imp(const T*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEXCEPT(V) in evaluate_polynomial_c_imp() argument
17 return static_cast<V>(0); in evaluate_polynomial_c_imp()
23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp()
29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp()
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
47 V x2 = x * x; in evaluate_polynomial_c_imp() local
49 t[0] = static_cast<V>(a[4] * x2 + a[2]); in evaluate_polynomial_c_imp()
50 t[1] = static_cast<V>(a[3] * x2 + a[1]); in evaluate_polynomial_c_imp()
51 t[0] *= x2; in evaluate_polynomial_c_imp()
[all …]
H A Drational_horner2_20.hpp15 inline V evaluate_rational_c_imp(const T*, const U*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEX… in evaluate_rational_c_imp() argument
17 return static_cast<V>(0); in evaluate_rational_c_imp()
23 return static_cast<V>(a[0]) / static_cast<V>(b[0]); in evaluate_rational_c_imp()
29 return static_cast<V>((a[1] * x + a[0]) / (b[1] * x + b[0])); in evaluate_rational_c_imp()
35 return static_cast<V>(((a[2] * x + a[1]) * x + a[0]) / ((b[2] * x + b[1]) * x + b[0])); in evaluate_rational_c_imp()
41 …atic_cast<V>((((a[3] * x + a[2]) * x + a[1]) * x + a[0]) / (((b[3] * x + b[2]) * x + b[1]) * x + b… in evaluate_rational_c_imp()
49 V x2 = x * x; in evaluate_rational_c_imp() local
50 …turn static_cast<V>(((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x) / ((b[4] * x2 + b[2]… in evaluate_rational_c_imp()
56 …return static_cast<V>(((a[0] * z2 + a[2]) * z2 + a[4] + (a[1] * z2 + a[3]) * z) / ((b[0] * z2 + b[… in evaluate_rational_c_imp()
65 V x2 = x * x; in evaluate_rational_c_imp() local
[all …]
H A Dpolynomial_horner3_16.hpp15 inline V evaluate_polynomial_c_imp(const T*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEXCEPT(V) in evaluate_polynomial_c_imp() argument
17 return static_cast<V>(0); in evaluate_polynomial_c_imp()
23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp()
29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp()
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
47 V x2 = x * x; in evaluate_polynomial_c_imp() local
49 t[0] = static_cast<V>(a[4] * x2 + a[2]); in evaluate_polynomial_c_imp()
50 t[1] = static_cast<V>(a[3] * x2 + a[1]); in evaluate_polynomial_c_imp()
51 t[0] *= x2; in evaluate_polynomial_c_imp()
[all …]
H A Drational_horner2_19.hpp15 inline V evaluate_rational_c_imp(const T*, const U*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEX… in evaluate_rational_c_imp() argument
17 return static_cast<V>(0); in evaluate_rational_c_imp()
23 return static_cast<V>(a[0]) / static_cast<V>(b[0]); in evaluate_rational_c_imp()
29 return static_cast<V>((a[1] * x + a[0]) / (b[1] * x + b[0])); in evaluate_rational_c_imp()
35 return static_cast<V>(((a[2] * x + a[1]) * x + a[0]) / ((b[2] * x + b[1]) * x + b[0])); in evaluate_rational_c_imp()
41 …atic_cast<V>((((a[3] * x + a[2]) * x + a[1]) * x + a[0]) / (((b[3] * x + b[2]) * x + b[1]) * x + b… in evaluate_rational_c_imp()
49 V x2 = x * x; in evaluate_rational_c_imp() local
50 …turn static_cast<V>(((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x) / ((b[4] * x2 + b[2]… in evaluate_rational_c_imp()
56 …return static_cast<V>(((a[0] * z2 + a[2]) * z2 + a[4] + (a[1] * z2 + a[3]) * z) / ((b[0] * z2 + b[… in evaluate_rational_c_imp()
65 V x2 = x * x; in evaluate_rational_c_imp() local
[all …]
H A Drational_horner2_17.hpp15 inline V evaluate_rational_c_imp(const T*, const U*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEX… in evaluate_rational_c_imp() argument
17 return static_cast<V>(0); in evaluate_rational_c_imp()
23 return static_cast<V>(a[0]) / static_cast<V>(b[0]); in evaluate_rational_c_imp()
29 return static_cast<V>((a[1] * x + a[0]) / (b[1] * x + b[0])); in evaluate_rational_c_imp()
35 return static_cast<V>(((a[2] * x + a[1]) * x + a[0]) / ((b[2] * x + b[1]) * x + b[0])); in evaluate_rational_c_imp()
41 …atic_cast<V>((((a[3] * x + a[2]) * x + a[1]) * x + a[0]) / (((b[3] * x + b[2]) * x + b[1]) * x + b… in evaluate_rational_c_imp()
49 V x2 = x * x; in evaluate_rational_c_imp() local
50 …turn static_cast<V>(((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x) / ((b[4] * x2 + b[2]… in evaluate_rational_c_imp()
56 …return static_cast<V>(((a[0] * z2 + a[2]) * z2 + a[4] + (a[1] * z2 + a[3]) * z) / ((b[0] * z2 + b[… in evaluate_rational_c_imp()
65 V x2 = x * x; in evaluate_rational_c_imp() local
[all …]
H A Dpolynomial_horner3_15.hpp15 inline V evaluate_polynomial_c_imp(const T*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEXCEPT(V) in evaluate_polynomial_c_imp() argument
17 return static_cast<V>(0); in evaluate_polynomial_c_imp()
23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp()
29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp()
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
47 V x2 = x * x; in evaluate_polynomial_c_imp() local
49 t[0] = static_cast<V>(a[4] * x2 + a[2]); in evaluate_polynomial_c_imp()
50 t[1] = static_cast<V>(a[3] * x2 + a[1]); in evaluate_polynomial_c_imp()
51 t[0] *= x2; in evaluate_polynomial_c_imp()
[all …]
H A Drational_horner2_18.hpp15 inline V evaluate_rational_c_imp(const T*, const U*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEX… in evaluate_rational_c_imp() argument
17 return static_cast<V>(0); in evaluate_rational_c_imp()
23 return static_cast<V>(a[0]) / static_cast<V>(b[0]); in evaluate_rational_c_imp()
29 return static_cast<V>((a[1] * x + a[0]) / (b[1] * x + b[0])); in evaluate_rational_c_imp()
35 return static_cast<V>(((a[2] * x + a[1]) * x + a[0]) / ((b[2] * x + b[1]) * x + b[0])); in evaluate_rational_c_imp()
41 …atic_cast<V>((((a[3] * x + a[2]) * x + a[1]) * x + a[0]) / (((b[3] * x + b[2]) * x + b[1]) * x + b… in evaluate_rational_c_imp()
49 V x2 = x * x; in evaluate_rational_c_imp() local
50 …turn static_cast<V>(((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x) / ((b[4] * x2 + b[2]… in evaluate_rational_c_imp()
56 …return static_cast<V>(((a[0] * z2 + a[2]) * z2 + a[4] + (a[1] * z2 + a[3]) * z) / ((b[0] * z2 + b[… in evaluate_rational_c_imp()
65 V x2 = x * x; in evaluate_rational_c_imp() local
[all …]
H A Drational_horner2_16.hpp15 inline V evaluate_rational_c_imp(const T*, const U*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEX… in evaluate_rational_c_imp() argument
17 return static_cast<V>(0); in evaluate_rational_c_imp()
23 return static_cast<V>(a[0]) / static_cast<V>(b[0]); in evaluate_rational_c_imp()
29 return static_cast<V>((a[1] * x + a[0]) / (b[1] * x + b[0])); in evaluate_rational_c_imp()
35 return static_cast<V>(((a[2] * x + a[1]) * x + a[0]) / ((b[2] * x + b[1]) * x + b[0])); in evaluate_rational_c_imp()
41 …atic_cast<V>((((a[3] * x + a[2]) * x + a[1]) * x + a[0]) / (((b[3] * x + b[2]) * x + b[1]) * x + b… in evaluate_rational_c_imp()
49 V x2 = x * x; in evaluate_rational_c_imp() local
50 …turn static_cast<V>(((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x) / ((b[4] * x2 + b[2]… in evaluate_rational_c_imp()
56 …return static_cast<V>(((a[0] * z2 + a[2]) * z2 + a[4] + (a[1] * z2 + a[3]) * z) / ((b[0] * z2 + b[… in evaluate_rational_c_imp()
65 V x2 = x * x; in evaluate_rational_c_imp() local
[all …]
H A Dpolynomial_horner2_20.hpp15 inline V evaluate_polynomial_c_imp(const T*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEXCEPT(V) in evaluate_polynomial_c_imp() argument
17 return static_cast<V>(0); in evaluate_polynomial_c_imp()
23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp()
29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp()
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
47 V x2 = x * x; in evaluate_polynomial_c_imp() local
48 return static_cast<V>((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x); in evaluate_polynomial_c_imp()
54 V x2 = x * x; in evaluate_polynomial_c_imp() local
55 return static_cast<V>(((a[5] * x2 + a[3]) * x2 + a[1]) * x + (a[4] * x2 + a[2]) * x2 + a[0]); in evaluate_polynomial_c_imp()
[all …]
H A Dpolynomial_horner2_19.hpp15 inline V evaluate_polynomial_c_imp(const T*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEXCEPT(V) in evaluate_polynomial_c_imp() argument
17 return static_cast<V>(0); in evaluate_polynomial_c_imp()
23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp()
29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp()
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
47 V x2 = x * x; in evaluate_polynomial_c_imp() local
48 return static_cast<V>((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x); in evaluate_polynomial_c_imp()
54 V x2 = x * x; in evaluate_polynomial_c_imp() local
55 return static_cast<V>(((a[5] * x2 + a[3]) * x2 + a[1]) * x + (a[4] * x2 + a[2]) * x2 + a[0]); in evaluate_polynomial_c_imp()
[all …]
H A Dpolynomial_horner2_18.hpp15 inline V evaluate_polynomial_c_imp(const T*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEXCEPT(V) in evaluate_polynomial_c_imp() argument
17 return static_cast<V>(0); in evaluate_polynomial_c_imp()
23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp()
29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp()
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
47 V x2 = x * x; in evaluate_polynomial_c_imp() local
48 return static_cast<V>((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x); in evaluate_polynomial_c_imp()
54 V x2 = x * x; in evaluate_polynomial_c_imp() local
55 return static_cast<V>(((a[5] * x2 + a[3]) * x2 + a[1]) * x + (a[4] * x2 + a[2]) * x2 + a[0]); in evaluate_polynomial_c_imp()
[all …]
H A Dpolynomial_horner2_17.hpp15 inline V evaluate_polynomial_c_imp(const T*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEXCEPT(V) in evaluate_polynomial_c_imp() argument
17 return static_cast<V>(0); in evaluate_polynomial_c_imp()
23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp()
29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp()
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
47 V x2 = x * x; in evaluate_polynomial_c_imp() local
48 return static_cast<V>((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x); in evaluate_polynomial_c_imp()
54 V x2 = x * x; in evaluate_polynomial_c_imp() local
55 return static_cast<V>(((a[5] * x2 + a[3]) * x2 + a[1]) * x + (a[4] * x2 + a[2]) * x2 + a[0]); in evaluate_polynomial_c_imp()
[all …]
H A Drational_horner2_15.hpp15 inline V evaluate_rational_c_imp(const T*, const U*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEX… in evaluate_rational_c_imp() argument
17 return static_cast<V>(0); in evaluate_rational_c_imp()
23 return static_cast<V>(a[0]) / static_cast<V>(b[0]); in evaluate_rational_c_imp()
29 return static_cast<V>((a[1] * x + a[0]) / (b[1] * x + b[0])); in evaluate_rational_c_imp()
35 return static_cast<V>(((a[2] * x + a[1]) * x + a[0]) / ((b[2] * x + b[1]) * x + b[0])); in evaluate_rational_c_imp()
41 …atic_cast<V>((((a[3] * x + a[2]) * x + a[1]) * x + a[0]) / (((b[3] * x + b[2]) * x + b[1]) * x + b… in evaluate_rational_c_imp()
49 V x2 = x * x; in evaluate_rational_c_imp() local
50 …turn static_cast<V>(((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x) / ((b[4] * x2 + b[2]… in evaluate_rational_c_imp()
56 …return static_cast<V>(((a[0] * z2 + a[2]) * z2 + a[4] + (a[1] * z2 + a[3]) * z) / ((b[0] * z2 + b[… in evaluate_rational_c_imp()
65 V x2 = x * x; in evaluate_rational_c_imp() local
[all …]
H A Dpolynomial_horner3_14.hpp15 inline V evaluate_polynomial_c_imp(const T*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEXCEPT(V) in evaluate_polynomial_c_imp() argument
17 return static_cast<V>(0); in evaluate_polynomial_c_imp()
23 return static_cast<V>(a[0]); in evaluate_polynomial_c_imp()
29 return static_cast<V>(a[1] * x + a[0]); in evaluate_polynomial_c_imp()
35 return static_cast<V>((a[2] * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
41 return static_cast<V>(((a[3] * x + a[2]) * x + a[1]) * x + a[0]); in evaluate_polynomial_c_imp()
47 V x2 = x * x; in evaluate_polynomial_c_imp() local
49 t[0] = static_cast<V>(a[4] * x2 + a[2]); in evaluate_polynomial_c_imp()
50 t[1] = static_cast<V>(a[3] * x2 + a[1]); in evaluate_polynomial_c_imp()
51 t[0] *= x2; in evaluate_polynomial_c_imp()
[all …]
H A Drational_horner2_14.hpp15 inline V evaluate_rational_c_imp(const T*, const U*, const V&, const mpl::int_<0>*) BOOST_MATH_NOEX… in evaluate_rational_c_imp() argument
17 return static_cast<V>(0); in evaluate_rational_c_imp()
23 return static_cast<V>(a[0]) / static_cast<V>(b[0]); in evaluate_rational_c_imp()
29 return static_cast<V>((a[1] * x + a[0]) / (b[1] * x + b[0])); in evaluate_rational_c_imp()
35 return static_cast<V>(((a[2] * x + a[1]) * x + a[0]) / ((b[2] * x + b[1]) * x + b[0])); in evaluate_rational_c_imp()
41 …atic_cast<V>((((a[3] * x + a[2]) * x + a[1]) * x + a[0]) / (((b[3] * x + b[2]) * x + b[1]) * x + b… in evaluate_rational_c_imp()
49 V x2 = x * x; in evaluate_rational_c_imp() local
50 …turn static_cast<V>(((a[4] * x2 + a[2]) * x2 + a[0] + (a[3] * x2 + a[1]) * x) / ((b[4] * x2 + b[2]… in evaluate_rational_c_imp()
56 …return static_cast<V>(((a[0] * z2 + a[2]) * z2 + a[4] + (a[1] * z2 + a[3]) * z) / ((b[0] * z2 + b[… in evaluate_rational_c_imp()
65 V x2 = x * x; in evaluate_rational_c_imp() local
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/dts/
H A Dimx7ulp-pinfunc.h26 #define ULP1_PAD_PTA0_LLWU0_P0__CMP0_IN2A 0x0000 0x0000 0x0 0x0
27 #define ULP1_PAD_PTA0_LLWU0_P0__PTA0 0x0000 0x0000 0x1 0x0
28 #define ULP1_PAD_PTA0_LLWU0_P0__LLWU0_P0 0x0000 0x0000 0xd 0x0
29 #define ULP1_PAD_PTA0_LLWU0_P0__LPSPI0_PCS1 0x0000 0xd104 0x3 0x2
30 #define ULP1_PAD_PTA0_LLWU0_P0__LPUART0_CTS_B 0x0000 0xd1f8 0x4 0x2
31 #define ULP1_PAD_PTA0_LLWU0_P0__LPI2C0_SCL 0x0000 0xd17c 0x5 0x2
32 #define ULP1_PAD_PTA0_LLWU0_P0__TPM0_CLKIN 0x0000 0xd1a8 0x6 0x2
33 #define ULP1_PAD_PTA0_LLWU0_P0__I2S0_RX_BCLK 0x0000 0x01b8 0x7 0x2
34 #define ULP1_PAD_PTA1__CMP0_IN2B 0x0004 0x0000 0x0 0x0
35 #define ULP1_PAD_PTA1__PTA1 0x0004 0x0000 0x1 0x0
[all …]
H A Dimx6sll-pinfunc.h17 #define MX6SLL_PAD_WDOG_B__WDOG1_B 0x0014 0x02DC 0x0000 0x0 0x0
18 #define MX6SLL_PAD_WDOG_B__WDOG1_RESET_B_DEB 0x0014 0x02DC 0x0000 0x1 0x0
19 #define MX6SLL_PAD_WDOG_B__UART5_RI_B 0x0014 0x02DC 0x0000 0x2 0x0
20 #define MX6SLL_PAD_WDOG_B__GPIO3_IO18 0x0014 0x02DC 0x0000 0x5 0x0
21 #define MX6SLL_PAD_REF_CLK_24M__XTALOSC_REF_CLK_24M 0x0018 0x02E0 0x0000 0x0 0x0
22 #define MX6SLL_PAD_REF_CLK_24M__I2C3_SCL 0x0018 0x02E0 0x068C 0x1 0x0
23 #define MX6SLL_PAD_REF_CLK_24M__PWM3_OUT 0x0018 0x02E0 0x0000 0x2 0x0
24 #define MX6SLL_PAD_REF_CLK_24M__USB_OTG2_ID 0x0018 0x02E0 0x0560 0x3 0x0
25 #define MX6SLL_PAD_REF_CLK_24M__CCM_PMIC_READY 0x0018 0x02E0 0x05AC 0x4 0x0
26 #define MX6SLL_PAD_REF_CLK_24M__GPIO3_IO21 0x0018 0x02E0 0x0000 0x5 0x0
[all …]
H A Dimx6sl-pinfunc.h17 #define MX6SL_PAD_AUD_MCLK__AUDIO_CLK_OUT 0x04c 0x2a4 0x000 0x0 0x0
18 #define MX6SL_PAD_AUD_MCLK__PWM4_OUT 0x04c 0x2a4 0x000 0x1 0x0
19 #define MX6SL_PAD_AUD_MCLK__ECSPI3_RDY 0x04c 0x2a4 0x6b4 0x2 0x0
20 #define MX6SL_PAD_AUD_MCLK__FEC_MDC 0x04c 0x2a4 0x000 0x3 0x0
21 #define MX6SL_PAD_AUD_MCLK__WDOG2_RESET_B_DEB 0x04c 0x2a4 0x000 0x4 0x0
22 #define MX6SL_PAD_AUD_MCLK__GPIO1_IO06 0x04c 0x2a4 0x000 0x5 0x0
23 #define MX6SL_PAD_AUD_MCLK__SPDIF_EXT_CLK 0x04c 0x2a4 0x7f4 0x6 0x0
24 #define MX6SL_PAD_AUD_RXC__AUD3_RXC 0x050 0x2a8 0x000 0x0 0x0
25 #define MX6SL_PAD_AUD_RXC__I2C1_SDA 0x050 0x2a8 0x720 0x1 0x0
26 #define MX6SL_PAD_AUD_RXC__UART3_TX_DATA 0x050 0x2a8 0x000 0x2 0x0
[all …]
/OK3568_Linux_fs/kernel/arch/powerpc/boot/dts/fsl/
H A Dmpc8568mds.dts22 reg = <0x0 0x0 0x0 0x0>;
26 reg = <0x0 0xe0005000 0x0 0x1000>;
27 ranges = <0x0 0x0 0xfe000000 0x02000000
28 0x1 0x0 0xf8000000 0x00008000
29 0x2 0x0 0xf0000000 0x04000000
30 0x4 0x0 0xf8008000 0x00008000
31 0x5 0x0 0xf8010000 0x00008000>;
33 nor@0,0 {
37 reg = <0x0 0x0 0x02000000>;
42 bcsr@1,0 {
[all …]
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dimx7ulp-pinfunc.h15 #define IMX7ULP_PAD_PTC0__PTC0 0x0000 0x0000 0x1 0x0
16 #define IMX7ULP_PAD_PTC0__TRACE_D15 0x0000 0x0000 0xa 0x0
17 #define IMX7ULP_PAD_PTC0__LPUART4_CTS_B 0x0000 0x0244 0x4 0x1
18 #define IMX7ULP_PAD_PTC0__LPI2C4_SCL 0x0000 0x0278 0x5 0x1
19 #define IMX7ULP_PAD_PTC0__TPM4_CLKIN 0x0000 0x0298 0x6 0x1
20 #define IMX7ULP_PAD_PTC0__FB_AD0 0x0000 0x0000 0x9 0x0
21 #define IMX7ULP_PAD_PTC1__PTC1 0x0004 0x0000 0x1 0x0
22 #define IMX7ULP_PAD_PTC1__TRACE_D14 0x0004 0x0000 0xa 0x0
23 #define IMX7ULP_PAD_PTC1__LPUART4_RTS_B 0x0004 0x0000 0x4 0x0
24 #define IMX7ULP_PAD_PTC1__LPI2C4_SDA 0x0004 0x027c 0x5 0x1
[all …]
H A Dimx6sll-pinfunc.h15 #define MX6SLL_PAD_WDOG_B__WDOG1_B 0x0014 0x02DC 0x0000 0x0 0x0
16 #define MX6SLL_PAD_WDOG_B__WDOG1_RESET_B_DEB 0x0014 0x02DC 0x0000 0x1 0x0
17 #define MX6SLL_PAD_WDOG_B__UART5_RI_B 0x0014 0x02DC 0x0000 0x2 0x0
18 #define MX6SLL_PAD_WDOG_B__GPIO3_IO18 0x0014 0x02DC 0x0000 0x5 0x0
19 #define MX6SLL_PAD_REF_CLK_24M__XTALOSC_REF_CLK_24M 0x0018 0x02E0 0x0000 0x0 0x0
20 #define MX6SLL_PAD_REF_CLK_24M__I2C3_SCL 0x0018 0x02E0 0x068C 0x1 0x0
21 #define MX6SLL_PAD_REF_CLK_24M__PWM3_OUT 0x0018 0x02E0 0x0000 0x2 0x0
22 #define MX6SLL_PAD_REF_CLK_24M__USB_OTG2_ID 0x0018 0x02E0 0x0560 0x3 0x0
23 #define MX6SLL_PAD_REF_CLK_24M__CCM_PMIC_READY 0x0018 0x02E0 0x05AC 0x4 0x0
24 #define MX6SLL_PAD_REF_CLK_24M__GPIO3_IO21 0x0018 0x02E0 0x0000 0x5 0x0
[all …]
H A Dimx6sl-pinfunc.h13 #define MX6SL_PAD_AUD_MCLK__AUDIO_CLK_OUT 0x04c 0x2a4 0x000 0x0 0x0
14 #define MX6SL_PAD_AUD_MCLK__PWM4_OUT 0x04c 0x2a4 0x000 0x1 0x0
15 #define MX6SL_PAD_AUD_MCLK__ECSPI3_RDY 0x04c 0x2a4 0x6b4 0x2 0x0
16 #define MX6SL_PAD_AUD_MCLK__FEC_MDC 0x04c 0x2a4 0x000 0x3 0x0
17 #define MX6SL_PAD_AUD_MCLK__WDOG2_RESET_B_DEB 0x04c 0x2a4 0x000 0x4 0x0
18 #define MX6SL_PAD_AUD_MCLK__GPIO1_IO06 0x04c 0x2a4 0x000 0x5 0x0
19 #define MX6SL_PAD_AUD_MCLK__SPDIF_EXT_CLK 0x04c 0x2a4 0x7f4 0x6 0x0
20 #define MX6SL_PAD_AUD_RXC__AUD3_RXC 0x050 0x2a8 0x000 0x0 0x0
21 #define MX6SL_PAD_AUD_RXC__I2C1_SDA 0x050 0x2a8 0x720 0x1 0x0
22 #define MX6SL_PAD_AUD_RXC__UART3_TX_DATA 0x050 0x2a8 0x000 0x2 0x0
[all …]

12345678910>>...46