Searched defs:gamma (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dweight_amrwb_lpc.cpp49 int16 gamma, (i) Q15 : Spectral expansion factor.
56 ap[i] = a[i] (gamma i)
119 int16 gamma, /* (i) Q15 : Spectral expansion factor. */
126 fac = gamma;
130 fac = (int16)(fxp_mac_16by16(fac, gamma, roundFactor) >> 15);
116 weight_amrwb_lpc( int16 a[], int16 ap[], int16 gamma, int16 m ) argument
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dweight_a.c21 * ap[i] = a[i] * (gamma ** i) *
31 Word16 gamma, /* (i) Q15 : Spectral expansion factor. */
37 fac = gamma;
40 fac = (vo_L_mult(fac, gamma) + 0x8000) >> 16;
28 Weight_a( Word16 a[], Word16 ap[], Word16 gamma, Word16 m ) argument
/frameworks/base/graphics/java/android/graphics/
H A DTableMaskFilter.java39 public static TableMaskFilter CreateGammaTable(float gamma) { argument
40 return new TableMaskFilter(nativeNewGamma(gamma));
45 private static native int nativeNewGamma(float gamma); argument
/frameworks/base/core/jni/android/graphics/
H A DMaskFilter.cpp53 static SkMaskFilter* createGammaTable(JNIEnv* env, jobject, float gamma) { argument
54 return SkTableMaskFilter::CreateGamma(gamma);
/frameworks/base/libs/hwui/
H A DGammaFontRenderer.cpp62 // Get the gamma
65 INIT_LOGD(" Setting text gamma to %s", property);
68 INIT_LOGD(" Using default text gamma of %.2f", DEFAULT_TEXT_GAMMA);
71 // Get the black gamma threshold
74 INIT_LOGD(" Setting text black gamma threshold to %s", property);
77 INIT_LOGD(" Using default text black gamma threshold of %d",
81 // Get the white gamma threshold
84 INIT_LOGD(" Setting text white gamma threshold to %s", property);
87 INIT_LOGD(" Using default white black gamma threshold of %d",
100 INIT_LOGD("Creating shader gamma fon
146 const float gamma = 1.0f / mGamma; local
235 getRenderer(Gamma gamma) argument
[all...]
H A DProgram.h159 float gamma; member in struct:android::uirenderer::ProgramDescription
200 gamma = 2.2f;
/frameworks/rs/
H A DrsFont.cpp342 float gamma = DEFAULT_TEXT_GAMMA; local
350 // Get the gamma
352 gamma = atof(property);
355 // Get the black gamma threshold
360 // Get the white gamma threshold
369 // Compute the gamma tables
370 mBlackGamma = gamma;
371 mWhiteGamma = 1.0f / gamma;

Completed in 2011 milliseconds