/aosp14/frameworks/base/tests/SilkFX/src/com/android/test/silkfx/hdr/ |
H A D | GainmapMetadataEditor.kt | 130 gammaSeek -> updateGamma(normalized) 131 offsetSdrSeek -> updateOffsetSdr(normalized) 202 private fun updateGainmapMin(normalized: Float) { 213 private fun updateGainmapMax(normalized: Float) { 224 private fun updateCapacityMin(normalized: Float) { 235 private fun updateCapacityMax(normalized: Float) { 246 private fun updateGamma(normalized: Float) { 257 private fun updateOffsetSdr(normalized: Float) { 259 if (normalized > 0.0f ) { 271 private fun updateOffsetHdr(normalized: Float) { [all …]
|
/aosp14/frameworks/base/core/java/com/android/internal/graphics/cam/ |
H A D | CamUtils.java | 164 double normalized = rgbComponent / 100.0; in delinearized() local 166 if (normalized <= 0.0031308) { in delinearized() 167 delinearized = normalized * 12.92; in delinearized() 169 delinearized = 1.055 * Math.pow(normalized, 1.0 / 2.4) - 0.055; in delinearized() 280 float normalized = (float) rgbComponent / 255.0f; in linearized() local 282 if (normalized <= 0.04045f) { in linearized() 283 return (normalized / 12.92f) * 100.0f; in linearized() 285 return (float) Math.pow(((normalized + 0.055f) / 1.055f), 2.4f) * 100.0f; in linearized()
|
H A D | HctSolver.java | 341 double normalized = rgbComponent / 100.0; in trueDelinearized() local 343 if (normalized <= 0.0031308) { in trueDelinearized() 344 delinearized = normalized * 12.92; in trueDelinearized() 346 delinearized = 1.055 * Math.pow(normalized, 1.0 / 2.4) - 0.055; in trueDelinearized()
|
/aosp14/frameworks/base/graphics/java/android/graphics/drawable/ |
H A D | TransitionDrawable.java | 195 float normalized = (float) in draw() local 197 done = normalized >= 1.0f; in draw() 198 normalized = Math.min(normalized, 1.0f); in draw() 199 mAlpha = (int) (mFrom + (mTo - mFrom) * normalized); in draw()
|
/aosp14/frameworks/base/services/core/java/com/android/server/hdmi/ |
H A D | HdmiCecMessageBuilder.java | 101 String normalized = language.toLowerCase(); in buildSetMenuLanguageCommand() local 103 (byte) (normalized.charAt(0) & 0xFF), in buildSetMenuLanguageCommand() 104 (byte) (normalized.charAt(1) & 0xFF), in buildSetMenuLanguageCommand() 105 (byte) (normalized.charAt(2) & 0xFF), in buildSetMenuLanguageCommand()
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/ |
H A D | Vector3Test.java | 106 AnyMotionDetector.Vector3 unitXAxisNormalized = unitXAxis.normalized(); 112 AnyMotionDetector.Vector3 x3Normalized = x3.normalized();
|
/aosp14/frameworks/base/media/mca/filterfw/native/core/ |
H A D | shader_program.cpp | 59 normalized(false), in VertexAttrib() 959 attrib.normalized = normalize; in SetAttributeValues() 985 attrib.normalized = normalize; in SetAttributeValues() 1025 attrib.normalized = false; in SetAttributeValues() 1075 attrib.normalized, in PushAttributes() 1085 attrib.normalized, in PushAttributes()
|
H A D | shader_program.h | 413 bool normalized; member
|
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/ |
H A D | AnyMotionDetector.java | 286 Vector3 previousGravityVectorNormalized = mPreviousGravityVector.normalized(); in getStationaryStatusLocked() 287 Vector3 currentGravityVectorNormalized = mCurrentGravityVector.normalized(); in getStationaryStatusLocked() 402 public Vector3 normalized() { in normalized() method in AnyMotionDetector.Vector3
|
/aosp14/frameworks/base/core/tests/coretests/src/android/text/ |
H A D | StaticLayoutTest.java | 675 String normalized; in buildTestMessage() local 677 normalized = "NFC"; in buildTestMessage() 679 normalized = "NFD"; in buildTestMessage() 681 normalized = "NFKC"; in buildTestMessage() 683 normalized = "NFKD"; in buildTestMessage() 695 + ", Normalization: " + normalized; in buildTestMessage()
|
/aosp14/frameworks/base/opengl/java/android/opengl/ |
H A D | GLES20.java | 1885 boolean normalized, in glVertexAttribPointer() argument 1896 boolean normalized, in glVertexAttribPointerBounds() argument 1906 boolean normalized, in glVertexAttribPointer() argument 1914 normalized, in glVertexAttribPointer()
|
H A D | GLES31.java | 1079 boolean normalized, in glVertexAttribFormat() argument
|
/aosp14/frameworks/base/services/core/java/com/android/server/power/ |
H A D | ThermalManagerService.java | 1499 float normalized = normalizeTemperature(currentTemperature, threshold); in getForecast() local 1500 if (Float.isNaN(maxNormalized) || normalized > maxNormalized) { in getForecast() 1501 maxNormalized = normalized; in getForecast() 1507 float normalized = normalizeTemperature( in getForecast() local 1509 if (Float.isNaN(maxNormalized) || normalized > maxNormalized) { in getForecast() 1510 maxNormalized = normalized; in getForecast()
|
/aosp14/frameworks/base/core/jni/ |
H A D | android_opengl_GLES10Ext.cpp | 54 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) { in glVertexAttribPointerBounds() argument 55 glVertexAttribPointer(indx, size, type, normalized, stride, pointer); in glVertexAttribPointerBounds()
|
H A D | android_opengl_GLES31Ext.cpp | 53 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) { in glVertexAttribPointerBounds() argument 54 glVertexAttribPointer(indx, size, type, normalized, stride, pointer); in glVertexAttribPointerBounds()
|
H A D | android_opengl_GLES31.cpp | 52 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) { in glVertexAttribPointerBounds() argument 53 glVertexAttribPointer(indx, size, type, normalized, stride, pointer); in glVertexAttribPointerBounds() 3612 …(JNIEnv *_env, jobject _this, jint attribindex, jint size, jint type, jboolean normalized, jint re… in android_glVertexAttribFormat__IIIZI() argument 3617 (GLboolean)normalized, in android_glVertexAttribFormat__IIIZI()
|
H A D | android_opengl_GLES20.cpp | 54 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) { in glVertexAttribPointerBounds() argument 55 glVertexAttribPointer(indx, size, type, normalized, stride, pointer); in glVertexAttribPointerBounds() 6395 …(JNIEnv *_env, jobject _this, jint indx, jint size, jint type, jboolean normalized, jint stride, j… in android_glVertexAttribPointer__IIIZII() argument 6400 (GLboolean)normalized, in android_glVertexAttribPointer__IIIZII() 6409 …(JNIEnv *_env, jobject _this, jint indx, jint size, jint type, jboolean normalized, jint stride, j… in android_glVertexAttribPointerBounds__IIIZILjava_nio_Buffer_2I() argument 6428 (GLboolean)normalized, in android_glVertexAttribPointerBounds__IIIZILjava_nio_Buffer_2I()
|
H A D | android_opengl_GLES32.cpp | 52 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) { in glVertexAttribPointerBounds() argument 53 glVertexAttribPointer(indx, size, type, normalized, stride, pointer); in glVertexAttribPointerBounds()
|
H A D | android_opengl_GLES10.cpp | 54 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) { in glVertexAttribPointerBounds() argument 55 glVertexAttribPointer(indx, size, type, normalized, stride, pointer); in glVertexAttribPointerBounds()
|
H A D | android_opengl_GLES11.cpp | 54 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) { in glVertexAttribPointerBounds() argument 55 glVertexAttribPointer(indx, size, type, normalized, stride, pointer); in glVertexAttribPointerBounds()
|
H A D | android_opengl_GLES11Ext.cpp | 54 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) { in glVertexAttribPointerBounds() argument 55 glVertexAttribPointer(indx, size, type, normalized, stride, pointer); in glVertexAttribPointerBounds()
|
H A D | android_opengl_GLES30.cpp | 54 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) { in glVertexAttribPointerBounds() argument 55 glVertexAttribPointer(indx, size, type, normalized, stride, pointer); in glVertexAttribPointerBounds()
|
/aosp14/frameworks/base/services/core/java/com/android/server/ |
H A D | PackageWatchdog.java | 1507 LongArrayQueue normalized = new LongArrayQueue(); in normalizeMitigationCalls() local 1510 normalized.addLast(mMitigationCalls.get(i) - now); in normalizeMitigationCalls() 1512 return normalized; in normalizeMitigationCalls()
|
/aosp14/frameworks/base/core/java/android/content/ |
H A D | ContentProvider.java | 2761 final Uri normalized = uri.buildUpon() in validateIncomingUri() local 2763 Log.w(TAG, "Normalized " + uri + " to " + normalized in validateIncomingUri() 2765 return normalized; in validateIncomingUri()
|
/aosp14/frameworks/base/core/proto/android/server/ |
H A D | jobscheduler.proto | 218 // Bucket assignments as recorded in the JobStatus objects are normalized to
|