HomeSort by relevance Sort by last modified time
    Searched refs:U8CPU (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/skia/include/core/
SkColor.h 39 static inline SkColor SkColorSetARGBInline(U8CPU a, U8CPU r, U8CPU g, U8CPU b)
48 (static_cast<U8CPU>(a) << 24) | \
49 (static_cast<U8CPU>(r) << 16) | \
50 (static_cast<U8CPU>(g) << 8) | \
51 (static_cast<U8CPU>(b) << 0))
77 static inline SkColor SkColorSetA(SkColor c, U8CPU a) {
107 SK_API void SkRGBToHSV(U8CPU red, U8CPU green, U8CPU blue, SkScalar hsv[3])
    [all...]
SkUnPreMultiply.h 34 static Scale GetScale(U8CPU alpha) {
52 static U8CPU ApplyScale(Scale scale, U8CPU component) {
SkMath.h 192 static inline U8CPU SkMulDiv255Trunc(U8CPU a, U8CPU b) {
202 static inline U8CPU SkMulDiv255Round(U8CPU a, U8CPU b) {
212 static inline U8CPU SkMulDiv255Ceiling(U8CPU a, U8CPU b) {
SkColorPriv.h 34 static inline unsigned SkAlpha255To256(U8CPU alpha) {
200 static inline SkPMColor SkPackARGB32(U8CPU a, U8CPU r, U8CPU g, U8CPU b) {
214 static inline SkPMColor SkPackARGB32NoCheck(U8CPU a, U8CPU r, U8CPU g, U8CPU b) {
234 static inline SkPMColor SkBlendARGB32(SkPMColor src, SkPMColor dst, U8CPU aa)
    [all...]
SkBlitRow.h 30 int count, U8CPU alpha, int x, int y);
56 int count, U8CPU alpha);
SkDither.h 109 static inline uint16_t SkDitherRGBTo565(U8CPU r, U8CPU g, U8CPU b,
133 static inline uint16_t SkDitherARGB32To565(U8CPU sa, SkPMColor c, unsigned dither)
150 static inline SkPMColor16 SkDitherARGB32To4444(U8CPU a, U8CPU r, U8CPU g,
151 U8CPU b, unsigned dither)
SkBitmap.h 356 void eraseARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b) const;
362 void eraseRGB(U8CPU r, U8CPU g, U8CPU b) const {
SkCanvas.h 201 int saveLayerAlpha(const SkRect* bounds, U8CPU alpha,
370 void drawARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b,
    [all...]
  /external/skia/src/views/
SkTagList.h 37 SkTagList(U8CPU tag) : fTag(SkToU8(tag))
46 static SkTagList* Find(SkTagList* head, U8CPU tag);
47 static void DeleteTag(SkTagList** headptr, U8CPU tag);
SkTagList.cpp 24 SkTagList* SkTagList::Find(SkTagList* rec, U8CPU tag)
37 void SkTagList::DeleteTag(SkTagList** head, U8CPU tag)
SkWindow.cpp 104 void SkWindow::eraseARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b)
109 void SkWindow::eraseRGB(U8CPU r, U8CPU g, U8CPU b)
  /external/skia/src/opts/
SkBlitRow_opts_SSE2.h 22 int count, U8CPU alpha);
26 int count, U8CPU alpha);
30 int count, U8CPU alpha);
  /external/skia/include/views/
SkWindow.h 46 void eraseARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b);
47 void eraseRGB(U8CPU r, U8CPU g, U8CPU b);
SkEventSink.h 90 SkTagList* findTagList(U8CPU tag) const;
92 void removeTagList(U8CPU tag);
  /external/skia/src/core/
SkColor.cpp 21 SkPMColor SkPreMultiplyARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b) {
48 static inline SkScalar ByteToScalar(U8CPU x) {
53 static inline SkScalar ByteDivToScalar(int numer, U8CPU denom) {
58 void SkRGBToHSV(U8CPU r, U8CPU g, U8CPU b, SkScalar hsv[3]) {
98 static inline U8CPU UnitScalarToByte(SkScalar x)
    [all...]
SkAntiRun.h 40 int add(int x, U8CPU startAlpha, int middleCount, U8CPU stopAlpha,
41 U8CPU maxValue, int offsetX);
SkBlitRow_D16.cpp 9 U8CPU alpha, int /*x*/, int /*y*/) {
23 U8CPU alpha, int /*x*/, int /*y*/) {
42 U8CPU alpha, int /*x*/, int /*y*/) {
60 U8CPU alpha, int /*x*/, int /*y*/) {
84 int count, U8CPU alpha, int x, int y) {
102 int count, U8CPU alpha, int x, int y) {
131 int count, U8CPU alpha, int x, int y) {
165 int count, U8CPU alpha, int x, int y) {
SkBlitRow_D4444.cpp 9 U8CPU alpha, int /*x*/, int /*y*/) {
24 U8CPU alpha, int /*x*/, int /*y*/) {
44 U8CPU alpha, int /*x*/, int /*y*/) {
66 U8CPU alpha, int /*x*/, int /*y*/) {
90 int count, U8CPU alpha, int x, int y) {
109 int count, U8CPU alpha, int x, int y) {
132 int count, U8CPU alpha, int x, int y) {
161 int count, U8CPU alpha, int x, int y) {
SkBlitBWMaskTemplate.h 29 SK_BLITBWMASK_BLIT8 name of function(U8CPU byteMask, SK_BLITBWMASK_DEVTYPE* dst, int x, int y)
58 U8CPU mask = *bits++;
97 U8CPU mask = *bits & left_mask;
109 U8CPU mask;
SkAlphaRuns.cpp 82 int SkAlphaRuns::add(int x, U8CPU startAlpha, int middleCount, U8CPU stopAlpha,
83 U8CPU maxValue, int offsetX) {
SkBlitRow_D32.cpp 9 int count, U8CPU alpha) {
16 int count, U8CPU alpha) {
50 int count, U8CPU alpha) {
91 int count, U8CPU alpha) {
SkGraphics.cpp 75 typesizeline(U8CPU),
  /external/skia/include/effects/
SkAvoidXfermode.h 49 SkAvoidXfermode(SkColor opColor, U8CPU tolerance, Mode mode);
  /frameworks/base/core/jni/android/graphics/
Xfermode.cpp 35 U8CPU tolerance, SkAvoidXfermode::Mode mode)
  /external/skia/src/effects/
SkAvoidXfermode.cpp 21 SkAvoidXfermode::SkAvoidXfermode(SkColor opColor, U8CPU tolerance, Mode mode)
88 static unsigned color_dist32(SkPMColor c, U8CPU r, U8CPU g, U8CPU b)

Completed in 177 milliseconds

1 2 3