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.cpp340 TEST(fxcrt, FXSYS_atoi64) { in TEST() argument
341 EXPECT_EQ(0, FXSYS_atoi64("")); in TEST()
342 EXPECT_EQ(0, FXSYS_atoi64("0")); in TEST()
343 EXPECT_EQ(-1, FXSYS_atoi64("-1")); in TEST()
344 EXPECT_EQ(2345, FXSYS_atoi64("2345")); in TEST()
345 EXPECT_EQ(-9223372036854775807LL, FXSYS_atoi64("-9223372036854775807")); in TEST()
347 EXPECT_EQ(-2345, FXSYS_atoi64("-2345")); in TEST()
348 EXPECT_EQ(2345, FXSYS_atoi64("+2345")); in TEST()
350 EXPECT_EQ(9223372036854775807LL, FXSYS_atoi64("9223372036854775807")); in TEST()
352 EXPECT_EQ(-9223372036854775807LL - 1LL, FXSYS_atoi64("-9223372036854775808")); in TEST()
[all …]
Dfx_system.h188 int64_t FXSYS_atoi64(const char* str);
Dfx_system.cpp120 int64_t FXSYS_atoi64(const char* str) { in FXSYS_atoi64() function
/external/pdfium/core/fpdfapi/parser/
Dcpdf_parser.cpp229 const FX_SAFE_FILESIZE result = FXSYS_atoi64(xref_offset_str.c_str()); in ParseStartXRef()
473 const FX_SAFE_FILESIZE offset = FXSYS_atoi64(pEntry); in ParseAndAppendCrossRefSubsectionData()