Searched refs:paddedWidth (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/hwui/
H A DFontRenderer.cpp583 uint32_t paddedWidth = (uint32_t) (bounds.right - bounds.left) + 2 * intRadius; local
587 if (paddedWidth > maxSize || paddedHeight > maxSize) {
593 if (paddedWidth & (RS_CPU_ALLOCATION_ALIGNMENT - 1)) {
594 paddedWidth += RS_CPU_ALLOCATION_ALIGNMENT - paddedWidth % RS_CPU_ALLOCATION_ALIGNMENT;
596 int size = paddedWidth * paddedHeight;
599 int size = paddedWidth * paddedHeight;
613 Font::BITMAP, dataBuffer, paddedWidth, paddedHeight, nullptr, positions);
618 blurImage(&dataBuffer, paddedWidth, paddedHeight, radius);
621 image.width = paddedWidth;
[all...]
/frameworks/base/core/java/android/widget/
H A DSimpleMonthView.java893 final int paddedWidth = paddedRight - paddingLeft;
895 if (paddedWidth == mPaddedWidth || paddedHeight == mPaddedHeight) {
899 mPaddedWidth = paddedWidth;

Completed in 115 milliseconds