Home | History | Annotate | Download | only in ADT

Lines Matching defs:Unsigned

316 } Unsigned[] =
363 for (size_t i = 0; i < array_lengthof(Unsigned); ++i) {
364 bool U8Success = StringRef(Unsigned[i].Str).getAsInteger(0, U8);
365 if (static_cast<uint8_t>(Unsigned[i].Expected) == Unsigned[i].Expected) {
367 EXPECT_EQ(U8, Unsigned[i].Expected);
371 bool U16Success = StringRef(Unsigned[i].Str).getAsInteger(0, U16);
372 if (static_cast<uint16_t>(Unsigned[i].Expected) == Unsigned[i].Expected) {
374 EXPECT_EQ(U16, Unsigned[i].Expected);
378 bool U32Success = StringRef(Unsigned[i].Str).getAsInteger(0, U32);
379 if (static_cast<uint32_t>(Unsigned[i].Expected) == Unsigned[i].Expected) {
381 EXPECT_EQ(U32, Unsigned[i].Expected);
385 bool U64Success = StringRef(Unsigned[i].Str).getAsInteger(0, U64);
386 if (static_cast<uint64_t>(Unsigned[i].Expected) == Unsigned[i].Expected) {
388 EXPECT_EQ(U64, Unsigned[i].Expected);