Home
last modified time | relevance | path

Searched refs:paddedHeight (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/widget/
DAbsSeekBar.java669 final int paddedHeight = h - mPaddingTop - mPaddingBottom;
675 final int trackHeight = Math.min(mMaxHeight, paddedHeight);
682 final int offsetHeight = (paddedHeight - thumbHeight) / 2;
686 final int offsetHeight = (paddedHeight - trackHeight) / 2;
DSimpleMonthView.java899 final int paddedHeight = paddedBottom - paddingTop; in onLayout() local
900 if (paddedWidth == mPaddedWidth || paddedHeight == mPaddedHeight) { in onLayout()
905 mPaddedHeight = paddedHeight; in onLayout()
910 final float scaleH = paddedHeight / (float) measuredPaddedHeight; in onLayout()
/frameworks/ml/nn/common/
DOperationsUtils.cpp578 uint32_t paddedHeight = paddingsData[0] + height + paddingsData[1]; in spaceToBatchPrepare() local
581 NN_OPS_CHECK(paddedHeight % blockSizeData[0] == 0); in spaceToBatchPrepare()
586 paddedHeight / blockSizeData[0], paddedWidth / blockSizeData[1], in spaceToBatchPrepare()
/frameworks/ml/nn/runtime/test/fuzzing/operation_signatures/
DReshape.cpp239 auto paddedHeight = op->inputs[0]->dimensions[heightIndex] + in spaceToBatchConstructor() local
248 auto outHeight = paddedHeight.exactDiv(blockHeight); in spaceToBatchConstructor()