Home
last modified time | relevance | path

Searched refs:curve (Results 1 – 25 of 25) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/params/
DTonemapCurve.java196 final float[] curve = getCurve(colorChannel); in getPoint() local
198 final float pIn = curve[index * POINT_SIZE + OFFSET_POINT_IN]; in getPoint()
199 final float pOut = curve[index * POINT_SIZE + OFFSET_POINT_OUT]; in getPoint()
240 float[] curve = getCurve(colorChannel); in copyColorCurve() local
241 System.arraycopy(curve, /*srcPos*/0, destination, offset, curve.length); in copyColorCurve()
311 float[] curve = getCurve(colorChannel); in curveToString() local
312 int pointCount = curve.length / POINT_SIZE; in curveToString()
315 sb.append(curve[j]); in curveToString()
317 sb.append(curve[j+1]); in curveToString()
/frameworks/av/services/audiopolicy/engine/common/src/
DVolumeGroup.cpp59 void VolumeGroup::add(const sp<VolumeCurve> &curve) in add() argument
61 mGroupVolumeCurves.add(curve); in add()
DEngineBase.cpp200 sp<VolumeCurve> curve = new VolumeCurve(deviceCat); in processParsingResult() local
202 curve->add({point.index, point.attenuationInMb}); in processParsingResult()
204 volumeGroup->add(curve); in processParsingResult()
/frameworks/base/services/core/java/com/android/server/display/
DBrightnessMappingStrategy.java571 Pair<float[], float[]> curve = insertControlPoint(newLux, newBrightness, userLux, in getAdjustedCurve() local
573 newLux = curve.first; in getAdjustedCurve()
574 newBrightness = curve.second; in getAdjustedCurve()
578 curve = insertControlPoint(lux, brightness, userLux, userBrightness); in getAdjustedCurve()
579 PLOG.logCurve("user adjusted curve", curve.first ,curve.second); in getAdjustedCurve()
779 Pair<float[], float[]> curve = getAdjustedCurve(mLux, mBrightness, mUserLux, in computeSpline() local
781 mSpline = Spline.createSpline(curve.first, curve.second); in computeSpline()
1210 Pair<float[], float[]> curve = getAdjustedCurve(defaultLux, defaultBrightness, mUserLux, in computeSpline() local
1212 float[] lux = curve.first; in computeSpline()
1213 float[] brightness = curve.second; in computeSpline()
[all …]
DDisplayManagerService.java2688 Pair<float[], float[]> curve = config.getCurve(); in isBrightnessConfigurationTooDark() local
2689 float[] lux = curve.first; in isBrightnessConfigurationTooDark()
2690 float[] nits = curve.second; in isBrightnessConfigurationTooDark()
/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/
DPersistentDataStoreTest.java204 Pair<float[], float[]> curve = config.getCurve(); in testLoadingBrightnessConfigurations() local
207 assertArrayEquals(expectedLux, curve.first, "lux"); in testLoadingBrightnessConfigurations()
208 assertArrayEquals(expectedNits, curve.second, "nits"); in testLoadingBrightnessConfigurations()
212 curve = config.getCurve(); in testLoadingBrightnessConfigurations()
215 assertArrayEquals(expectedLux, curve.first, "lux"); in testLoadingBrightnessConfigurations()
216 assertArrayEquals(expectedNits, curve.second, "nits"); in testLoadingBrightnessConfigurations()
/frameworks/native/libs/input/
DVelocityControl.cpp141 void CurvedVelocityControl::setCurve(const std::vector<AccelerationCurveSegment>& curve) { in setCurve() argument
142 mCurveSegments = curve; in setCurve()
/frameworks/av/services/audiopolicy/engine/common/include/
DVolumeGroup.h37 void add(const sp<VolumeCurve> &curve);
/frameworks/base/core/tests/coretests/src/android/hardware/display/
DBrightnessConfigurationTest.java64 Pair<float[], float[]> curve = config.getCurve(); in testSetCurveIsUnmodified() local
65 assertArrayEquals(LUX_LEVELS, curve.first, "lux"); in testSetCurveIsUnmodified()
66 assertArrayEquals(NITS_LEVELS, curve.second, "nits"); in testSetCurveIsUnmodified()
/frameworks/native/include/input/
DVelocityControl.h139 void setCurve(const std::vector<AccelerationCurveSegment>& curve);
/frameworks/base/wifi/tests/src/android/net/wifi/
DWifiNetworkScoreCacheTest.java89 private static ScoredNetwork buildScoredNetwork(WifiKey key, RssiCurve curve) { in buildScoredNetwork() argument
90 return new ScoredNetwork(new NetworkKey(key), curve); in buildScoredNetwork()
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
Dartistic1.rscript58 // apply curve
Dthreshold.rscript47 // the gaussian curve begins to lose its shape
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
Dartistic1.rscript58 // apply curve
Dthreshold.rscript47 // the gaussian curve begins to lose its shape
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Dartistic1.rscript58 // apply curve
Dthreshold.rscript47 // the gaussian curve begins to lose its shape
Dthreshold_half.rscript47 // the gaussian curve begins to lose its shape
/frameworks/base/core/java/android/hardware/display/
DDisplayManagerGlobal.java1047 Curve curve = mDm.getMinimumBrightnessCurve(); in getMinimumBrightnessCurve() local
1048 return Pair.create(curve.getX(), curve.getY()); in getMinimumBrightnessCurve()
/frameworks/base/core/java/android/hardware/camera2/impl/
DCameraMetadataNative.java2085 float[][] curve = new float[3][]; in setTonemapCurve() local
2088 curve[i] = new float[pointCount * TonemapCurve.POINT_SIZE]; in setTonemapCurve()
2089 tc.copyColorCurve(i, curve[i], 0); in setTonemapCurve()
2091 setBase(CaptureRequest.TONEMAP_CURVE_RED, curve[0]); in setTonemapCurve()
2092 setBase(CaptureRequest.TONEMAP_CURVE_GREEN, curve[1]); in setTonemapCurve()
2093 setBase(CaptureRequest.TONEMAP_CURVE_BLUE, curve[2]); in setTonemapCurve()
/frameworks/libs/systemui/weathereffects/graphics/assets/shaders/
Dglass_rain.agsl186 // Apply a curve to the time.
/frameworks/base/packages/SystemUI/docs/
Dphysics-animation-layout.md45 …0 degree turn to the right, the physics animations will cause the view to curve naturally towards …
/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/wifi/
DAccessPointTest.java1075 RssiCurve curve = list.get(0).getScore().attributes.getParcelable( in testScoredNetworkCacheBundling() local
1077 assertThat(curve).isEqualTo(FAST_BADGE_CURVE); in testScoredNetworkCacheBundling()
/frameworks/proto_logging/stats/
Datoms.proto17735 /** Which ec curve was selected if elliptic curve cryptography is in use **/
17781 // Which ec curve was selected if elliptic curve cryptography is in use
23906 * expressed as a curve where each point is a pair of ambient light (lux) and the corresponding
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...