Home
last modified time | relevance | path

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

/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter-tests/
H A Doptnone-loops.cpp121 int tempArray[16]; in loop_vectorize_test() local
124 tempArray[count] = src[count]; in loop_vectorize_test()
125 tempArray[count+1] = src[count+1]; // DexLabel('target_loop_vectorize_test_2') in loop_vectorize_test()
126 tempArray[count+2] = src[count+2]; // DexLabel('target_loop_vectorize_test_3') in loop_vectorize_test()
127 tempArray[count+3] = src[count+3]; // DexLabel('target_loop_vectorize_test_4') in loop_vectorize_test()
128 dest[count] = tempArray[count]; // DexLabel('target_loop_vectorize_test_5') in loop_vectorize_test()
129 dest[count+1] = tempArray[count+1]; // DexLabel('target_loop_vectorize_test_6') in loop_vectorize_test()
130 dest[count+2] = tempArray[count+2]; // DexLabel('target_loop_vectorize_test_7') in loop_vectorize_test()
131 dest[count+3] = tempArray[count+3]; // DexLabel('target_loop_vectorize_test_8') in loop_vectorize_test()
/llvm-project-15.0.7/libcxx/test/std/containers/sequences/array/array.tuple/
H A Dget.pass.cpp19 TEST_CONSTEXPR std::array<int, sizeof...(T)> tempArray(T ...args) in tempArray() function
56 assert(std::get<0>(tempArray(1, 2, 3)) == 1); in tests()
57 assert(std::get<1>(tempArray(1, 2, 3)) == 2); in tests()
58 assert(std::get<2>(tempArray(1, 2, 3)) == 3); in tests()