OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:total_pixels
(Results
1 - 7
of
7
) 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/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/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/qemu/android/skin/
image.c
350
unsigned long
total_pixels
;
member in struct:__anon32896
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/content/public/common/
common_param_traits.cc
39
size_t
total_pixels
) const {
40
if (
total_pixels
) {
44
if (
total_pixels
!= bitmap->getSize())
46
memcpy(bitmap->getPixels(), pixels,
total_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 734 milliseconds