Home | History | Annotate | Download | only in highgui

Lines Matching defs:uint

61 #undef UINT
62 #define UINT ((Imf::PixelType)0)
67 #undef uint
68 #define uint unsigned
174 uintcnt += ( m_red->type == UINT );
179 uintcnt += ( m_green->type == UINT );
184 uintcnt += ( m_blue->type == UINT );
186 m_type = (chcnt == uintcnt) ? UINT : FLOAT;
365 uint *ui = (uint *)buffer;
368 uint t = ui[x];
416 ((uint *)data)[(yre + i) * ystep + (xre + n) * xstep] = ((uint *)data)[y * ystep + x * xstep];
436 ((uint *)data)[(xre + n) * xstep] = ((uint *)data)[x * xstep];
458 ((uint *)data)[(yre + i) * ystep + x * xstep] = ((uint *)data)[y * ystep + x * xstep];
490 b = ((uint *)data)[y * step + x * 3];
491 Y = ((uint *)data)[y * step + x * 3 + 1];
492 r = ((uint *)data)[y * step + x * 3 + 2];
516 ((uint *)data)[y * step + x * 3] = (uint)MAX(t,0);
518 ((uint *)data)[y * step + x * 3 + 1] = (uint)MAX(t,0);
520 ((uint *)data)[y * step + x * 3 + 2] = (uint)MAX(t,0);
546 else // UINT
550 uint *ui = (uint *)in;
559 uint *ui = (uint *)in;
604 type = UINT;
634 else if( depth > 16 || type == UINT )
636 buffer = (char *)new uint[width * channels];
680 if(type == UINT)
682 uint *buf = (uint *)buffer; // FIXME 64-bit problems
699 buf[i] = (uint) sd[i] + offset;