Home
last modified time | relevance | path

Searched refs:AllowOnePastEnd (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp17978 bool AllowOnePastEnd, bool IndexNegated) { in CheckArrayAccess() argument
18127 if (AllowOnePastEnd ? index.ule(size) : index.ult(size)) in CheckArrayAccess()
18180 int AllowOnePastEnd = 0; in CheckArrayAccess() local
18187 AllowOnePastEnd > 0); in CheckArrayAccess()
18199 /*ASE=*/nullptr, AllowOnePastEnd > 0); in CheckArrayAccess()
18208 AllowOnePastEnd++; in CheckArrayAccess()
18211 AllowOnePastEnd--; in CheckArrayAccess()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h13848 bool AllowOnePastEnd = true, bool IndexNegated = false);