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

  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
MSSIMComparer.java 40 public static final int WINDOW_SIZE = 10;
55 for (int currentWindowY = 0 ; currentWindowY < height ; currentWindowY += WINDOW_SIZE) {
56 for (int currentWindowX = 0 ; currentWindowX < width ; currentWindowX += WINDOW_SIZE) {
111 for (int y = 0 ; y < WINDOW_SIZE ; y++) {
112 for (int x = 0 ; x < WINDOW_SIZE ; x++) {
138 for (int y = 0 ; y < WINDOW_SIZE ; y++) {
139 for (int x = 0 ; x < WINDOW_SIZE ; x++) {
145 avg0 /= WINDOW_SIZE * WINDOW_SIZE;
146 avg1 /= WINDOW_SIZE * WINDOW_SIZE
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicFrameProcessor.java 34 private static final int WINDOW_SIZE = 3;
53 private float[] mDeltaX = new float[WINDOW_SIZE];
54 private float[] mDeltaY = new float[WINDOW_SIZE];
55 private float[] mDeltaTime = new float[WINDOW_SIZE];
130 for (int i = 0; i < WINDOW_SIZE; ++i) {
235 mOldestIdx = (mOldestIdx + 1) % WINDOW_SIZE;
  /hardware/intel/common/utils/ISV/include/
isv_processor.h 111 const static uint32_t WINDOW_SIZE = 4; // must >= 2
  /bootable/recovery/uncrypt/
uncrypt.cpp 124 #define WINDOW_SIZE 5
276 buffers.resize(WINDOW_SIZE, std::vector<unsigned char>(sb.st_blksize));
306 if ((tail+1) % WINDOW_SIZE == head) {
320 head = (head + 1) % WINDOW_SIZE;
339 tail = (tail+1) % WINDOW_SIZE;
356 head = (head + 1) % WINDOW_SIZE;
  /external/opencv3/3rdparty/libwebp/enc/
backward_references.c 30 #define WINDOW_SIZE ((1 << 20) - 120)
147 int cache_bits, int* window_size,
152 const int max_window_size = (quality > 50) ? WINDOW_SIZE
156 *window_size = (max_window_size > WINDOW_SIZE) ? WINDOW_SIZE
167 int window_size, int iter_pos, int iter_limit,
176 (base_position > window_size) ? base_position - window_size : 0;
274 int window_size = WINDOW_SIZE local
490 int window_size = WINDOW_SIZE; local
633 int window_size = WINDOW_SIZE; local
    [all...]
  /hardware/intel/common/utils/ISV/base/
isv_processor.cpp 458 if (mTimeWindow.size() > WINDOW_SIZE) {
461 else if (mTimeWindow.size() < WINDOW_SIZE)
464 int64_t delta = mTimeWindow[WINDOW_SIZE-1] - mTimeWindow[0];
468 *fps = ceil(1.0 / delta * 1E6 * (WINDOW_SIZE-1));
  /external/mtpd/
l2tp.c 72 #define WINDOW_SIZE htons(10)
331 add_attribute_u16(WINDOW_SIZE, htons(1));
  /external/libvncserver/webclients/novnc/include/
jsunzip.js 209 this.WINDOW_SIZE = 32768;
671 d.history = d.history.slice(-this.WINDOW_SIZE);
  /external/webp/src/enc/
backward_references.c 30 #define WINDOW_SIZE ((1 << 20) - 120)
252 const int max_window_size = (quality > 75) ? WINDOW_SIZE
257 return (max_window_size > WINDOW_SIZE) ? WINDOW_SIZE : max_window_size;
266 int window_size, int* const distance_ptr) {
269 (base_position > window_size) ? base_position - window_size : 0;
285 int window_size, int iter_max,
293 (base_position > window_size) ? base_position - window_size : 0
397 const int window_size = GetWindowSizeForHashChain(quality, xsize); local
607 const int window_size = GetWindowSizeForHashChain(quality, xsize); local
737 const int window_size = GetWindowSizeForHashChain(quality, xsize); local
    [all...]

Completed in 2026 milliseconds