HomeSort by relevance Sort by last modified time
    Searched refs:FXSYS_atoi64 (Results 1 - 4 of 4) sorted by null

  /external/pdfium/core/fxcrt/
fx_system_unittest.cpp 238 TEST(fxcrt, FXSYS_atoi64) {
239 EXPECT_EQ(0, FXSYS_atoi64(""));
240 EXPECT_EQ(0, FXSYS_atoi64("0"));
241 EXPECT_EQ(-1, FXSYS_atoi64("-1"));
242 EXPECT_EQ(2345, FXSYS_atoi64("2345"));
243 EXPECT_EQ(-9223372036854775807LL, FXSYS_atoi64("-9223372036854775807"));
245 EXPECT_EQ(-2345, FXSYS_atoi64("-2345"));
246 EXPECT_EQ(2345, FXSYS_atoi64("+2345"));
248 EXPECT_EQ(9223372036854775807LL, FXSYS_atoi64("9223372036854775807"));
250 EXPECT_EQ(-9223372036854775807LL - 1LL, FXSYS_atoi64("-9223372036854775808"))
    [all...]
fx_system.cpp 102 int64_t FXSYS_atoi64(const char* str) {
fx_system.h 225 int64_t FXSYS_atoi64(const char* str);
  /external/pdfium/core/fpdfapi/parser/
cpdf_parser.cpp 320 const FX_SAFE_FILESIZE result = FXSYS_atoi64(xrefpos_str.c_str());
578 const FX_SAFE_FILESIZE offset = FXSYS_atoi64(pEntry);
    [all...]

Completed in 811 milliseconds