Searched refs:endian (Results 1 - 25 of 1021) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/amd64/include/
H A Dendian.h6 #include <x86/endian.h>
/freebsd-11-stable/sys/pc98/include/
H A Dendian.h6 #include <x86/endian.h>
/freebsd-11-stable/sys/i386/include/
H A Dendian.h6 #include <x86/endian.h>
/freebsd-11-stable/contrib/mdocml/
H A Dtest-be32toh.c2 #include <sys/endian.h>
4 #include <endian.h>
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndianStream.h1 //===- EndianStream.h - Stream ops with endian specific data ----*- C++ -*-===//
9 // This file defines utilities for operating on streams that have endian
24 namespace endian { namespace in namespace:llvm::support
27 inline void write(raw_ostream &os, value_type value, endianness endian) { argument
28 value = byte_swap<value_type>(value, endian);
33 inline void write<float>(raw_ostream &os, float value, endianness endian) { argument
34 write(os, FloatToBits(value), endian);
39 endianness endian) {
40 write(os, DoubleToBits(value), endian);
45 endianness endian) {
38 write(raw_ostream &os, double value, endianness endian) argument
44 write(raw_ostream &os, ArrayRef<value_type> vals, endianness endian) argument
[all...]
H A DEndian.h1 //===- Endian.h - Utilities for IO with endian specific data ----*- C++ -*-===//
9 // This file declares generic functions to read and write endian specific data.
44 namespace endian { namespace in namespace:llvm::support
51 inline value_type byte_swap(value_type value, endianness endian) { argument
52 if ((endian != native) && (endian != system_endianness()))
58 template<typename value_type, endianness endian>
60 return byte_swap(value, endian);
65 inline value_type read(const void *memory, endianness endian) { argument
72 return byte_swap<value_type>(ret, endian);
85 readNext(const CharT *&memory, endianness endian) argument
99 write(void *memory, value_type value, endianness endian) argument
[all...]
/freebsd-11-stable/lib/libc/mips/
H A Darith.h13 #include <machine/endian.h>
/freebsd-11-stable/contrib/ofed/include/
H A Dendian.h37 #include <sys/endian.h>
H A Dbyteswap.h36 #include <sys/endian.h>
/freebsd-11-stable/include/
H A Da.out.h38 #include <sys/endian.h>
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_endianness.h50 #include <sys/endian.h>
63 #include <machine/endian.h>
111 #error Unable to determine endian
/freebsd-11-stable/contrib/netbsd-tests/sbin/newfs/
H A Dquotas_common.sh30 local endian=$1; shift
40 -B ${endian} -O ${vers} -s 4000 -F ${IMG}
/freebsd-11-stable/sys/compat/freebsd32/
H A Dfreebsd32_misc.h35 #include <sys/endian.h>
/freebsd-11-stable/tools/tools/netrate/tcpp/
H A Dtcpp_util.c30 #include <sys/endian.h>
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DEndian.h18 namespace endian { namespace in namespace:lldb_private
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFAsmBackend.cpp64 support::endian::write<uint64_t>(OS, 0x15000000, Endian);
78 support::endian::write<uint32_t>(&Data[Fixup.getOffset() + 4],
82 support::endian::write<uint32_t>(&Data[Fixup.getOffset()], Value, Endian);
84 support::endian::write<uint64_t>(&Data[Fixup.getOffset()], Value, Endian);
89 support::endian::write32le(&Data[Fixup.getOffset() + 4], Value);
92 support::endian::write32be(&Data[Fixup.getOffset() + 4], Value);
97 support::endian::write<uint16_t>(&Data[Fixup.getOffset() + 2], Value,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DDataEncoder.cpp23 using namespace llvm::support::endian;
28 m_byte_order(endian::InlHostByteOrder()), m_addr_size(sizeof(void *)),
33 DataEncoder::DataEncoder(void *data, uint32_t length, ByteOrder endian, argument
36 m_end(static_cast<uint8_t *>(data) + length), m_byte_order(endian),
40 // endian swapping setting to "swap", and the address size to "addr_size". The
43 DataEncoder::DataEncoder(const DataBufferSP &data_sp, ByteOrder endian, argument
45 : m_start(nullptr), m_end(nullptr), m_byte_order(endian),
57 m_byte_order = endian::InlHostByteOrder();
71 // needed. The address size and endian swap settings will remain unchanged from
118 if (m_byte_order != endian
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Dxxhash.cpp86 V1 = round(V1, endian::read64le(P));
88 V2 = round(V2, endian::read64le(P));
90 V3 = round(V3, endian::read64le(P));
92 V4 = round(V4, endian::read64le(P));
109 uint64_t const K1 = round(0, endian::read64le(P));
116 H64 ^= (uint64_t)(endian::read32le(P)) * PRIME64_1;
/freebsd-11-stable/contrib/netbsd-tests/sbin/fsck_ffs/
H A Dquotas_common.sh5 local endian=$1; shift
10 atf_check -o ignore -e ignore newfs -B ${endian} -O ${vers} \
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-abi.h54 #include <machine/endian.h>
57 #include <endian.h>
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBData.h40 void SetByteOrder(lldb::ByteOrder endian);
80 lldb::ByteOrder endian, uint8_t addr_size);
85 static lldb::SBData CreateDataFromCString(lldb::ByteOrder endian,
92 static lldb::SBData CreateDataFromUInt64Array(lldb::ByteOrder endian,
97 static lldb::SBData CreateDataFromUInt32Array(lldb::ByteOrder endian,
102 static lldb::SBData CreateDataFromSInt64Array(lldb::ByteOrder endian,
107 static lldb::SBData CreateDataFromSInt32Array(lldb::ByteOrder endian,
112 static lldb::SBData CreateDataFromDoubleArray(lldb::ByteOrder endian,
/freebsd-11-stable/lib/libc/net/
H A Dntoh.c30 #include <sys/endian.h>
/freebsd-11-stable/sys/mips/sibyte/
H A Dsb_bus_space.h32 #include <machine/endian.h>
/freebsd-11-stable/contrib/ofed/libibverbs/
H A Darch.h35 #include <infiniband/endian.h>
/freebsd-11-stable/contrib/ofed/libibverbs/examples/
H A Ddevice_list.c37 #include <infiniband/endian.h>

Completed in 162 milliseconds

1234567891011>>