Home | History | Annotate | Download | only in Sema

Lines Matching defs:Size

131     assert(Stack.size() > 1 && "Data-sharing attributes stack is empty!");
171 if (Stack.size() > 2)
172 return Stack[Stack.size() - 2].Directive;
207 if (Stack.size() > 2)
208 return Stack[Stack.size() - 2].OrderedRegion;
215 if (Stack.size() > 2)
216 Stack[Stack.size() - 2].InnerTeamsRegionLoc = TeamsRegionLoc;
224 if (Stack.size() > 1)
345 assert(Stack.size() > 1 && "Data sharing attributes stack is empty");
365 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty");
373 if (Stack.size() > 2) {
620 if (PrivateCopies.size() == Clause->varlist_size()) {
1770 DSAChecker.getImplicitFirstprivate().size();
2367 assert(NewSize == 64 && "incorrect loop var size");
2660 Built.clear(/* size */ NestedLoopCount);
3278 assert(Clauses.size() <= 1 && "Extra clauses in flush directive");
3808 if (CS->size() == 2) {
5508 auto Size = Context.getTypeSize(Type);
5509 QualType IntTy = Context.getIntTypeForBitwidth(Size, /*Signed=*/0);
5510 llvm::APInt InitValue = llvm::APInt::getAllOnesValue(Size);
5529 auto Size = Context.getTypeSize(Type);
5531 Context.getIntTypeForBitwidth(Size, /*Signed=*/IsSigned);
5534 ? IsSigned ? llvm::APInt::getSignedMinValue(Size)
5535 : llvm::APInt::getMinValue(Size)
5536 : IsSigned ? llvm::APInt::getSignedMaxValue(Size)
5537 : llvm::APInt::getMaxValue(Size);
5784 << (Vars.size() > 1);