Lines Matching defs:width
773 var->width = -1;
976 * Cursor data is represented as a sequence of 'width' bits packed into bytes.
978 * second byte, and so on. Therefore, the each row of the cursor is (width +
982 * larger than this, so we already know that 'width' <= 32. Therefore, we can
984 * a single line of pixels, and only look at the top 'width' bits of that
996 unsigned int width, unsigned int height)
1009 for (w = 0; w < width; w++) {
1015 image += DIV_ROUND_UP(width, 8);
1029 if (cursor->image.width > MAX_CURS || cursor->image.height > MAX_CURS)
1065 DIV_ROUND_UP(cursor->image.width, 8) *
1101 cursor->image.width, cursor->image.height);
1181 static inline __u32 CNVT_TOHW(__u32 val, __u32 width)
1183 return ((val << width) + 0x7FFF - val) >> 16;