Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/Sema/
H A Dunbounded-array-bounds.c71 int const n_ints = sizeof(ints) / sizeof(int); in f6() local
74 int *middle = &ints[0] + n_ints / 2; in f6()
/llvm-project-15.0.7/libcxx/test/std/algorithms/alg.modifying.operations/alg.rotate/
H A Drotate_copy.pass.cpp115 int const n_ints = sizeof(ints)/sizeof(int); in test() local
116 int zeros[n_ints] = {0}; in test()
121 assert(std::distance(std::begin(zeros), it) == n_ints); in test()
122 assert(std::equal(std::begin(ints), middle, std::begin(zeros) + n_ints - N)); in test()