Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/
Dfx_system_unittest.cpp238 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 …]
Dfx_system.cpp102 int64_t FXSYS_atoi64(const char* str) { in FXSYS_atoi64() function
Dfx_system.h225 int64_t FXSYS_atoi64(const char* str);
/external/pdfium/core/fpdfapi/parser/
Dcpdf_parser.cpp320 const FX_SAFE_FILESIZE result = FXSYS_atoi64(xrefpos_str.c_str()); in ParseStartXRef()
578 const FX_SAFE_FILESIZE offset = FXSYS_atoi64(pEntry); in ParseAndAppendCrossRefSubsectionData()