Searched defs:histogram (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/info/
H A DHistogramView.java81 private void drawHistogram(Canvas canvas, int[] histogram, int color, PorterDuff.Mode mode) { argument
83 for (int i = 0; i < histogram.length; i++) {
84 if (histogram[i] > max) {
85 max = histogram[i];
91 float wl = w / histogram.length;
114 for (int i = 0; i < histogram.length; i++) {
116 float l = histogram[i] * wh;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageCurves.java368 private void drawHistogram(Canvas canvas, int[] histogram, int color, PorterDuff.Mode mode) { argument
370 for (int i = 0; i < histogram.length; i++) {
371 if (histogram[i] > max) {
372 max = histogram[i];
378 float wl = w / histogram.length;
393 for (int i = 0; i < histogram.length; i++) {
395 float l = histogram[i] * wh;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardParams.java120 private static int updateHistogramCounter(final SparseIntArray histogram, final int key) { argument
121 final int index = histogram.indexOfKey(key);
122 final int count = (index >= 0 ? histogram.get(key) : 0) + 1;
123 histogram.put(key, count);

Completed in 104 milliseconds