HomeSort by: relevance | last modified time | path
    Searched refs:Tombstone (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugRangeList.cpp 73 // debug_addr can't use the max integer tombstone because that's used for the
75 uint64_t Tombstone = dwarf::computeTombstoneAddress(AddressSize) - 1;
84 if (E.LowPC == Tombstone)
92 if (BaseAddr->Address == Tombstone)
DWARFDebugRnglists.cpp 100 uint64_t Tombstone = dwarf::computeTombstoneAddress(AddressByteSize);
123 if (E.LowPC == Tombstone)
127 if (BaseAddr->Address == Tombstone)
168 if (E.LowPC == Tombstone)
202 uint64_t Tombstone = dwarf::computeTombstoneAddress(AddrSize);
231 if (CurrentBase != Tombstone)
DWARFDie.cpp 428 uint64_t Tombstone = dwarf::computeTombstoneAddress(U->getAddressByteSize());
429 if (LowPC == Tombstone)
DWARFDebugLine.cpp 891 uint64_t Tombstone =
893 TombstonedAddress = State.Row.Address.Address == Tombstone;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SmallPtrSet.cpp 70 const void *const *Tombstone = nullptr;
73 // Return a tombstone if we've seen one so far, or the empty bucket if
76 return Tombstone ? Tombstone : Array+Bucket;
82 // If this is a tombstone, remember it. If Ptr ends up not in the set, we
84 if (Array[Bucket] == getTombstoneMarker() && !Tombstone)
85 Tombstone = Array+Bucket; // Remember the first tombstone found.
87 // It's a hash collision or a tombstone. Reprobe.
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeHashing.cpp 18 LocallyHashedType DenseMapInfo<LocallyHashedType>::Tombstone{hash_code(-1), {}};
26 GloballyHashedType DenseMapInfo<GloballyHashedType>::Tombstone{TombstoneHash};
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
WasmTraits.h 32 Sig.State = wasm::WasmSignature::Tombstone;
Wasm.h 405 // Support empty and tombstone instances, needed by DenseMap.
406 enum { Plain, Empty, Tombstone } State = Plain;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeHashing.h 182 static codeview::LocallyHashedType Tombstone;
186 static codeview::LocallyHashedType getTombstoneKey() { return Tombstone; }
202 static codeview::GloballyHashedType Tombstone;
206 static codeview::GloballyHashedType getTombstoneKey() { return Tombstone; }
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
GSIStreamBuilder.cpp 73 static CVSymbol Tombstone(
75 return Tombstone;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
DenseMap.h 595 // If we are writing over a tombstone, remember this.
605 /// true, otherwise it returns a bucket with an empty marker or tombstone and
618 // FoundTombstone - Keep track of whether we find a tombstone while probing.
624 "Empty/Tombstone value shouldn't be inserted into map!");
639 // If we've already seen a tombstone while probing, fill it in instead
645 // If this is a tombstone, remember it. If Val ends up not in the map, we
649 FoundTombstone = ThisBucket; // Remember the first tombstone found.
651 // Otherwise, it's a hash collision or a tombstone, continue quadratic
1280 const KeyT Tombstone = KeyInfoT::getTombstoneKey();
1283 KeyInfoT::isEqual(Ptr->getFirst(), Tombstone)))
    [all...]

Completed in 80 milliseconds