Searched refs:FX_HashCode_GetA (Results 1 – 4 of 4) sorted by relevance
/external/pdfium/core/fxcrt/ |
D | bytestring.h | 280 uint32_t FX_HashCode_GetA(ByteStringView str, bool bIgnoreCase); 288 return FX_HashCode_GetA(str.AsStringView(), false);
|
D | bytestring_unittest.cpp | 1877 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()
|
D | bytestring.cpp | 777 uint32_t FX_HashCode_GetA(ByteStringView str, bool bIgnoreCase) { in FX_HashCode_GetA() function
|
/external/pdfium/xfa/fgas/font/ |
D | cfgas_fontmgr.cpp | 784 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()
|