Home
last modified time | relevance | path

Searched refs:endian (Results 1 – 25 of 631) sorted by relevance

12345678910>>...26

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/detail/endian/
H A Dendian.hpp288 namespace endian namespace
303 class endian;
312 class endian< endianness::big, T, n_bits, alignment::unaligned > class
313 : cover_operators< endian< endianness::big, T, n_bits >, T >
319 endian() BOOST_ENDIAN_DEFAULT_CONSTRUCT in endian() function in boost::spirit::endian::endian
320 explicit endian(T val) in endian()
329endian & operator=(T val) { detail::store_big_endian<T, n_bits/8>(m_value, val); return *this; } in operator =()
344 class endian< endianness::little, T, n_bits, alignment::unaligned > class
345 : cover_operators< endian< endianness::little, T, n_bits >, T >
351 endian() BOOST_ENDIAN_DEFAULT_CONSTRUCT in endian() function in boost::spirit::endian::endian
[all …]
/OK3568_Linux_fs/kernel/drivers/misc/ocxl/
H A Dmmio.c8 enum ocxl_endian endian, u32 *val) in ocxl_global_mmio_read32() argument
14 if (endian == OCXL_HOST_ENDIAN) in ocxl_global_mmio_read32()
15 endian = OCXL_BIG_ENDIAN; in ocxl_global_mmio_read32()
18 switch (endian) { in ocxl_global_mmio_read32()
33 enum ocxl_endian endian, u64 *val) in ocxl_global_mmio_read64() argument
39 if (endian == OCXL_HOST_ENDIAN) in ocxl_global_mmio_read64()
40 endian = OCXL_BIG_ENDIAN; in ocxl_global_mmio_read64()
43 switch (endian) { in ocxl_global_mmio_read64()
58 enum ocxl_endian endian, u32 val) in ocxl_global_mmio_write32() argument
64 if (endian == OCXL_HOST_ENDIAN) in ocxl_global_mmio_write32()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dsiteinfo.bbclass11 # * endianness: Return "be" for big endian targets, "le" for little endian
20 …"allarch": "endian-little bit-32", # bogus, but better than special-casing the checks below for al…
21 "aarch64": "endian-little bit-64 arm-common arm-64",
22 "aarch64_be": "endian-big bit-64 arm-common arm-64",
23 "arc": "endian-little bit-32 arc-common",
24 "arceb": "endian-big bit-32 arc-common",
25 "arm": "endian-little bit-32 arm-common arm-32",
26 "armeb": "endian-big bit-32 arm-common arm-32",
27 "avr32": "endian-big bit-32 avr32-common",
28 "bfin": "endian-little bit-32 bfin-common",
[all …]
/OK3568_Linux_fs/u-boot/fs/zfs/
H A Dzfs_fletcher.c36 zfs_endian_t endian, in fletcher_2_endian() argument
44 a0 += zfs_to_cpu64(ip[0], endian); in fletcher_2_endian()
45 a1 += zfs_to_cpu64(ip[1], endian); in fletcher_2_endian()
50 zcp->zc_word[0] = cpu_to_zfs64(a0, endian); in fletcher_2_endian()
51 zcp->zc_word[1] = cpu_to_zfs64(a1, endian); in fletcher_2_endian()
52 zcp->zc_word[2] = cpu_to_zfs64(b0, endian); in fletcher_2_endian()
53 zcp->zc_word[3] = cpu_to_zfs64(b1, endian); in fletcher_2_endian()
57 fletcher_4_endian(const void *buf, uint64_t size, zfs_endian_t endian, in fletcher_4_endian() argument
65 a += zfs_to_cpu32(ip[0], endian); in fletcher_4_endian()
71 zcp->zc_word[0] = cpu_to_zfs64(a, endian); in fletcher_4_endian()
[all …]
H A Dzfs.c142 zfs_endian_t endian; member
210 static int zio_read_data(blkptr_t *bp, zfs_endian_t endian,
214 zio_read(blkptr_t *bp, zfs_endian_t endian, void **buf,
238 zfs_endian_t endian __attribute__ ((unused)), in zio_checksum_off() argument
266 zfs_endian_t endian, char *buf, int size) in zio_checksum_verify() argument
280 ci->ci_func(buf, size, endian, &actual_cksum); in zio_checksum_verify()
284 ci->ci_func(buf, size, endian, &actual_cksum); in zio_checksum_verify()
349 zfs_endian_t endian = UNKNOWN_ENDIAN; in uberblock_verify() local
361 endian = LITTLE_ENDIAN; in uberblock_verify()
366 endian = BIG_ENDIAN; in uberblock_verify()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/binary/
H A Dbinary.hpp198 template <BOOST_SCOPED_ENUM(boost::endian::endianness) bits>
202 struct what<boost::endian::endianness::native>
211 struct what<boost::endian::endianness::little>
220 struct what<boost::endian::endianness::big>
230 template <typename T, BOOST_SCOPED_ENUM(boost::endian::endianness) endian, int bits>
231 struct any_binary_parser : primitive_parser<any_binary_parser<T, endian, bits> >
236 typedef boost::endian::endian<endian, typename T::type,
267 return info(qi::detail::what<endian>::is()); in what()
273 , BOOST_SCOPED_ENUM(boost::endian::endianness) endian, int bits>
275 : primitive_parser<binary_lit_parser<V, T, endian, bits> >
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/freescale/
H A Dxgmac_mdio.c137 bool endian = priv->is_little_endian; in xgmac_mdio_write() local
139 mdio_stat = xgmac_read32(&regs->mdio_stat, endian); in xgmac_mdio_write()
150 xgmac_write32(mdio_stat, &regs->mdio_stat, endian); in xgmac_mdio_write()
152 ret = xgmac_wait_until_free(&bus->dev, regs, endian); in xgmac_mdio_write()
158 xgmac_write32(mdio_ctl, &regs->mdio_ctl, endian); in xgmac_mdio_write()
162 xgmac_write32(regnum & 0xffff, &regs->mdio_addr, endian); in xgmac_mdio_write()
164 ret = xgmac_wait_until_free(&bus->dev, regs, endian); in xgmac_mdio_write()
170 xgmac_write32(MDIO_DATA(value), &regs->mdio_data, endian); in xgmac_mdio_write()
172 ret = xgmac_wait_until_done(&bus->dev, regs, endian); in xgmac_mdio_write()
193 bool endian = priv->is_little_endian; in xgmac_mdio_read() local
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/regmap/
H A Dregmap.txt5 little-endian,
6 big-endian,
7 native-endian: See common-properties.txt for a definition
10 Regmap defaults to little-endian register access on MMIO based
12 architectures that typically run big-endian operating systems
13 (e.g. PowerPC), registers can be defined as big-endian and must
16 On SoCs that can be operated in both big-endian and little-endian
19 chips), "native-endian" is used to allow using the same device tree
23 Scenario 1 : a register set in big-endian mode.
27 big-endian;
/OK3568_Linux_fs/buildroot/toolchain/toolchain-external/toolchain-external-codesourcery-mips/
H A DConfig.in25 Select MIPS (big endian) core
29 Select MIPS (big endian) core
32 Select MIPS (big endian) core
36 Select MIPS (big endian) core
39 Select MIPS (big endian) core
43 Select MIPS (little endian) core
47 Select MIPS (little endian) core
50 Select MIPS (little endian) core
54 Select MIPS (little endian) core
57 Select MIPS (little endian) core
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/
H A Dcommon-properties.txt13 - big-endian: Boolean; force big endian register accesses
15 know the peripheral always needs to be accessed in big endian (BE) mode.
16 - little-endian: Boolean; force little endian register accesses
18 peripheral always needs to be accessed in little endian (LE) mode.
19 - native-endian: Boolean; always use register accesses matched to the
27 In such cases, little-endian is the preferred default, but it is not
28 a requirement. Some implementations assume that little-endian is
38 native-endian;
46 big-endian;
54 native-endian;
[all …]
/OK3568_Linux_fs/buildroot/package/wampcc/
H A D0001-Add-RISC-V-endian-detection.patch4 Subject: [PATCH] Add RISC-V endian detection
6 3rdparty/msgpack-c/include/msgpack/predef/other/endian.h (which comes
9 (1) It includes <endian.h> if BOOST_LIB_C_GNU is defined, and then
17 this, <endian.h> is not included, __BYTE_ORDER is not defined, and
23 little endian.
27 3rdparty/msgpack-c/include/msgpack/predef/other/endian.h | 3 ++-
30 …arty/msgpack-c/include/msgpack/predef/other/endian.h b/3rdparty/msgpack-c/include/msgpack/predef/o…
32 --- a/3rdparty/msgpack-c/include/msgpack/predef/other/endian.h
33 +++ b/3rdparty/msgpack-c/include/msgpack/predef/other/endian.h
/OK3568_Linux_fs/buildroot/toolchain/toolchain-external/toolchain-external-codescape-mti-mips/
H A DConfig.in20 Select 'MIPS (big endian)' Target Architecture
24 Select 'MIPS (big endian)' Target Architecture
29 Select 'MIPS (big endian)' Target Architecture
33 Select 'MIPS (little endian)' Target Architecture
37 Select 'MIPS (little endian)' Target Architecture
42 Select 'MIPS (little endian)' Target Architecture
47 Select 'MIPS (little endian)' Target Architecture
53 Select 'MIPS (little endian)' Target Architecture
58 Select 'MIPS64 (big endian)' Target Architecture
63 Select 'MIPS64 (little endian)' Target Architecture
[all …]
/OK3568_Linux_fs/buildroot/toolchain/toolchain-external/toolchain-external-codescape-img-mips/
H A DConfig.in19 Select 'MIPS (big endian)' Target Architecture
23 Select 'MIPS (big endian)' Target Architecture
27 Select 'MIPS (little endian)' Target Architecture
31 Select 'MIPS (little endian)' Target Architecture
36 Select 'MIPS (little endian)' Target Architecture
42 Select 'MIPS (little endian)' Target Architecture
47 Select 'MIPS64 (big endian)' Target Architecture
52 Select 'MIPS64 (little endian)' Target Architecture
57 Select 'MIPS64 (big endian)' Target Architecture
62 Select 'MIPS64 (little endian)' Target Architecture
/OK3568_Linux_fs/kernel/fs/nls/
H A Dnls_base.c117 static inline void put_utf16(wchar_t *s, unsigned c, enum utf16_endian endian) in put_utf16() argument
119 switch (endian) { in put_utf16()
132 int utf8s_to_utf16s(const u8 *s, int inlen, enum utf16_endian endian, in utf8s_to_utf16s() argument
154 endian); in utf8s_to_utf16s()
158 endian); in utf8s_to_utf16s()
161 put_utf16(op++, u, endian); in utf8s_to_utf16s()
165 put_utf16(op++, *s++, endian); in utf8s_to_utf16s()
174 static inline unsigned long get_utf16(unsigned c, enum utf16_endian endian) in get_utf16() argument
176 switch (endian) { in get_utf16()
186 int utf16s_to_utf8s(const wchar_t *pwcs, int inlen, enum utf16_endian endian, in utf16s_to_utf8s() argument
[all …]
/OK3568_Linux_fs/buildroot/arch/
H A DConfig.in25 bool "ARC (little endian)"
30 performance host applications. Little endian.
33 bool "ARC (big endian)"
38 performance host applications. Big endian.
41 bool "ARM (little endian)"
46 Little endian.
51 bool "ARM (big endian)"
56 Big endian.
61 bool "AArch64 (little endian)"
70 bool "AArch64 (big endian)"
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb/
H A Darm64-support.patch18 @@ -1228,6 +1228,7 @@ if endian == "auto":
20 'arm' : { 'endian': 'little', 'defines': ('__arm__',) },
21 'aarch64' : { 'endian': 'little', 'defines': ('__arm64__', '__aarch64__')},
22 + 'arm64' : { 'endian': 'little', 'defines': ('__arm64__', '__aarch64__')},
23 'i386' : { 'endian': 'little', 'defines': ('__i386', '_M_IX86')},
24 'ppc64le' : { 'endian': 'little', 'defines': ('__powerpc64__',)},
25 's390x' : { 'endian': 'big', 'defines': ('__s390x__',)},
38 # Using 64 bit little endian
/OK3568_Linux_fs/yocto/meta-openembedded/meta-webserver/recipes-httpd/nginx/files/
H A D0001-Allow-the-overriding-of-the-endianness-via-the-confi.patch5 --with-endian
7 The existing configure options contain the --with-endian; however, the command
25 + echo " little endian"
28 + echo " big endian"
48 - echo " little endian"
51 - echo " big endian"
55 + echo " little endian"
58 + echo " big endian"
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/display/
H A Dsm501fb.txt19 - little-endian: available on big endian systems, to
20 set different foreign endian.
21 - big-endian: available on little endian systems, to
22 set different foreign endian.
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.fsl-esdhc18 ESDHC IP is in little-endian mode. Accessing ESDHC registers can be
19 determined by ESDHC IP's endian mode or processor's endian mode.
21 ESDHC IP is in big-endian mode. Accessing ESDHC registers can be determined
22 by ESDHC IP's endian mode or processor's endian mode.
/OK3568_Linux_fs/kernel/scripts/
H A Drecordmcount.pl123 my ($arch, $endian, $bits, $objdump, $objcopy, $cc,
271 if ($endian eq "big") {
285 if ($endian eq "big") {
375 $objdump .= " -Melf-trad".$endian."mips ";
377 if ($endian eq "big") {
378 $endian = " -EB ";
381 $endian = " -EL ";
385 $cc .= " -mno-abicalls -fno-pic -mabi=" . $bits . $endian;
386 $ld .= $endian;
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-4.19/scripts/
H A Drecordmcount.pl123 my ($arch, $endian, $bits, $objdump, $objcopy, $cc,
271 if ($endian eq "big") {
285 if ($endian eq "big") {
375 $objdump .= " -Melf-trad".$endian."mips ";
377 if ($endian eq "big") {
378 $endian = " -EB ";
381 $endian = " -EL ";
385 $cc .= " -mno-abicalls -fno-pic -mabi=" . $bits . $endian;
386 $ld .= $endian;
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-5.10/scripts/
H A Drecordmcount.pl123 my ($arch, $endian, $bits, $objdump, $objcopy, $cc,
271 if ($endian eq "big") {
285 if ($endian eq "big") {
375 $objdump .= " -Melf-trad".$endian."mips ";
377 if ($endian eq "big") {
378 $endian = " -EB ";
381 $endian = " -EL ";
385 $cc .= " -mno-abicalls -fno-pic -mabi=" . $bits . $endian;
386 $ld .= $endian;
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-5.10/scripts/
H A Drecordmcount.pl123 my ($arch, $endian, $bits, $objdump, $objcopy, $cc,
271 if ($endian eq "big") {
285 if ($endian eq "big") {
375 $objdump .= " -Melf-trad".$endian."mips ";
377 if ($endian eq "big") {
378 $endian = " -EB ";
381 $endian = " -EL ";
385 $cc .= " -mno-abicalls -fno-pic -mabi=" . $bits . $endian;
386 $ld .= $endian;
/OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-4.19/scripts/
H A Drecordmcount.pl123 my ($arch, $endian, $bits, $objdump, $objcopy, $cc,
271 if ($endian eq "big") {
285 if ($endian eq "big") {
375 $objdump .= " -Melf-trad".$endian."mips ";
377 if ($endian eq "big") {
378 $endian = " -EB ";
381 $endian = " -EL ";
385 $cc .= " -mno-abicalls -fno-pic -mabi=" . $bits . $endian;
386 $ld .= $endian;
/OK3568_Linux_fs/kernel/include/misc/
H A Docxl.h241 enum ocxl_endian endian, u32 *val);
253 enum ocxl_endian endian, u64 *val);
265 enum ocxl_endian endian, u32 val);
277 enum ocxl_endian endian, u64 val);
289 enum ocxl_endian endian, u32 mask);
301 enum ocxl_endian endian, u64 mask);
313 enum ocxl_endian endian, u32 mask);
325 enum ocxl_endian endian, u64 mask);

12345678910>>...26