/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
ColorPickerDialog.java | 112 private int ave(int s, int d, float p) { method in class:ColorPickerDialog.ColorPickerView 131 int a = ave(Color.alpha(c0), Color.alpha(c1), p); 132 int r = ave(Color.red(c0), Color.red(c1), p); 133 int g = ave(Color.green(c0), Color.green(c1), p); 134 int b = ave(Color.blue(c0), Color.blue(c1), p);
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
ColorWheel.java | 129 private int ave(int s, int d, float p) { method in class:ColorWheel 148 int a = ave(Color.alpha(c0), Color.alpha(c1), p); 149 int r = ave(Color.red(c0), Color.red(c1), p); 150 int g = ave(Color.green(c0), Color.green(c1), p); 151 int b = ave(Color.blue(c0), Color.blue(c1), p);
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
FFTFrame.cpp | 210 double ave = aveSum / weightSum; local 211 double aveSampleDelay = -ave / kSamplePhaseDelay;
|
/external/chromium_org/third_party/skia/samplecode/ |
SampleHairline.cpp | 123 static SkPoint ave(const SkPoint& a, const SkPoint& b) { function 140 path.quadTo(pts[j], ave(pts[j], pts[j+1])); 151 path->cubicTo(ave(start, mid), ave(mid, end), end); 164 add_cubic(&path, pts[j], ave(pts[j], pts[j+1]));
|
/external/chromium_org/third_party/libwebp/dsp/ |
lossless.c | 445 const uint32_t ave = Average2(c0, c1); local 446 const int a = AddSubtractComponentHalf(ave >> 24, c2 >> 24); 447 const int r = AddSubtractComponentHalf((ave >> 16) & 0xff, (c2 >> 16) & 0xff); 448 const int g = AddSubtractComponentHalf((ave >> 8) & 0xff, (c2 >> 8) & 0xff); 449 const int b = AddSubtractComponentHalf((ave >> 0) & 0xff, (c2 >> 0) & 0xff); [all...] |
/external/owasp/sanitizer/tools/findbugs/lib/ |
bcel.jar | |