HomeSort by relevance Sort by last modified time
    Searched full:rowlen (Results 1 - 2 of 2) sorted by null

  /frameworks/base/cmds/screenshot/
screenshot.c 24 unsigned int r,c,rowlen; local
69 rowlen=vinfo.xres * bytespp;
70 if (rowlen > sizeof(imgbuf)) {
71 ALOGE("crazy rowlen: %d\n", rowlen);
81 int len = fread(imgbuf, 1, rowlen, fb_in);
  /external/skia/src/images/
bmpdecoderhelper.cpp 127 int rowLen;
129 rowLen = width_ * 4;
132 rowLen = width_ * 3;
134 rowLen = width_ * 2;
136 rowLen = width_;
138 rowLen = width_ / 2;
140 rowLen++;
143 rowLen = width_ / 8;
145 rowLen++;
150 // Round the rowLen up to a multiple of 4
    [all...]

Completed in 822 milliseconds