• Home
  • Raw
  • Download

Lines Matching full:unsigned

35     static constexpr unsigned int iByteMuskOff0 = 0xffu;  in ByteSwap()
36 static constexpr unsigned int iByteMuskOff1 = iByteMuskOff0 << 8; in ByteSwap()
37 static constexpr unsigned int iByteMuskOff2 = iByteMuskOff1 << 8; in ByteSwap()
38 static constexpr unsigned int iByteMuskOff3 = iByteMuskOff2 << 8; in ByteSwap()
39 static constexpr unsigned long long llByteMuskOff0 = 0xffuLL; in ByteSwap()
40 static constexpr unsigned long long llByteMuskOff1 = llByteMuskOff0 << 8; in ByteSwap()
41 static constexpr unsigned long long llByteMuskOff2 = llByteMuskOff1 << 8; in ByteSwap()
42 static constexpr unsigned long long llByteMuskOff3 = llByteMuskOff2 << 8; in ByteSwap()
43 static constexpr unsigned long long llByteMuskOff4 = llByteMuskOff3 << 8; in ByteSwap()
44 static constexpr unsigned long long llByteMuskOff5 = llByteMuskOff4 << 8; in ByteSwap()
45 static constexpr unsigned long long llByteMuskOff6 = llByteMuskOff5 << 8; in ByteSwap()
46 static constexpr unsigned long long llByteMuskOff7 = llByteMuskOff6 << 8; in ByteSwap()
47 static constexpr unsigned int move1 = 8; // 8: move 8 bits in ByteSwap()
48 static constexpr unsigned int move2 = move1 + 8 * 2; // 8: skip one pair in ByteSwap()
49 static constexpr unsigned int move3 = move2 + 8 * 2; // 8: skip another pair in ByteSwap()
50 static constexpr unsigned int move4 = move3 + 8 * 2; // 8: skip another pair in ByteSwap()
178 int eclass = (int)(reinterpret_cast<unsigned char*>(buf))[llvm::ELF::EI_CLASS]; in GetElfKind()
179 int data = (int)(reinterpret_cast<unsigned char*>(buf))[llvm::ELF::EI_DATA]; in GetElfKind()
180 int version = (int)(reinterpret_cast<unsigned char*>(buf))[llvm::ELF::EI_VERSION]; in GetElfKind()
194 FromElfHeader* ehdr, size_t maxsize, unsigned char* eIdent, void* mapAddress, int64_t offset) in GetSectionHeaderNum()
237 size_t ElfChecker::GetShnum(void* mapAddress, unsigned char* eIdent, int64_t offset, size_t maxsize) in GetShnum()
304 ElfChecker::Elf* ElfChecker::GetElfItem(ElfItemField& elfItemField, void* mapAddress, unsigned char… in GetElfItem()
395 …void* mapAddress, unsigned char* eIdent, int64_t offset, size_t maxSize, ElfCommand cmd, Elf* pare… in FileReadElf()
432 ASSERT((unsigned int)scncnt == scncnt); in FileReadElf()
452 unsigned char* eIdent = reinterpret_cast<unsigned char*>(mapAddress) + offset; in ReadMmapedFile()