Home | History | Annotate | Download | only in IlmImf

Lines Matching full:_width

220     int			_width;
249 _width = dw.max.x - dw.min.x + 1;
262 ptrdiff_t pad = cachePadding (_width * sizeof (Rgba)) / sizeof (Rgba);
264 _bufBase = new Rgba[(_width + pad) * N];
267 _buf[i] = _bufBase + (i * (_width + pad));
269 _tmpBuf = new Rgba[_width + N - 1];
379 for (int j = 0; j < _width; ++j)
390 RGBAtoYCA (_yw, _width, _writeA, _tmpBuf, _tmpBuf);
414 for (int j = 0; j < _width; ++j)
424 RGBAtoYCA (_yw, _width, _writeA, _tmpBuf + N2, _tmpBuf + N2);
439 decimateChromaHoriz (_width, _tmpBuf, _buf[N - 1]);
509 _tmpBuf[_width + N2 + i] = _tmpBuf[_width + N2 - 2];
530 memcpy (_buf[N - 1], _buf[N - 2], _width * sizeof (Rgba));
538 memcpy (_buf[N - 1], _buf[N - 3], _width * sizeof (Rgba));
546 memcpy (_tmpBuf, _buf[N2], _width * sizeof (Rgba));
548 decimateChromaVert (_width, _buf, _tmpBuf);
551 roundYCA (_width, _roundY, _roundC, _tmpBuf, _tmpBuf);
833 int _width;
860 _width = dw.max.x - dw.min.x + 1;
866 ptrdiff_t pad = cachePadding (_width * sizeof (Rgba)) / sizeof (Rgba);
868 _bufBase = new Rgba[(_width + pad) * (N + 2 + 3)];
871 _buf1[i] = _bufBase + (i * (_width + pad));
874 _buf2[i] = _bufBase + ((i + N + 2) * (_width + pad));
876 _tmpBuf = new Rgba[_width + N - 1];
1032 YCAtoRGBA (_yw, _width, _buf1[N2 + i], _buf2[i]);
1036 reconstructChromaVert (_width, _buf1 + i, _buf2[i]);
1037 YCAtoRGBA (_yw, _width, _buf2[i], _buf2[i]);
1059 YCAtoRGBA (_yw, _width, _buf1[N2 + i], _buf2[i]);
1063 reconstructChromaVert (_width, _buf1 + i, _buf2[i]);
1064 YCAtoRGBA (_yw, _width, _buf2[i], _buf2[i]);
1070 fixSaturation (_yw, _width, _buf2, _tmpBuf);
1072 for (int i = 0; i < _width; ++i)
1134 for (int i = 0; i < _width; ++i)
1143 memcpy (buf, _tmpBuf + N2, _width * sizeof (Rgba));
1148 reconstructChromaHoriz (_width, _tmpBuf, buf);
1159 _tmpBuf[_width + N2 + i] = _tmpBuf[_width + N2 - 2];