Home | History | Annotate | Download | only in src

Lines Matching refs:xff

585     {"0xFF.0", L"0xFF.0", "255.0.0.0", url_parse::Component(0, 9), CanonHostInfo::IPV4, 2},
586 {"0xFF.0.0", L"0xFF.0.0", "255.0.0.0", url_parse::Component(0, 9), CanonHostInfo::IPV4, 3},
587 {"0xFF.0.0.0", L"0xFF.0.0.0", "255.0.0.0", url_parse::Component(0, 9), CanonHostInfo::IPV4, 4},
588 {"0.0xFF.0.0", L"0.0xFF.0.0", "0.255.0.0", url_parse::Component(0, 9), CanonHostInfo::IPV4, 4},
589 {"0.0.0xFF.0", L"0.0.0xFF.0", "0.0.255.0", url_parse::Component(0, 9), CanonHostInfo::IPV4, 4},
590 {"0.0.0.0xFF", L"0.0.0.0xFF", "0.0.0.255", url_parse::Component(0, 9), CanonHostInfo::IPV4, 4},
1692 // We fill the buffer with 0xff to ensure that it's getting properly
1696 memset(buf, 0xff, sizeof(buf));
1699 EXPECT_EQ('\xFF', buf[3]);
1702 memset(buf, 0xff, sizeof(buf));
1705 EXPECT_EQ('\xFF', buf[5]);
1707 memset(buf, 0xff, sizeof(buf));
1709 EXPECT_EQ('\xFF', buf[5]); // should never write to this location
1712 memset(buf, 0xff, sizeof(buf));
1715 EXPECT_EQ('\xFF', buf[3]);
1717 memset(buf, 0xff, sizeof(buf));
1724 memset(buf, 0xff, sizeof(buf));
1727 EXPECT_EQ('\xFF', buf[5]);
1731 // We fill the buffer with 0xff to ensure that it's getting properly
1735 const char fill_mem = 0xff;