HomeSort by relevance Sort by last modified time
    Searched refs:BytesInAddress (Results 1 - 3 of 3) sorted by null

  /external/llvm/tools/llvm-cov/
TestingSupport.cpp 42 auto BytesInAddress = OF->getBytesInAddress();
43 if (BytesInAddress != 8) {
  /external/llvm/lib/ProfileData/Coverage/
CoverageMappingReader.cpp 545 uint8_t &BytesInAddress,
547 BytesInAddress = 8;
596 uint8_t &BytesInAddress,
621 BytesInAddress = OF->getBytesInAddress();
649 uint8_t BytesInAddress;
656 Coverage, BytesInAddress, Endian);
659 Coverage, BytesInAddress, Endian, Arch);
663 if (BytesInAddress == 4 && Endian == support::endianness::little)
667 else if (BytesInAddress == 4 && Endian == support::endianness::big)
671 else if (BytesInAddress == 8 && Endian == support::endianness::little
    [all...]
  /external/llvm/tools/llvm-cxxdump/
llvm-cxxdump.cpp 178 uint8_t BytesInAddress = Obj->getBytesInAddress();
262 const char *DataPtr = SymContents.drop_front(BytesInAddress).data();
264 if (BytesInAddress == 8)
268 TD.MangledName = SymContents.drop_front(BytesInAddress * 2);
317 for (uint64_t SymOffI = 0; SymOffI < SymSize; SymOffI += BytesInAddress) {
322 SymContents.substr(SymOffI, BytesInAddress).data();
324 if (BytesInAddress == 8)

Completed in 58 milliseconds