Searched refs:FXSYS_atoi64 (Results 1 – 4 of 4) sorted by relevance
/external/pdfium/core/fxcrt/ |
D | fx_system_unittest.cpp | 238 TEST(fxcrt, FXSYS_atoi64) { in TEST() argument 239 EXPECT_EQ(0, FXSYS_atoi64("")); in TEST() 240 EXPECT_EQ(0, FXSYS_atoi64("0")); in TEST() 241 EXPECT_EQ(-1, FXSYS_atoi64("-1")); in TEST() 242 EXPECT_EQ(2345, FXSYS_atoi64("2345")); in TEST() 243 EXPECT_EQ(-9223372036854775807LL, FXSYS_atoi64("-9223372036854775807")); in TEST() 245 EXPECT_EQ(-2345, FXSYS_atoi64("-2345")); in TEST() 246 EXPECT_EQ(2345, FXSYS_atoi64("+2345")); in TEST() 248 EXPECT_EQ(9223372036854775807LL, FXSYS_atoi64("9223372036854775807")); in TEST() 250 EXPECT_EQ(-9223372036854775807LL - 1LL, FXSYS_atoi64("-9223372036854775808")); in TEST() [all …]
|
D | fx_system.cpp | 102 int64_t FXSYS_atoi64(const char* str) { in FXSYS_atoi64() function
|
D | fx_system.h | 225 int64_t FXSYS_atoi64(const char* str);
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_parser.cpp | 320 const FX_SAFE_FILESIZE result = FXSYS_atoi64(xrefpos_str.c_str()); in ParseStartXRef() 578 const FX_SAFE_FILESIZE offset = FXSYS_atoi64(pEntry); in ParseAndAppendCrossRefSubsectionData()
|