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

  /external/llvm/lib/VMCore/
LLVMContextImpl.h 44 struct KeyTy {
47 KeyTy(const APInt& V, Type* Ty) : val(V), type(Ty) {}
48 KeyTy(const KeyTy& that) : val(that.val), type(that.type) {}
49 bool operator==(const KeyTy& that) const {
52 bool operator!=(const KeyTy& that) const {
55 friend hash_code hash_value(const KeyTy &Key) {
59 static inline KeyTy getEmptyKey() { return KeyTy(APInt(1,0), 0); }
60 static inline KeyTy getTombstoneKey() { return KeyTy(APInt(1,1), 0);
    [all...]
Type.cpp 385 FunctionTypeKeyInfo::KeyTy Key(ReturnType, Params, isVarArg);
431 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked);
Constants.cpp 419 // as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
427 DenseMapAPIntKeyInfo::KeyTy Key(V, ITy);
552 DenseMapAPFloatKeyInfo::KeyTy Key(V);
    [all...]
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 103 template <typename KeyTy>
105 SmallPtrSet<KeyTy, 4> > &ReverseMap,
106 Instruction *Inst, KeyTy Val) {
107 typename DenseMap<Instruction*, SmallPtrSet<KeyTy, 4> >::iterator
    [all...]

Completed in 50 milliseconds