Home
last modified time | relevance | path

Searched refs:FX_INT64 (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/core/src/fxcrt/
Dfx_basic_gcc.cpp69 FX_INT64 FXSYS_atoi64(FX_LPCSTR str) in FXSYS_atoi64()
71 return FXSYS_StrToInt<FX_INT64, FX_LPCSTR>(str); in FXSYS_atoi64()
73 FX_INT64 FXSYS_wtoi64(FX_LPCWSTR str) in FXSYS_wtoi64()
75 return FXSYS_StrToInt<FX_INT64, FX_LPCWSTR>(str); in FXSYS_wtoi64()
77 FX_LPCSTR FXSYS_i64toa(FX_INT64 value, FX_LPSTR str, int radix) in FXSYS_i64toa()
79 return FXSYS_IntToStr<FX_INT64, FX_LPSTR>(value, str, radix); in FXSYS_i64toa()
81 FX_LPCWSTR FXSYS_i64tow(FX_INT64 value, FX_LPWSTR str, int radix) in FXSYS_i64tow()
83 return FXSYS_IntToStr<FX_INT64, FX_LPWSTR>(value, str, radix); in FXSYS_i64tow()
Dfx_basic_bstring.cpp648 va_arg(argList, FX_INT64); in FormatV()
Dfx_basic_wstring.cpp914 va_arg(argList, FX_INT64); in FormatV()
/external/pdfium/core/include/fxcrt/
Dfx_system.h104 typedef __int64 FX_INT64; typedef
107 typedef long long int FX_INT64; typedef
111 typedef FX_INT64 FX_INTPTR;
299 FX_INT64 FXSYS_atoi64(FX_LPCSTR str);
300 FX_INT64 FXSYS_wtoi64(FX_LPCWSTR str);
301 FX_LPCSTR FXSYS_i64toa(FX_INT64 value, FX_LPSTR str, int radix);
302 FX_LPCWSTR FXSYS_i64tow(FX_INT64 value, FX_LPWSTR str, int radix);
/external/pdfium/core/src/fpdfapi/fpdf_font/
Dcommon.h16 typedef FX_INT64 TT_int64_t;
/external/pdfium/fpdfsdk/include/javascript/
Dutil.h48 FX_INT64 FX_atoi64(const char *nptr);
/external/pdfium/fpdfsdk/src/javascript/
Dutil.cpp606 FX_INT64 FX_atoi64(const char *nptr) in FX_atoi64()
609 FX_INT64 total; /* current total */ in FX_atoi64()
/external/pdfium/core/src/fxge/win32/
Dfx_win32_device.cpp521 …if ((FX_INT64)abs(dest_width) * abs(dest_height) < (FX_INT64)pBitmap1->GetWidth() * pBitmap1->GetH… in GDI_StretchDIBits()
529 …if (m_DeviceClass == FXDC_PRINTER && ((FX_INT64)pBitmap->GetWidth() * pBitmap->GetHeight() > (FX_I… in GDI_StretchDIBits()
/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render_loadimage.cpp1342 … FX_DWORD src_x = (bFlipX ? (dest_width - dest_x - 1) : dest_x) * (FX_INT64)src_width / dest_width; in DownSampleScanline()