HomeSort by relevance Sort by last modified time
    Searched defs:getHashValue (Results 1 - 25 of 40) sorted by null

1 2

  /external/clang/include/clang/AST/
TypeOrdering.h 46 static unsigned getHashValue(clang::QualType Val) {
66 static unsigned getHashValue(clang::CanQualType Val) {
BaseSubobject.h 68 static unsigned getHashValue(const clang::BaseSubobject &Base) {
70 return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(),
GlobalDecl.h 105 static unsigned getHashValue(clang::GlobalDecl GD) {
106 return DenseMapInfo<void*>::getHashValue(GD.getAsOpaquePtr());
CharUnits.h 211 static unsigned getHashValue(const clang::CharUnits &CU) {
213 return DenseMapInfo<clang::CharUnits::QuantityType>::getHashValue(Quantity);
DeclarationName.h 577 static unsigned getHashValue(clang::DeclarationName Name) {
578 return DenseMapInfo<void*>::getHashValue(Name.getAsOpaquePtr());
  /external/llvm/include/llvm/ADT/
DenseMapInfo.h 26 //static unsigned getHashValue(const T &Val);
43 static unsigned getHashValue(const T *PtrVal) {
54 static unsigned getHashValue(const char& Val) { return Val * 37U; }
64 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; }
74 static unsigned getHashValue(const unsigned long& Val) {
86 static unsigned getHashValue(const unsigned long long& Val) {
99 static unsigned getHashValue(const int& Val) { return (unsigned)(Val * 37U); }
111 static unsigned getHashValue(const long& Val) {
123 static unsigned getHashValue(const long long& Val) {
147 static unsigned getHashValue(const Pair& PairVal)
    [all...]
ImmutableList.h 213 static unsigned getHashValue(ImmutableList<T> X) {
ValueMap.h 261 static unsigned getHashValue(const VH &Val) {
262 return PointerInfo::getHashValue(Val.Unwrap());
264 static unsigned getHashValue(const KeyT &Val) {
265 return PointerInfo::getHashValue(Val);
  /external/llvm/unittests/ADT/
DenseMapTest.cpp 63 static unsigned getHashValue(const CtorTester &Val) {
297 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; }
298 static unsigned getHashValue(const char* Val) {
336 static unsigned getHashValue(const unsigned& Val) { return Val; }
  /external/llvm/lib/IR/
DebugLoc.cpp 153 unsigned DenseMapInfo<DebugLoc>::getHashValue(const DebugLoc &Key) {
ConstantsContext.h 666 static unsigned getHashValue(const ConstantClass *CP) {
671 return getHashValue(LookupKey(CP->getType(), CPOperands));
676 static unsigned getHashValue(const LookupKey &Val) {
LLVMContextImpl.h 61 static unsigned getHashValue(const KeyTy &Key) {
89 static unsigned getHashValue(const KeyTy &Key) {
123 static unsigned getHashValue(const KeyTy& Key) {
128 static unsigned getHashValue(const StructType *ST) {
129 return getHashValue(KeyTy(ST));
171 static unsigned getHashValue(const KeyTy& Key) {
177 static unsigned getHashValue(const FunctionType *FT) {
178 return getHashValue(KeyTy(FT));
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 570 static unsigned getHashValue(const AliasAnalysis::Location &Val) {
571 return DenseMapInfo<const Value *>::getHashValue(Val.Ptr) ^
572 DenseMapInfo<uint64_t>::getHashValue(Val.Size) ^
573 DenseMapInfo<const MDNode *>::getHashValue(Val.TBAATag);
  /external/llvm/include/llvm/Support/
ValueHandle.h 261 static unsigned getHashValue(const AssertingVH<T> &Val) {
262 return PointerInfo::getHashValue(Val);
YAMLTraits.h 766 static unsigned getHashValue(StringRef const val) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 63 static unsigned getHashValue(const DivOpInfo &Val) {
  /external/clang/include/clang/Basic/
SourceLocation.h 56 unsigned getHashValue() const { return static_cast<unsigned>(ID); }
409 static unsigned getHashValue(clang::FileID S) {
410 return S.getHashValue();
  /external/llvm/include/llvm/IR/
Attributes.h 369 static unsigned getHashValue(AttributeSet AS) {
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 39 return DenseMapInfo<const void*>::getHashValue(V);
87 static unsigned getHashValue(SimpleValue Val);
92 unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) {
235 static unsigned getHashValue(CallValue Val);
239 unsigned DenseMapInfo<CallValue>::getHashValue(CallValue Val) {
  /external/clang/include/clang/Analysis/
ProgramPoint.h 160 unsigned getHashValue() const {
673 static unsigned getHashValue(const clang::ProgramPoint &Loc) {
674 return Loc.getHashValue();
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 570 unsigned getHashValue() const {
652 getHashValue(clang::ento::CheckerManager::CachedStmtCheckersKey S) {
653 return S.getHashValue();
  /external/clang/lib/Basic/
IdentifierTable.cpp 289 unsigned llvm::DenseMapInfo<clang::Selector>::getHashValue(clang::Selector S) {
290 return DenseMapInfo<void*>::getHashValue(S.getAsOpaquePtr());
  /external/clang/tools/libclang/
CXCursor.cpp 985 static inline unsigned getHashValue(const CXCursor &cursor) {
987 ::getHashValue(std::make_pair(cursor.data[0], cursor.data[1]));
    [all...]
IndexingContext.h 539 static unsigned getHashValue(clang::cxindex::RefFileOccurence S) {
541 return DenseMapInfo<PairTy>::getHashValue(PairTy(S.File, S.Dcl));
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 142 static unsigned getHashValue(const ComparableFunction &CF) {

Completed in 290 milliseconds

1 2