Home
last modified time | relevance | path

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

12

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DTextGammaActivity.java40 final GammaTextView gamma = new GammaTextView(this); in onCreate() local
41 layout.addView(gamma, new LinearLayout.LayoutParams( in onCreate()
49 Bitmap b = Bitmap.createBitmap(gamma.getWidth(), gamma.getHeight(), in onCreate()
53 gamma.draw(c); in onCreate()
91 final GammaTextView gamma = new GammaTextView(this); in onCreate() local
96 layout.addView(gamma, lp); in onCreate()
/frameworks/native/libs/ui/
DColorSpace.cpp71 static ColorSpace::transfer_function toOETF(float gamma) { in toOETF() argument
72 if (gamma == 1.0f) { in toOETF()
75 return std::bind(safePow, _1, 1.0f / gamma); in toOETF()
78 static ColorSpace::transfer_function toEOTF(float gamma) { in toEOTF() argument
79 if (gamma == 1.0f) { in toEOTF()
82 return std::bind(safePow, _1, gamma); in toEOTF()
135 float gamma, in ColorSpace() argument
140 , mParameters({gamma, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f}) in ColorSpace()
141 , mOETF(toOETF(gamma))
142 , mEOTF(toEOTF(gamma))
[all …]
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
Dweight_a.c31 Word16 gamma, /* (i) Q15 : Spectral expansion factor. */ in Weight_a() argument
37 fac = gamma; in Weight_a()
40 fac = (vo_L_mult(fac, gamma) + 0x8000) >> 16; in Weight_a()
/frameworks/base/graphics/java/android/graphics/
DTableMaskFilter.java42 public static TableMaskFilter CreateGammaTable(float gamma) { in CreateGammaTable() argument
43 return new TableMaskFilter(nativeNewGamma(gamma)); in CreateGammaTable()
48 private static native long nativeNewGamma(float gamma); in nativeNewGamma() argument
DColorSpace.java2593 double gamma) { in Rgb() argument
2594 … this(name, computePrimaries(toXYZ), computeWhitePoint(toXYZ), gamma, 0.0f, 1.0f, MIN_ID); in Rgb()
2633 double gamma) { in Rgb() argument
2634 this(name, primaries, whitePoint, gamma, 0.0f, 1.0f, MIN_ID); in Rgb()
2678 double gamma, in Rgb() argument
2683 gamma == 1.0 ? DoubleUnaryOperator.identity() : in Rgb()
2684 x -> Math.pow(x < 0.0 ? 0.0 : x, 1 / gamma), in Rgb()
2685 gamma == 1.0 ? DoubleUnaryOperator.identity() : in Rgb()
2686 x -> Math.pow(x < 0.0 ? 0.0 : x, gamma), in Rgb()
2687 min, max, new TransferParameters(1.0, 0.0, 0.0, 0.0, gamma), id); in Rgb()
/frameworks/av/media/libstagefright/codecs/amrwb/src/
Dweight_amrwb_lpc.cpp119 int16 gamma, /* (i) Q15 : Spectral expansion factor. */ in weight_amrwb_lpc() argument
126 fac = gamma; in weight_amrwb_lpc()
130 fac = (int16)(fxp_mac_16by16(fac, gamma, roundFactor) >> 15); in weight_amrwb_lpc()
Dpvamrwbdecoder_acelp.h117 int16 gamma, /* (i) Q15 : Spectral expansion factor. */
/frameworks/base/services/tests/servicestests/src/com/android/server/display/
DBrightnessMappingStrategyTest.java474 float gamma = 0.5f; in testGammaCorrectionLowChangeAtCenter() local
475 strategy.addUserDataPoint(x2, (float) MathUtils.pow(y2, gamma)); in testGammaCorrectionLowChangeAtCenter()
476 assertEquals(MathUtils.pow(y1, gamma), strategy.getBrightness(x1), 0.01f /* tolerance */); in testGammaCorrectionLowChangeAtCenter()
477 assertEquals(MathUtils.pow(y2, gamma), strategy.getBrightness(x2), 0.01f /* tolerance */); in testGammaCorrectionLowChangeAtCenter()
478 assertEquals(MathUtils.pow(y3, gamma), strategy.getBrightness(x3), 0.01f /* tolerance */); in testGammaCorrectionLowChangeAtCenter()
502 float gamma = 0.25f; in testGammaCorrectionHighChangeAtCenter() local
504 strategy.addUserDataPoint(x2, (float) MathUtils.pow(y2, gamma)); in testGammaCorrectionHighChangeAtCenter()
507 assertEquals(MathUtils.pow(y2, gamma), strategy.getBrightness(x2), in testGammaCorrectionHighChangeAtCenter()
549 float gamma = (float) MathUtils.pow(MAXIMUM_GAMMA, -adjustment); in testGammaCorrectionChangeAtEdges() local
552 assertEquals(MathUtils.pow(y2, gamma), strategy.getBrightness(x2), 0.01f /* tolerance */); in testGammaCorrectionChangeAtEdges()
[all …]
/frameworks/base/core/res/res/raw/
Dcolor_fade_frag.frag6 uniform float gamma;
12 vec3 rgb = pow(color.rgb * opacity, vec3(gamma));
/frameworks/ml/nn/common/operations/
DInstanceNormalization.cpp48 inline bool instanceNormNhwc(const T* inputData, const Shape& inputShape, T gamma, T beta, in instanceNormNhwc() argument
82 outputData[ind] = (inputData[ind] - mean) * gamma / sigma + beta; in instanceNormNhwc()
91 inline bool instanceNorm(const T* inputData, const Shape& inputShape, T gamma, T beta, T epsilon, in instanceNorm() argument
97 NN_RET_CHECK(instanceNormNhwc(input.getNhwcBuffer(), input.getNhwcShape(), gamma, beta, epsilon, in instanceNorm()
/frameworks/base/services/core/java/com/android/server/display/
DBrightnessMappingStrategy.java377 float gamma = Float.NaN; in inferAutoBrightnessAdjustment() local
390 gamma = MathUtils.log(desiredBrightness) / MathUtils.log(currentBrightness); in inferAutoBrightnessAdjustment()
392 adjustment = -MathUtils.log(gamma) / MathUtils.log(maxGamma); in inferAutoBrightnessAdjustment()
397 MathUtils.pow(maxGamma, -adjustment) + " == " + gamma); in inferAutoBrightnessAdjustment()
398 Slog.d(TAG, "inferAutoBrightnessAdjustment: " + currentBrightness + "^" + gamma + "=" + in inferAutoBrightnessAdjustment()
399 MathUtils.pow(currentBrightness, gamma) + " == " + desiredBrightness); in inferAutoBrightnessAdjustment()
412 float gamma = MathUtils.pow(maxGamma, -adjustment); in getAdjustedCurve() local
415 MathUtils.pow(maxGamma, -adjustment) + " == " + gamma); in getAdjustedCurve()
417 if (gamma != 1) { in getAdjustedCurve()
419 newBrightness[i] = MathUtils.pow(newBrightness[i], gamma); in getAdjustedCurve()
DColorFade.java402 float gamma = (float) ((0.5d * sign * Math.pow(cos, 2) + 0.5d) * 0.9d + 0.1d); in draw()
403 drawFaded(opacity, 1.f / gamma); in draw()
415 private void drawFaded(float opacity, float gamma) {
417 Slog.d(TAG, "drawFaded: opacity=" + opacity + ", gamma=" + gamma);
426 GLES20.glUniform1f(mGammaLoc, gamma);
/frameworks/base/core/java/android/os/
DVibrationEffect.java383 protected static int scale(int amplitude, float gamma, int maxAmplitude) { in scale() argument
384 float val = MathUtils.pow(amplitude / (float) MAX_AMPLITUDE, gamma); in scale()
423 public OneShot scale(float gamma, int maxAmplitude) { in scale() argument
428 int newAmplitude = scale(mAmplitude, gamma, maxAmplitude); in scale()
564 public Waveform scale(float gamma, int maxAmplitude) { in scale() argument
569 if (gamma == 1.0f && maxAmplitude == MAX_AMPLITUDE) { in scale()
576 scaledAmplitudes[i] = scale(scaledAmplitudes[i], gamma, maxAmplitude); in scale()
/frameworks/base/core/jni/android/graphics/
DMaskFilter.cpp58 static jlong createGammaTable(JNIEnv* env, jobject, jfloat gamma) { in createGammaTable() argument
59 SkMaskFilter* filter = SkTableMaskFilter::CreateGamma(gamma); in createGammaTable()
/frameworks/native/libs/ui/include_vndk/ui/
DColorSpace.h92 float gamma,
143 float gamma,
/frameworks/native/libs/ui/include/ui/
DColorSpace.h92 float gamma,
143 float gamma,
/frameworks/base/services/core/java/com/android/server/
DVibratorService.java341 public final float gamma; field in VibratorService.ScaleLevel
344 public ScaleLevel(float gamma) { in ScaleLevel() argument
345 this(gamma, VibrationEffect.MAX_AMPLITUDE); in ScaleLevel()
348 public ScaleLevel(float gamma, int maxAmplitude) { in ScaleLevel() argument
349 this.gamma = gamma; in ScaleLevel()
355 return "ScaleLevel{gamma=" + gamma + ", maxAmplitude=" + maxAmplitude + "}"; in toString()
919 scaledEffect = oneShot.scale(scale.gamma, scale.maxAmplitude); in applyVibrationIntensityScalingLocked()
923 scaledEffect = waveform.scale(scale.gamma, scale.maxAmplitude); in applyVibrationIntensityScalingLocked()
/frameworks/rs/
DrsFont.cpp341 float gamma = DEFAULT_TEXT_GAMMA; in FontState() local
351 gamma = atof(property); in FontState()
369 mBlackGamma = gamma; in FontState()
370 mWhiteGamma = 1.0f / gamma; in FontState()
/frameworks/av/media/libaudioprocessing/
DAudioMixer.cpp593 float gamma = t->getHapticScaleGamma(); in postProcess() local
603 fout[i] = powf(fabsf(fout[i] / HAPTIC_MAX_AMPLITUDE_FLOAT), gamma) in postProcess()
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
Dacelp.h95 Word16 gamma, /* (i) Q15 : Spectral expansion factor. */
/frameworks/ml/nn/tools/api/
DREADME.md162 error, but `%{test alpha beta gamma}` would not.
/frameworks/wilhelm/doc/
DDoxyfile828 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to
831 # the output darker. The value divided by 100 is the actual gamma applied,
832 # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2,
833 # and 100 does not change the gamma.
/frameworks/rs/script_api/
Drs_math.spec1286 summary: Natural logarithm of the gamma function
1288 Returns the natural logarithm of the absolute value of the gamma function,
3332 Returns the gamma function of a value.
/frameworks/native/docs/
DDoxyfile997 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to
1000 # the output darker. The value divided by 100 is the actual gamma applied,
1001 # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2,
1002 # and 100 does not change the gamma.
/frameworks/av/media/libaaudio/
DDoxyfile1111 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
1114 # darker. The value divided by 100 is the actual gamma applied, so 80 represents
1115 # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
1116 # change the gamma.

12