Lines Matching defs:colStart
211 uint16_t colStart = (posX >= letterInfo.mask.GetLeft()) ? 0 : (letterInfo.mask.GetLeft() - posX);
216 Rect subRect(posX + colStart, posY + rowStart, colEnd - 1 + posX, rowEnd - 1 + posY);
281 uint16_t colStart = (posX >= letterInfo.mask.GetLeft()) ? 0 : (letterInfo.mask.GetLeft() - posX);
286 Rect subRect(posX + colStart, posY + rowStart, colEnd - 1 + posX, rowEnd - 1 + posY);
334 int16_t colStart = subRect.GetX() - fontRect.GetX();
335 int16_t colEnd = colStart + subRect.GetWidth();
339 fontMap += (rowStart * letterWidthInByte) + ((colStart * fontWeight) >> SHIFT_3);
341 uint8_t offsetInFont = (colStart * fontWeight) % FONT_WEIGHT_8;
351 int16_t col = colStart;
374 screenBuffer += (screenBufferWidth - (colEnd - colStart)) * bufferPxSize;