/*
* Copyright ( C ) 2014 The Android Open Source Project
*
* Licensed under the Apache License , Version 2 . 0 ( the " License " ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing , software
* distributed under the License is distributed on an " AS IS " BASIS ,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
* See the License for the specific language governing permissions and
* limitations under the License .
*/
#include <byteswap.h>
#include <gtest/gtest.h>
static constexpr uint16_t le16 = 0 x1234;
static constexpr uint32_t le32 = 0 x12345678;
static constexpr uint64_t le64 = 0 x123456789abcdef0;
static constexpr uint16_t be16 = 0 x3412;
static constexpr uint32_t be32 = 0 x78563412;
static constexpr uint64_t be64 = 0 xf0debc9a78563412;
TEST(byteswap, bswap_16) {
EXPECT_EQ(le16, bswap_16(be16));
EXPECT_EQ(be16, bswap_16(le16));
}
TEST(byteswap, bswap_32) {
EXPECT_EQ(le32, bswap_32(be32));
EXPECT_EQ(be32, bswap_32(le32));
}
TEST(byteswap, bswap_64) {
EXPECT_EQ(le64, bswap_64(be64));
EXPECT_EQ(be64, bswap_64(le64));
}
Messung V0.5 in Prozent C=95 H=92 G=93
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet am 2026-06-28)
¤
*© Formatika GbR, Deutschland