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

  /external/pdfium/core/fxge/dib/
cstretchengine.cpp 184 double dest_start = (j - base) / scale; local
186 if (dest_start > dest_end)
187 std::swap(dest_start, dest_end);
188 double area_start = std::max(dest_start, static_cast<double>(dest_pixel));
  /external/pdfium/core/fxcodec/codec/
fx_codec_progress.cpp 116 double dest_start = ((float)j - base) / scale; local
118 if (dest_start > dest_end) {
119 double temp = dest_start;
120 dest_start = dest_end;
124 dest_start > (float)(dest_pixel) ? dest_start : (float)(dest_pixel);
    [all...]

Completed in 104 milliseconds