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

  /src/external/apache2/llvm/dist/llvm/include/llvm/Linker/
IRMover.h 28 ArrayRef<Type *> ETypes;
58 StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
  /src/external/apache2/llvm/dist/llvm/lib/Linker/
IRMover.cpp 68 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes);
218 ArrayRef<Type *> ETypes) {
219 DTy->setBody(ETypes, STy->isPacked());
1532 : ETypes(E), IsPacked(P) {}
1535 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {}
1538 return IsPacked == That.IsPacked && ETypes == That.ETypes;
1554 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()),
1595 IRMover::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
LLVMContextImpl.h 77 ArrayRef<Type*> ETypes;
81 ETypes(E), isPacked(P) {}
84 : ETypes(ST->elements()), isPacked(ST->isPacked()) {}
89 if (ETypes != that.ETypes)
107 return hash_combine(hash_combine_range(Key.ETypes.begin(),
108 Key.ETypes.end()),
Type.cpp 366 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes,
369 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked);
383 ST->setBody(ETypes, isPacked);

Completed in 75 milliseconds