Searched refs:mRes (Results 1 – 6 of 6) sorted by relevance
/external/libcxx/test/std/numerics/numeric.ops/exclusive.scan/ |
D | exclusive_scan_init_op.pass.cpp | 52 const int mRes[] = {1, 1, 3, 15, 105}; in test() local 55 static_assert(sa == sizeof(mRes) / sizeof(mRes[0])); // just to be sure in test() 59 test(Iter(ia), Iter(ia + i), 1, std::multiplies<>(), mRes, mRes + i); in test()
|
/external/llvm-project/libcxx/test/std/numerics/numeric.ops/exclusive.scan/ |
D | exclusive_scan_init_op.pass.cpp | 72 const int mRes[] = {1, 1, 3, 15, 105}; in test() local 75 static_assert(sa == sizeof(mRes) / sizeof(mRes[0])); // just to be sure in test() 79 test(Iter(ia), Iter(ia + i), 1, std::multiplies<>(), mRes, mRes + i); in test()
|
/external/libcxx/test/std/numerics/numeric.ops/inclusive.scan/ |
D | inclusive_scan_op.pass.cpp | 53 const int mRes[] = {1, 3, 15, 105, 945}; in test() local 56 static_assert(sa == sizeof(mRes) / sizeof(mRes[0])); // just to be sure in test() 60 test(Iter(ia), Iter(ia + i), std::multiplies<>(), mRes, mRes + i); in test()
|
D | inclusive_scan_op_init.pass.cpp | 52 const int mRes[] = {1, 3, 15, 105, 945}; in test() local 55 static_assert(sa == sizeof(mRes) / sizeof(mRes[0])); // just to be sure in test() 59 test(Iter(ia), Iter(ia + i), std::multiplies<>(), 1, mRes, mRes + i); in test()
|
/external/llvm-project/libcxx/test/std/numerics/numeric.ops/inclusive.scan/ |
D | inclusive_scan_op.pass.cpp | 72 const int mRes[] = {1, 3, 15, 105, 945}; in test() local 75 static_assert(sa == sizeof(mRes) / sizeof(mRes[0])); // just to be sure in test() 79 test(Iter(ia), Iter(ia + i), std::multiplies<>(), mRes, mRes + i); in test()
|
D | inclusive_scan_op_init.pass.cpp | 72 const int mRes[] = {1, 3, 15, 105, 945}; in test() local 75 static_assert(sa == sizeof(mRes) / sizeof(mRes[0])); // just to be sure in test() 79 test(Iter(ia), Iter(ia + i), std::multiplies<>(), 1, mRes, mRes + i); in test()
|