Searched defs:RADIUS (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/libwebp/enc/
H A Dpicture.c922 #define RADIUS 2 macro
930 const int y_0 = (y - RADIUS < 0) ? 0 : y - RADIUS;
931 const int y_1 = (y + RADIUS + 1 >= h) ? h : y + RADIUS + 1;
933 const int x_0 = (x - RADIUS < 0) ? 0 : x - RADIUS;
934 const int x_1 = (x + RADIUS + 1 >= w) ? w : x + RADIUS + 1;
950 #undef RADIUS macro
[all...]
/external/webp/src/enc/
H A Dpicture.c922 #define RADIUS 2 macro
930 const int y_0 = (y - RADIUS < 0) ? 0 : y - RADIUS;
931 const int y_1 = (y + RADIUS + 1 >= h) ? h : y + RADIUS + 1;
933 const int x_0 = (x - RADIUS < 0) ? 0 : x - RADIUS;
934 const int x_1 = (x + RADIUS + 1 >= w) ? w : x + RADIUS + 1;
950 #undef RADIUS macro
[all...]

Completed in 38 milliseconds