Searched refs:lowThreshold (Results 1 – 4 of 4) sorted by relevance
/frameworks/native/include/input/ |
D | VelocityControl.h | 45 float lowThreshold; member 65 scale(1.0f), lowThreshold(0.0f), highThreshold(0.0f), acceleration(1.0f) { in VelocityControlParameters() 68 VelocityControlParameters(float scale, float lowThreshold, in VelocityControlParameters() 70 scale(scale), lowThreshold(lowThreshold), in VelocityControlParameters()
|
/frameworks/native/libs/input/ |
D | VelocityControl.cpp | 78 } else if (speed > mParameters.lowThreshold) { in move() 81 scale *= 1 + (speed - mParameters.lowThreshold) in move() 82 / (mParameters.highThreshold - mParameters.lowThreshold) in move() 89 mParameters.scale, mParameters.lowThreshold, mParameters.highThreshold, in move() 96 mParameters.scale, mParameters.lowThreshold, mParameters.highThreshold, in move()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageManagerService.java | 4665 long lowThreshold = StorageManager.from(mContext).getStorageLowBytes(dataDir); in performBootDexOpt() local 4666 if (lowThreshold == 0) { in performBootDexOpt() 4671 if (usableSpace < lowThreshold) { in performBootDexOpt() 9013 final long lowThreshold = storage.getStorageLowBytes( in handleStartCopy() local 9019 if (mInstaller.freeCache(sizeBytes + lowThreshold) >= 0) { in handleStartCopy()
|
/frameworks/native/services/inputflinger/ |
D | InputReader.cpp | 735 mConfig.pointerVelocityControlParameters.lowThreshold, in dump() 742 mConfig.wheelVelocityControlParameters.lowThreshold, in dump()
|