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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FEBlendNEON.h 40 static inline uint16x8_t div255(uint16x8_t num, uint16x8_t sixteenConst255, uint16x8_t sixteenConstOne) function in class:blink::FEBlendUtilitiesNEON
52 uint16x8_t tmp3 = div255(tmp2, sixteenConst255, sixteenConstOne);
64 return div255(tmp5, sixteenConst255, sixteenConstOne);
72 uint16x8_t tmp3 = div255(tmp2, sixteenConst255, sixteenConstOne);
81 uint16x8_t tmp3 = div255(tmp2, sixteenConst255, sixteenConstOne);
86 uint16x8_t tmp7 = div255(tmp6, sixteenConst255, sixteenConstOne);
97 uint16x8_t tmp3 = div255(tmp2, sixteenConst255, sixteenConstOne);
102 uint16x8_t tmp7 = div255(tmp6, sixteenConst255, sixteenConstOne);
  /external/chromium_org/third_party/skia/src/effects/
SkEmbossMask.cpp 39 static inline unsigned div255(unsigned x) { function
146 add = div255(add * hilite);
  /external/skia/src/effects/
SkEmbossMask.cpp 39 static inline unsigned div255(unsigned x) { function
146 add = div255(add * hilite);
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_blend.c 63 #define DIV255(X) (divtemp = (X), ((divtemp << 8) + divtemp + 256) >> 16)
147 const GLint r = DIV255((rgba[i][RCOMP] - dest[i][RCOMP]) * t) + dest[i][RCOMP];
148 const GLint g = DIV255((rgba[i][GCOMP] - dest[i][GCOMP]) * t) + dest[i][GCOMP];
149 const GLint b = DIV255((rgba[i][BCOMP] - dest[i][BCOMP]) * t) + dest[i][BCOMP];
150 const GLint a = DIV255((rgba[i][ACOMP] - dest[i][ACOMP]) * t) + dest[i][ACOMP];
431 rgba[i][RCOMP] = DIV255(rgba[i][RCOMP] * dest[i][RCOMP]);
432 rgba[i][GCOMP] = DIV255(rgba[i][GCOMP] * dest[i][GCOMP]);
433 rgba[i][BCOMP] = DIV255(rgba[i][BCOMP] * dest[i][BCOMP]);
434 rgba[i][ACOMP] = DIV255(rgba[i][ACOMP] * dest[i][ACOMP]);
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_blend.c 63 #define DIV255(X) (divtemp = (X), ((divtemp << 8) + divtemp + 256) >> 16)
147 const GLint r = DIV255((rgba[i][RCOMP] - dest[i][RCOMP]) * t) + dest[i][RCOMP];
148 const GLint g = DIV255((rgba[i][GCOMP] - dest[i][GCOMP]) * t) + dest[i][GCOMP];
149 const GLint b = DIV255((rgba[i][BCOMP] - dest[i][BCOMP]) * t) + dest[i][BCOMP];
150 const GLint a = DIV255((rgba[i][ACOMP] - dest[i][ACOMP]) * t) + dest[i][ACOMP];
431 rgba[i][RCOMP] = DIV255(rgba[i][RCOMP] * dest[i][RCOMP]);
432 rgba[i][GCOMP] = DIV255(rgba[i][GCOMP] * dest[i][GCOMP]);
433 rgba[i][BCOMP] = DIV255(rgba[i][BCOMP] * dest[i][BCOMP]);
434 rgba[i][ACOMP] = DIV255(rgba[i][ACOMP] * dest[i][ACOMP]);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageFrame.h 173 static const unsigned div255 = static_cast<unsigned>(1.0 / 255 * (1 << 24)) + 1;
183 unsigned alpha = a * div255;

Completed in 2509 milliseconds