Home
last modified time | relevance | path

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

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