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

/frameworks/base/core/jni/android/graphics/
H A DGIFMovie.cpp134 int copyHeight, const GifImageDesc& imageDesc, int rowStep,
139 for (row = startRow; row < copyHeight; row += rowStep) {
159 GifWord copyHeight = frame->ImageDesc.Height; local
160 if (frame->ImageDesc.Top + copyHeight > height) {
161 copyHeight = height - frame->ImageDesc.Top;
168 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0);
171 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4);
174 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2);
176 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1);
192 GifWord copyHeight local
132 copyInterlaceGroup(SkBitmap* bm, const unsigned char*& src, const ColorMapObject* cmap, int transparent, int copyWidth, int copyHeight, const GifImageDesc& imageDesc, int rowStep, int startRow) argument
215 GifWord copyHeight = height; local
[all...]
/frameworks/ex/framesequence/jni/
H A DFrameSequence_gif.cpp166 GifWord& copyWidth, GifWord& copyHeight) {
171 copyHeight = imageDesc.Height;
172 if (imageDesc.Top + copyHeight > maxHeight) {
173 copyHeight = maxHeight - imageDesc.Top;
284 GifWord copyWidth, copyHeight; local
285 getCopySize(prevFrame.ImageDesc, width, height, copyWidth, copyHeight);
286 for (; copyHeight > 0; copyHeight--) {
317 GifWord copyWidth, copyHeight; local
318 getCopySize(frame.ImageDesc, width, height, copyWidth, copyHeight);
165 getCopySize(const GifImageDesc& imageDesc, int maxWidth, int maxHeight, GifWord& copyWidth, GifWord& copyHeight) argument
[all...]

Completed in 25 milliseconds