Home
last modified time | relevance | path

Searched refs:endian (Results 251 - 275 of 376) sorted by relevance

1...<<111213141516

/third_party/libunwind/libunwind/doc/
H A Dunw_create_addr_space.tex26 \File{$<$endian.h$>$}. In particular, \Const{\_\_LITTLE\_ENDIAN} would
27 request little-endian byte-order and \Const{\_\_BIG\_ENDIAN} would
28 request big-endian byte-order. Whether or not a particular byte-order
H A Dlibunwind-ia64.tex17 the Itanium Processor Family. This includes both little-endian Linux
18 and big-endian HP-UX. Furthermore, to make it possible for a single
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp474 uint32_t Imm = support::endian::read32le(PltContents.data() + Byte + 2); in findX86PltEntries()
481 uint32_t Imm = support::endian::read32le(PltContents.data() + Byte + 2); in findX86PltEntries()
499 uint32_t Imm = support::endian::read32le(PltContents.data() + Byte + 2); in findX86_64PltEntries()
/third_party/spirv-tools/test/
H A Dbinary_parse_test.cpp106 MOCK_METHOD6(Header, spv_result_t(spv_endianness_t endian, uint32_t magic,
113 spv_result_t invoke_header(void* user_data, spv_endianness_t endian, in invoke_header() argument
117 endian, magic, version, generator, id_bound, reserved); in invoke_header()
801 // endian-swapped version. in TEST_F()
832 // endian-swapped version. in TEST_F()
/third_party/libsnd/src/
H A Dw64.c146 psf->endian = SF_ENDIAN_LITTLE ; /* All W64 files are little endian. */ in w64_open()
384 psf->endian = SF_ENDIAN_LITTLE ; /* All W64 files are little endian. */ in w64_read_header()
H A Dpcm.c138 psf->data_endswap = (psf->endian == SF_ENDIAN_BIG) ? SF_FALSE : SF_TRUE ; in pcm_init()
140 psf->data_endswap = (psf->endian == SF_ENDIAN_LITTLE) ? SF_FALSE : SF_TRUE ; in pcm_init()
144 { switch (psf->bytewidth * 0x10000 + psf->endian + chars) in pcm_init()
199 psf_log_printf (psf, "pcm.c returning SFE_UNIMPLEMENTED\nbytewidth %d endian %d\n", psf->bytewidth, psf->endian) ; in pcm_init()
205 { switch (psf->bytewidth * 0x10000 + psf->endian + chars) in pcm_init()
264 psf_log_printf (psf, "pcm.c returning SFE_UNIMPLEMENTED\nbytewidth %d endian %d\n", psf->bytewidth, psf->endian) ; in pcm_init()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp92 support::endian::write64le(Data, Value); in writeUint64()
99 support::endian::write32le(Data, Value); in writeUint32()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DARMAttributeParser.cpp704 support::endian::read32le(Section.data() + Offset) : in Parse()
705 support::endian::read32be(Section.data() + Offset); in Parse()
/third_party/spirv-tools/source/
H A Dopcode.cpp170 const uint16_t wordCount, const spv_endianness_t endian, in spvInstructionCopy()
175 pInst->words[wordIndex] = spvFixWord(words[wordIndex], endian); in spvInstructionCopy()
169 spvInstructionCopy(const uint32_t* words, const spv::Op opcode, const uint16_t wordCount, const spv_endianness_t endian, spv_instruction_t* pInst) spvInstructionCopy() argument
/third_party/node/deps/simdutf/
H A Dsimdutf.cpp658 template <endianness endian>
660 this->chunks[0].template store_ascii_as_utf16<endian>(ptr+sizeof(simd8<T>)*0); in store_ascii_as_utf16()
661 this->chunks[1].template store_ascii_as_utf16<endian>(ptr+sizeof(simd8<T>)*1); in store_ascii_as_utf16()
662 this->chunks[2].template store_ascii_as_utf16<endian>(ptr+sizeof(simd8<T>)*2); in store_ascii_as_utf16()
663 this->chunks[3].template store_ascii_as_utf16<endian>(ptr+sizeof(simd8<T>)*3); in store_ascii_as_utf16()
1968 template <endianness endian>
1970 this->chunks[0].template store_ascii_as_utf16<endian>(ptr+sizeof(simd8<T>)*0); in store_ascii_as_utf16()
1971 this->chunks[1].template store_ascii_as_utf16<endian>(ptr+sizeof(simd8<T>)*1); in store_ascii_as_utf16()
2904 template <endianness endian>
2906 this->chunks[0].template store_ascii_as_utf16<endian>(pt in store_ascii_as_utf16()
[all...]
/third_party/elfutils/src/
H A Dstrings.c26 #include <endian.h>
112 /* True if multibyte characters are in big-endian order. */
/third_party/alsa-utils/axfer/
H A Dcontainer-riff-wave.c13 #include <endian.h>
/third_party/backends/lib/
H A Dmd5.c34 # include <endian.h>
93 must be in little endian byte order.
197 result is always in little endian byte order, so that a byte-wise
332 little endian byte order we perhaps have to change the byte order in md5_process_block()
/third_party/FreeBSD/sys/dev/usb/controller/
H A Dehci.h35 #include <sys/endian.h>
345 #define EHCI_SCFLG_BIGEDESC 0x0008 /* big-endian byte order descriptors */
393 * Typically the latter is little-endian but some controllers require
394 * big-endian in which case we may need to manually swap.
421 * Normal little-endian only conversion routines.
/third_party/libbpf/src/
H A Dbtf.h135 LIBBPF_API int btf__set_endianness(struct btf *btf, enum btf_endianness endian);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFAArch64.h24 using namespace llvm::support::endian;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DXCOFFObjectWriter.cpp145 support::endian::Writer W;
/third_party/skia/third_party/externals/spirv-tools/include/spirv-tools/
H A Dlibspirv.h864 void* user_data, spv_endianness_t endian, uint32_t magic, uint32_t version,
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/include/spirv-tools/
H A Dlibspirv.h864 void* user_data, spv_endianness_t endian, uint32_t magic, uint32_t version,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUPALMetadata.cpp610 support::endian::Writer EW(OS, support::endianness::little); in toLegacyBlob()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp701 support::endian::write<uint32_t>(OS, Nopcode | ParseBits, Endian);
/third_party/spirv-tools/include/spirv-tools/
H A Dlibspirv.h905 void* user_data, spv_endianness_t endian, uint32_t magic, uint32_t version,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h175 support::endian::read<word_t, support::little, support::unaligned>( in fillCurWord()
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
H A Dendian.h23 #include <sys/endian.h>
126 // These definitions are simpler on big-endian machines
144 // order and little-endian byte order
207 // Functions to do unaligned loads and stores in little-endian order.
235 // order and big-endian byte order (same as network byte order)
297 // Functions to do unaligned loads and stores in big-endian order.
/third_party/selinux/libselinux/src/
H A Dregex.c20 * library <endian.h> header definitions. */
21 #include <endian.h>

Completed in 42 milliseconds

1...<<111213141516