Home
last modified time | relevance | path

Searched refs:big_endian (Results 1 – 25 of 67) sorted by relevance

123

/external/google-breakpad/src/common/linux/
Ddump_symbols.cc180 const bool big_endian, in LoadStabs() argument
194 big_endian, 4, true, &handler); in LoadStabs()
228 const bool big_endian, in LoadDwarf() argument
233 const dwarf2reader::Endianness endianness = big_endian ? in LoadDwarf()
323 const bool big_endian, in LoadDwarfCFI() argument
335 const dwarf2reader::Endianness endianness = big_endian ? in LoadDwarfCFI()
401 bool* big_endian) { in ElfEndianness() argument
403 *big_endian = false; in ElfEndianness()
407 *big_endian = true; in ElfEndianness()
429 const bool big_endian, in ReadDebugLink() argument
[all …]
Delf_symbols_to_module.cc72 ELFSymbolIterator(const ByteBuffer *buffer, bool big_endian, in ELFSymbolIterator() argument
74 : value_size_(value_size), cursor_(buffer, big_endian) { in ELFSymbolIterator()
141 const bool big_endian, in ELFSymbolsToModule() argument
154 ELFSymbolIterator iterator(&symbols, big_endian, value_size); in ELFSymbolsToModule()
Delf_symbols_to_module.h51 const bool big_endian,
/external/piex/src/binary_parse/
Drange_checked_byte_ptr.cc297 int16 Get16s(const RangeCheckedBytePtr &input, const bool big_endian, in Get16s() argument
299 const uint16 unsigned_value = Get16u(input, big_endian, status); in Get16s()
319 uint16 Get16u(const RangeCheckedBytePtr &input, const bool big_endian, in Get16u() argument
328 if (big_endian) { in Get16u()
335 int32 Get32s(const RangeCheckedBytePtr &input, const bool big_endian, in Get32s() argument
337 const uint32 unsigned_value = Get32u(input, big_endian, status); in Get32s()
379 uint32 Get32u(const RangeCheckedBytePtr &input, const bool big_endian, in Get32u() argument
388 if (big_endian) { in Get32u()
Drange_checked_byte_ptr.h459 int16 Get16s(const RangeCheckedBytePtr &input, const bool big_endian,
461 uint16 Get16u(const RangeCheckedBytePtr &input, const bool big_endian,
463 int32 Get32s(const RangeCheckedBytePtr &input, const bool big_endian,
465 uint32 Get32u(const RangeCheckedBytePtr &input, const bool big_endian,
/external/google-breakpad/src/common/
Dbyte_cursor.h85 ByteCursor(const ByteBuffer *buffer, bool big_endian = false)
87 big_endian_(big_endian), complete_(true) { } in buffer_()
90 bool big_endian() const { return big_endian_; } in big_endian() function
91 void set_big_endian(bool big_endian) { big_endian_ = big_endian; } in set_big_endian() argument
Dstabs_reader.cc49 bool big_endian, size_t value_size) in EntryIterator() argument
50 : value_size_(value_size), cursor_(buffer, big_endian) { in EntryIterator()
70 bool big_endian, size_t value_size, bool unitized, in StabsReader() argument
74 iterator_(&entries_, big_endian, value_size), in StabsReader()
Dstabs_reader.h98 bool big_endian, size_t value_size, bool unitized,
153 EntryIterator(const ByteBuffer *buffer, bool big_endian, size_t value_size);
/external/libunwind/src/arm/
DGcreate_addr_space.c54 as->big_endian = 0; in unw_create_addr_space()
56 as->big_endian = 1; in unw_create_addr_space()
/external/libunwind/src/aarch64/
DGcreate_addr_space.c54 as->big_endian = 0; in unw_create_addr_space()
56 as->big_endian = 1; in unw_create_addr_space()
/external/libunwind/src/sh/
DGcreate_addr_space.c53 as->big_endian = 0; in unw_create_addr_space()
55 as->big_endian = 1; in unw_create_addr_space()
/external/libunwind/src/ia64/
DGcreate_addr_space.c58 as->big_endian = (__BYTE_ORDER == __BIG_ENDIAN); in unw_create_addr_space()
60 as->big_endian = (byte_order == __BIG_ENDIAN); in unw_create_addr_space()
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Dbyte_io_unittest.cc56 void TestRead(bool big_endian) { in TestRead() argument
67 PopulateTestData(bytes + i, test_value, B, big_endian); in TestRead()
78 void TestWrite(bool big_endian) { in TestWrite() argument
90 PopulateTestData(expected_bytes + i, test_value, B, big_endian); in TestWrite()
/external/libunwind/src/mips/
DGcreate_addr_space.c56 as->big_endian = (__BYTE_ORDER == __BIG_ENDIAN); in unw_create_addr_space()
58 as->big_endian = (byte_order == __BIG_ENDIAN); in unw_create_addr_space()
/external/tensorflow/tensorflow/contrib/ignite/kernels/client/
Dignite_client.h27 Client(bool big_endian) : byte_swapper_(ByteSwapper(big_endian)) {} in Client() argument
Dignite_plain_client_unix.cc31 PlainClient::PlainClient(string host, int port, bool big_endian) in PlainClient() argument
32 : Client(big_endian), host_(std::move(host)), port_(port), sock_(-1) {} in PlainClient()
Dignite_byte_swapper.h26 ByteSwapper(bool big_endian) { swap_ = big_endian == port::kLittleEndian; } in ByteSwapper() argument
Dignite_plain_client_windows.cc33 PlainClient::PlainClient(string host, int port, bool big_endian) in PlainClient() argument
34 : Client(big_endian), in PlainClient()
Dignite_ssl_wrapper.cc33 string keyfile, string cert_password, bool big_endian) in SslWrapper() argument
34 : Client(big_endian), in SslWrapper()
/external/python/cpython2/Modules/_ctypes/
Dstgdict.c330 int big_endian; in PyCStructUnionType_update_stgdict() local
344 big_endian = PyObject_HasAttrString(type, "_swappedbytes_") ? 0 : 1; in PyCStructUnionType_update_stgdict()
346 big_endian = PyObject_HasAttrString(type, "_swappedbytes_") ? 1 : 0; in PyCStructUnionType_update_stgdict()
550 pack, big_endian); in PyCStructUnionType_update_stgdict()
558 pack, big_endian); in PyCStructUnionType_update_stgdict()
/external/python/cpython3/Modules/_ctypes/
Dstgdict.c346 int big_endian; in PyCStructUnionType_update_stgdict() local
360 big_endian = PyObject_HasAttrString(type, "_swappedbytes_") ? 0 : 1; in PyCStructUnionType_update_stgdict()
362 big_endian = PyObject_HasAttrString(type, "_swappedbytes_") ? 1 : 0; in PyCStructUnionType_update_stgdict()
561 pack, big_endian); in PyCStructUnionType_update_stgdict()
569 pack, big_endian); in PyCStructUnionType_update_stgdict()
/external/tensorflow/tensorflow/contrib/ignite/kernels/igfs/
Digfs_extended_tcp_client.cc21 bool big_endian) in ExtendedTCPClient() argument
22 : PlainClient(host, port, big_endian), pos_(0) {} in ExtendedTCPClient()
/external/elfutils/src/
Dstrings.c114 static bool big_endian; variable
247 big_endian = true; in parse_opt()
325 if (big_endian) in process_chunk_mb()
332 if (big_endian) in process_chunk_mb()
/external/libunwind/include/tdep-ia64/
Dlibunwind_i.h100 int big_endian; member
246 #define tdep_big_endian(as) ((c)->as->big_endian != 0)
/external/u-boot/drivers/pci/
Dpcie_layerscape.c38 if (pcie->big_endian) in ctrl_readl()
47 if (pcie->big_endian) in ctrl_writel()
520 pcie->big_endian = fdtdec_get_bool(fdt, node, "big-endian"); in ls_pcie_probe()
525 pcie->big_endian); in ls_pcie_probe()

123