123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #pragma once
- #include <AzCore/std/string/string_view.h>
- namespace Benchmark
- {
- inline namespace Crc32Internal
- {
- //! Array of string literals used to test creating Crc32 values at compile time
- inline constexpr AZStd::string_view TestStringLiterals[] =
- {
- "Test0",
- "Test1",
- "Test2",
- "Test3",
- "Test4",
- "Test5",
- "Test6",
- "Test7",
- "Test8",
- "Test9",
- "Test10",
- "Test11",
- "Test12",
- "Test13",
- "Test14",
- "Test15",
- "Test16",
- "Test17",
- "Test18",
- "Test19",
- "Test20",
- "Test21",
- "Test22",
- "Test23",
- "Test24",
- "Test25",
- "Test26",
- "Test27",
- "Test28",
- "Test29",
- "Test30",
- "Test31",
- "Test32",
- "Test33",
- "Test34",
- "Test35",
- "Test36",
- "Test37",
- "Test38",
- "Test39",
- "Test40",
- "Test41",
- "Test42",
- "Test43",
- "Test44",
- "Test45",
- "Test46",
- "Test47",
- "Test48",
- "Test49",
- "Test50",
- "Test51",
- "Test52",
- "Test53",
- "Test54",
- "Test55",
- "Test56",
- "Test57",
- "Test58",
- "Test59",
- "Test60",
- "Test61",
- "Test62",
- "Test63",
- "Test64",
- "Test65",
- "Test66",
- "Test67",
- "Test68",
- "Test69",
- "Test70",
- "Test71",
- "Test72",
- "Test73",
- "Test74",
- "Test75",
- "Test76",
- "Test77",
- "Test78",
- "Test79",
- "Test80",
- "Test81",
- "Test82",
- "Test83",
- "Test84",
- "Test85",
- "Test86",
- "Test87",
- "Test88",
- "Test89",
- "Test90",
- "Test91",
- "Test92",
- "Test93",
- "Test94",
- "Test95",
- "Test96",
- "Test97",
- "Test98",
- "Test99",
- };
- inline constexpr size_t TestStringLiteralSize = std::size(TestStringLiterals);
- }
- }
|