HomeSort by relevance Sort by last modified time
    Searched full:contrast (Results 1 - 25 of 499) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/media/mca/filterpacks/imageproc/native/
contrast.c 25 float contrast; member in struct:__anon26121
37 if (strcmp(key, "contrast") == 0)
38 ((ContrastParameters*)user_data)->contrast = atof(value);
51 LOGE("Contrast: Incorrect input count! Expected 1 but got %d!", input_count);
57 LOGE("Contrast: Input-output sizes do not match up. %d vs. %d!", input_sizes[0], output_size);
65 LOGE("Contrast: No input or output pointer found!");
71 const float contrast = params->contrast; local
73 // Run the contrast adjustment
78 px *= contrast;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ColorMatrixSample.java 55 private static void setContrast(ColorMatrix cm, float contrast) {
56 float scale = contrast + 1.f;
65 private static void setContrastTranslateOnly(ColorMatrix cm, float contrast) {
66 float scale = contrast + 1.f;
75 private static void setContrastScaleOnly(ColorMatrix cm, float contrast) {
76 float scale = contrast + 1.f;
102 //convert our animated angle [-180...180] to a contrast value of [-1..1]
103 float contrast = mAngle / 180.f; local
105 setContrast(cm, contrast);
109 setContrastScaleOnly(cm, contrast);
    [all...]
PurgeableBitmap.java 34 * In contrast, the Purgeable case shows that the system can complete decoding
  /system/media/mca/filterpacks/imageproc/java/
ContrastFilter.java 40 "uniform float contrast;\n" +
45 " color *= contrast;\n" +
51 super(name, "contrast");
56 return new NativeProgram("filterpack_imageproc", "contrast");
  /external/webkit/Source/WebCore/platform/graphics/android/
ShaderProgram.h 82 float contrast() { return m_contrast; } function in class:WebCore::ShaderProgram
84 float contrast = c; local
85 if (contrast < 0)
86 contrast = 0;
87 if (contrast > MAX_CONTRAST)
88 contrast = MAX_CONTRAST;
89 m_contrast = contrast;
115 GLint texFilter, GLint contrast = -1);
120 GLint position, GLint alpha, GLint contrast = -1);
TilesManager.h 172 void setInvertedScreenContrast(float contrast)
174 m_shader.setContrast(contrast);
ShaderProgram.cpp 69 "uniform float contrast; \n"
75 " color = ((color - a/2.0) * contrast) + a/2.0; \n"
116 "uniform float contrast; \n"
122 " color = ((color - a/2.0) * contrast) + a/2.0; \n"
228 m_hContrastInverted = glGetUniformLocation(m_surfTexOESProgramInverted, "contrast");
247 m_hSTOESContrastInverted = glGetUniformLocation(m_surfTexOESProgramInverted, "contrast");
330 GLint contrast)
358 if (contrast != -1)
359 glUniform1f(contrast, m_contrast);
538 GLint contrast)
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_message_handler.h 16 // ExtensionHost/BackgroundContents. Contrast this with ExtensionTabHelper,
  /system/media/mca/filterpacks/imageproc/
Android.mk 28 native/contrast.c \
  /external/bluetooth/glib/docs/reference/glib/tmpl/
version.sgml 30 GLib library you have linked against. Contrast with the
44 GLib library you have linked against. Contrast with the
58 have linked against. Contrast with the #GLIB_MICRO_VERSION macro, which
memory.sgml 87 %NULL on failure. Contrast with g_new(), which aborts the program on failure.
101 to 0's, and returns %NULL on failure. Contrast with g_new0(), which aborts
117 failure. Contrast with g_renew(), which aborts the program on failure.
165 Contrast with g_malloc(), which aborts the program on failure.
175 failure. Contrast with g_malloc0(), which aborts the program on failure.
186 on failure. Contrast with g_realloc(), which aborts the program
  /external/clang/test/CodeGen/
bool-bitfield.c 9 int contrast; member in struct:SysParams
  /external/kernel-headers/original/linux/
calc64.h 13 * referenced by remainder (data type long *). In contrast to the
  /external/opencv/cv/src/
cvcalccontrasthistogram.cpp 54 // Purpose: Calculating the histogram of contrast from one-channel images
120 // calculate contrast for the right-left pair
134 // calculate contrast for the top-down pair
167 // Purpose: Calculating the mask histogram of contrast from one-channel images
240 // calculate contrast for the right-left pair
258 // calculate contrast for the top-down pair
  /external/webkit/Source/WebKit/win/Interfaces/
IWebPreferencesPrivate.idl 70 HRESULT setFontSmoothingContrast([in] float contrast);
71 HRESULT fontSmoothingContrast([out, retval] float* contrast);
  /packages/apps/Browser/src/com/android/browser/preferences/
AccessibilityPreferencesFragment.java 92 void updateInvertedContrastSummary(Preference pref, int contrast) {
93 pref.setSummary(mFormat.format(contrast / 100.0));
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
merge.h 44 * reach @c end, in contrast to the usual variant.
91 * reach @c end, in contrast to the usual variant.
160 * reach @c end, in contrast to the usual variant.
214 * reach @c end, in contrast to the usual variant.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/dvb/
video.h 165 uint8_t contrast1; /* 7- 4 Pattern pixel contrast */
166 /* 3- 0 Background pixel contrast */
167 uint8_t contrast2; /* 7- 4 Emphasis pixel-2 contrast */
168 /* 3- 0 Emphasis pixel-1 contrast */
  /external/chromium/chrome/common/extensions/docs/static/
a11y.html 268 or the contrast might be reduced.
381 apply the <a href="http://www.w3.org/TR/2008/REC-WCAG20-20081211/#visual-audio-contrast-scale">200% test</a>.
401 Check that there is sufficient contrast between
403 <a href="http://snook.ca/technical/colour_contrast/colour.html">This contrast checking tool</a>
405 provide appropriate contrast.
407 you can also enable High Contrast Mode
408 to check the contrast of your extension.
409 When evaluating contrast,
420 for better contrast.
  /external/llvm/include/llvm/Analysis/
Lint.h 12 // haven't done something bad. In contrast to the Verifier, the Lint checker
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
octal-003.js 16 * the characters <'a'>, <nul>, <'1'>, <'1'>. By contrast, the \011 in the
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
mainloop-signal.h 34 * UNIX signal support for main loops. In contrast to other
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMX3A.cpp 141 ( (mParameters3A.Contrast + CONTRAST_OFFSET) !=
144 mParameters3A.Contrast = params.getInt(TICameraParameters::KEY_CONTRAST) - CONTRAST_OFFSET;
145 CAMHAL_LOGDB("Contrast %d", mParameters3A.Contrast);
423 Gen3A.Contrast = atoi(OMXCameraAdapter::DEFAULT_CONTRAST) - CONTRAST_OFFSET;
1023 OMX_CONFIG_CONTRASTTYPE contrast; local
    [all...]
  /external/clang/docs/
PTHInternals.html 103 <li><p><b>Architecture independence</b>: In contrast to GCC's PCH files (and
110 (i386), and 64-bit Intel architectures. In contrast, GCC requires a PCH file for
138 header file. In contrast, the amount of work done by GCC to process a
  /bionic/libm/man/
fma.3 54 Using the ordinary multiplication and addition operators, by contrast,

Completed in 1008 milliseconds

1 2 3 4 5 6 7 8 91011>>