Home | History | Annotate | Download | only in tests

Lines Matching refs:EndianSwap

2369   TEST_EQ(flatbuffers::EndianSwap(static_cast<int16_t>(0x1234)), 0x3412);
2370 TEST_EQ(flatbuffers::EndianSwap(static_cast<int32_t>(0x12345678)),
2372 TEST_EQ(flatbuffers::EndianSwap(static_cast<int64_t>(0x1234567890ABCDEF)),
2374 TEST_EQ(flatbuffers::EndianSwap(flatbuffers::EndianSwap(3.14f)), 3.14f);