uvx               481 modules/motion_detector.c     register int x, y, uvx;
uvx               490 modules/motion_detector.c             uvx = x & 0xFFFFFFFC;           // U is in 1st two bytes of each 4 byte block V is in 2nd two bytes
uvx               491 modules/motion_detector.c             curr += (int)img[y + uvx] - 128;    //U
uvx               493 modules/motion_detector.c             uvx = (x&1)?x-3:x;
uvx               494 modules/motion_detector.c             curr += (signed char)img[y + uvx];  //U
uvx               504 modules/motion_detector.c     register int x, y, uvx;
uvx               513 modules/motion_detector.c             uvx = x & 0xFFFFFFFC;               // U is in 1st two bytes of each 4 byte block V is in 2nd two bytes
uvx               514 modules/motion_detector.c             curr += (int)img[y + uvx + 2] - 128;    //V
uvx               516 modules/motion_detector.c             uvx = (x&1)?x-3:x;
uvx               517 modules/motion_detector.c             curr += (signed char)img[y + uvx + 2];  //V
uvx               527 modules/motion_detector.c     register int x, y, uvx, cy, cv;
uvx               537 modules/motion_detector.c             uvx = x & 0xFFFFFFFC;               // U is in 1st two bytes of each 4 byte block V is in 2nd two bytes
uvx               538 modules/motion_detector.c             cv = (int)img[y + uvx + 2] - 128;
uvx               540 modules/motion_detector.c             uvx = (x&1)?x-3:x;
uvx               541 modules/motion_detector.c             cv = (signed char)img[y + uvx + 2];
uvx               552 modules/motion_detector.c     register int x, y, uvx, cy, cu, cv;
uvx               562 modules/motion_detector.c             uvx = x & 0xFFFFFFFC;               // U is in 1st two bytes of each 4 byte block V is in 2nd two bytes
uvx               563 modules/motion_detector.c             cu = (int)img[y + uvx] - 128;
uvx               564 modules/motion_detector.c             cv = (int)img[y + uvx + 2] - 128;
uvx               566 modules/motion_detector.c             uvx = (x&1)?x-3:x;
uvx               567 modules/motion_detector.c             cu = (signed char)img[y + uvx];
uvx               568 modules/motion_detector.c             cv = (signed char)img[y + uvx + 2];
uvx               579 modules/motion_detector.c     register int x, y, uvx, cy, cu;
uvx               589 modules/motion_detector.c             uvx = x & 0xFFFFFFFC;               // U is in 1st two bytes of each 4 byte block V is in 2nd two bytes
uvx               590 modules/motion_detector.c             cu = (int)img[y + uvx] - 128;
uvx               592 modules/motion_detector.c             uvx = (x&1)?x-3:x;
uvx               593 modules/motion_detector.c             cu = (signed char)img[y + uvx];