HomeSort by relevance Sort by last modified time
    Searched refs:endian (Results 201 - 225 of 573) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
OnDiskHashTable.h 153 endian::Writer LE(Out, little);
308 endian::readNext<offset_type, little, aligned>(Buckets);
310 endian::readNext<offset_type, little, aligned>(Buckets);
361 offset_type Offset = endian::readNext<offset_type, little, aligned>(Bucket);
368 unsigned Len = endian::readNext<uint16_t, little, unaligned>(Items);
373 endian::readNext<hash_value_type, little, unaligned>(Items);
471 endian::readNext<uint16_t, little, unaligned>(Ptr);
BinaryStreamWriter.h 19 #include "llvm/Support/Endian.h"
38 llvm::support::endianness Endian);
69 llvm::support::endian::write<T, llvm::support::unaligned>(
  /external/scapy/scapy/
utils.py 287 if struct.pack("H",1) == b"\x00\x01": # big endian
783 if magic == b"\xa1\xb2\xc3\xd4": # big endian
784 self.endian = ">"
786 elif magic == b"\xd4\xc3\xb2\xa1": # little endian
787 self.endian = "<"
789 elif magic == b"\xa1\xb2\x3c\x4d": # big endian, nanosecond-precision
790 self.endian = ">"
792 elif magic == b"\x4d\x3c\xb2\xa1": # little endian, nanosecond-precision
793 self.endian = "<"
803 self.endian + "HHIIII", hd
    [all...]
  /external/mesa3d/src/mesa/main/
format_utils.c 676 const uint8_t *endian; local
699 endian = map_identity;
702 endian = _mesa_little_endian() ? map_identity : map_1032;
705 endian = _mesa_little_endian() ? map_identity : map_3210;
708 endian = map_identity;
720 endian = map_identity;
723 endian = _mesa_little_endian() ? map_identity : map_1032;
726 endian = map_identity;
738 endian = map_identity;
747 swizzle[i] = endian[packed_swizzle[i]]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
crc32.c 87 allow for word-at-a-time CRC calculation for both big-endian and little-
88 endian machines, where a word is four bytes.
218 z_crc_t endian; local
220 endian = 1;
221 if (*((unsigned char *)(&endian)))
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
crc32.c 85 allow for word-at-a-time CRC calculation for both big-endian and little-
86 endian machines, where a word is four bytes.
216 z_crc_t endian; local
218 endian = 1;
219 if (*((unsigned char *)(&endian)))
  /external/python/cpython2/Modules/zlib/
crc32.c 85 allow for word-at-a-time CRC calculation for both big-endian and little-
86 endian machines, where a word is four bytes.
216 z_crc_t endian; local
218 endian = 1;
219 if (*((unsigned char *)(&endian)))
  /external/zlib/src/
crc32.c 85 allow for word-at-a-time CRC calculation for both big-endian and little-
86 endian machines, where a word is four bytes.
216 z_crc_t endian; local
218 endian = 1;
219 if (*((unsigned char *)(&endian)))
  /bionic/libc/dns/net/
getservent.c 31 #include <endian.h>
  /bionic/libc/include/arpa/
nameser_compat.h 43 #include <endian.h>
  /bionic/libc/include/netinet/
ip6.h 69 #include <endian.h>
  /bionic/libc/upstream-freebsd/lib/libc/gen/
ldexp.c 18 #include <machine/endian.h>
  /device/google/contexthub/contexthubhal/
message_buf.h 20 #include <endian.h>
  /external/avb/test/
avb_sysdeps_posix_testing.cc 25 #include <endian.h>
  /external/boringssl/src/ssl/test/runner/curve25519/
mont25519_amd64.go 85 // unpack sets r = x where r consists of 5, 51-bit limbs in little-endian
130 // pack sets out = x where out is the usual, little-endian form of the 5,
  /external/elfutils/lib/
system.h 37 #include <endian.h>
  /external/elfutils/libelf/
common.h 35 #include <endian.h>
  /external/llvm/lib/ProfileData/
InstrProfWriter.cpp 61 uint64_t Bytes = endian::byte_swap<uint64_t, little>(P[K].D[I]);
72 support::endian::Writer<support::little> LE;
97 endian::Writer<little> LE(Out);
123 endian::Writer<little> LE(Out);
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCCodeEmitter.cpp 113 // Output the constant in big/little endian byte order.
120 support::endian::Writer<support::little>(OS).write<uint32_t>(Bits);
122 support::endian::Writer<support::big>(OS).write<uint32_t>(Bits);
127 // always in the top 32 bits, even on little-endian.
130 support::endian::Writer<support::little>(OS).write<uint64_t>(Swapped);
132 support::endian::Writer<support::big>(OS).write<uint64_t>(Bits);
  /external/llvm/test/MC/Mips/
micromips-jump-instructions.s 10 # Little endian
33 # Big endian
micromips-shift-instructions.s 8 # Little endian
28 # Big endian
  /external/minijail/
elfparse.c 7 #include <endian.h>
79 /* 64-bit little endian. */
83 /* 64-bit big endian. */
87 /* 32-bit little endian. */
91 /* 32-bit big endian. */
  /external/scrypt/lib/util/
sysendian.h 34 /* If we don't have be64enc, the <sys/endian.h> we have isn't usable. */
41 #include <sys/endian.h>
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
InstrProfWriter.cpp 21 #include "llvm/Support/Endian.h"
77 uint64_t Bytes = endian::byte_swap<uint64_t, little>(P[K].D[I]);
89 support::endian::Writer LE;
116 endian::Writer LE(Out, little);
143 endian::Writer LE(Out, little);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
CodeGenCoverage.cpp 16 #include "llvm/Support/Endian.h"
68 uint64_t RuleID = support::endian::read64(CurPtr, support::native);

Completed in 893 milliseconds

1 2 3 4 5 6 7 891011>>