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

  /external/chromium_org/tools/imagediff/
image_diff.cc 170 float total_pixels = static_cast<float>(actual.w()) * local
172 if (total_pixels == 0) {
176 return 100.0f * pixels_different / total_pixels;
221 float total_pixels = static_cast<float>(actual.w()) * local
223 if (total_pixels == 0) {
227 return 100.0f * pixels_different / total_pixels;
  /external/chromium_org/printing/
image.cc 135 double total_pixels = static_cast<double>(size_.width()) * local
137 return static_cast<double>(pixels_different) / total_pixels * 100.;
  /external/chromium_org/third_party/libwebp/enc/
picture_psnr.c 111 int total_pixels = src->width * src->height + 2 * uv_w * uv_h; local
113 total_pixels += src->width * src->height;
116 result[4] = GetPSNR(total_sse / total_pixels);
  /external/webp/src/enc/
picture_psnr.c 111 int total_pixels = src->width * src->height + 2 * uv_w * uv_h; local
113 total_pixels += src->width * src->height;
116 result[4] = GetPSNR(total_sse / total_pixels);
  /external/qemu/android/skin/
image.c 350 unsigned long total_pixels; member in struct:__anon33782
396 cache->total_pixels -= image->w*image->h;
430 while (cache->total_pixels > cache->max_pixels &&
565 cache->total_pixels += node->w*node->h;
566 if (cache->total_pixels > cache->max_pixels)
  /external/chromium_org/skia/ext/
vector_canvas_unittest.cc 168 double total_pixels = static_cast<double>(width_) * local
170 return static_cast<double>(pixels_different) / total_pixels * 100.;

Completed in 708 milliseconds