Home
last modified time | relevance | path

Searched refs:FX_HashCode_GetA (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/fxcrt/
Dbytestring.h280 uint32_t FX_HashCode_GetA(ByteStringView str, bool bIgnoreCase);
288 return FX_HashCode_GetA(str.AsStringView(), false);
Dbytestring_unittest.cpp1877 EXPECT_EQ(0u, FX_HashCode_GetA("", false)); in TEST()
1878 EXPECT_EQ(65u, FX_HashCode_GetA("A", false)); in TEST()
1879 EXPECT_EQ(97u, FX_HashCode_GetA("A", true)); in TEST()
1880 EXPECT_EQ(31 * 65u + 66u, FX_HashCode_GetA("AB", false)); in TEST()
1881 EXPECT_EQ(31u * 65u + 255u, FX_HashCode_GetA("A\xff", false)); in TEST()
1882 EXPECT_EQ(31u * 97u + 255u, FX_HashCode_GetA("A\xff", true)); in TEST()
Dbytestring.cpp777 uint32_t FX_HashCode_GetA(ByteStringView str, bool bIgnoreCase) { in FX_HashCode_GetA() function
/external/pdfium/xfa/fgas/font/
Dcfgas_fontmgr.cpp784 uint32_t dwHash = FX_HashCode_GetA(bsHash.AsStringView(), false); in GetFontByCodePage()
850 uint32_t dwHash = FX_HashCode_GetA(bsHash.AsStringView(), false); in GetFontByUnicode()
867 uint32_t dwHash = FX_HashCode_GetA(bsHash.AsStringView(), false); in LoadFont()