HomeSort by relevance Sort by last modified time
    Searched full:mul255 (Results 1 - 2 of 2) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapPixels.java 65 private static int mul255(int c, int a) { method in class:BitmapPixels.SampleView
79 r = mul255(r, a);
80 g = mul255(g, a);
81 b = mul255(b, a);
  /external/skia/src/opts/
SkOpts_sse41.cpp 139 // except div255() with is 16-bit -> unpacked 8-bit, and mul255() which is the reverse.
152 static __m128i mul255(__m128i x) { return _mm_sub_epi16(_mm_slli_epi16(x, 8), x); } function in namespace:sk_sse41
172 s_255_128 = div255_part1(mul255(s)),

Completed in 844 milliseconds