Home
last modified time | relevance | path

Searched refs:CPDF_PSEngine (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/fpdfapi/page/
Dcpdf_psengine_unittest.cpp12 float DoOperator1(CPDF_PSEngine* engine, float v1, PDF_PSOP op) { in DoOperator1()
21 float DoOperator2(CPDF_PSEngine* engine, float v1, float v2, PDF_PSOP op) { in DoOperator2()
83 TEST(CPDF_PSEngine, Basic) { in TEST() argument
84 CPDF_PSEngine engine; in TEST()
96 TEST(CPDF_PSEngine, Ceiling) { in TEST() argument
97 CPDF_PSEngine engine; in TEST()
118 TEST(CPDF_PSEngine, Floor) { in TEST() argument
119 CPDF_PSEngine engine; in TEST()
143 TEST(CPDF_PSEngine, Round) { in TEST() argument
144 CPDF_PSEngine engine; in TEST()
[all …]
Dcpdf_psengine.h17 class CPDF_PSEngine; variable
91 bool Execute(CPDF_PSEngine* pEngine);
108 class CPDF_PSEngine {
110 CPDF_PSEngine();
111 ~CPDF_PSEngine();
Dcpdf_psengine.cpp111 bool CPDF_PSEngine::Execute() { in Execute()
141 bool CPDF_PSProc::Execute(CPDF_PSEngine* pEngine) { in Execute()
188 CPDF_PSEngine::CPDF_PSEngine() = default;
190 CPDF_PSEngine::~CPDF_PSEngine() = default;
192 void CPDF_PSEngine::Push(float v) { in Push()
197 float CPDF_PSEngine::Pop() { in Pop()
201 int CPDF_PSEngine::PopInt() { in PopInt()
205 bool CPDF_PSEngine::Parse(pdfium::span<const uint8_t> input) { in Parse()
210 bool CPDF_PSEngine::DoOperator(PDF_PSOP op) { in DoOperator()
Dcpdf_psfunc.h28 mutable CPDF_PSEngine m_PS; // Pre-initialized scratch space for v_Call().
/external/pdfium/testing/fuzzers/
Dpdf_psengine_fuzzer.cc11 CPDF_PSEngine engine; in LLVMFuzzerTestOneInput()