Lines Matching refs:CondRange
1970 ArrayRef<Init *> CondRange, in ProfileCondOpInit() argument
1973 assert(CondRange.size() == ValRange.size() && in ProfileCondOpInit()
1976 ArrayRef<Init *>::iterator Case = CondRange.begin(); in ProfileCondOpInit()
1979 while (Case != CondRange.end()) { in ProfileCondOpInit()
1993 CondOpInit::get(ArrayRef<Init *> CondRange, in get() argument
1995 assert(CondRange.size() == ValRange.size() && in get()
2000 ProfileCondOpInit(ID, CondRange, ValRange, Ty); in get()
2006 void *Mem = Allocator.Allocate(totalSizeToAlloc<Init *>(2*CondRange.size()), in get()
2008 CondOpInit *I = new(Mem) CondOpInit(CondRange.size(), Ty); in get()
2010 std::uninitialized_copy(CondRange.begin(), CondRange.end(), in get()
2013 I->getTrailingObjects<Init *>()+CondRange.size()); in get()