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

1 2 3 4 5

  /external/skia/legacy/src/ports/
SkTime_Unix.cpp 25 dt->fMonth = SkToU8(tstruct->tm_mon + 1);
26 dt->fDayOfWeek = SkToU8(tstruct->tm_wday);
27 dt->fDay = SkToU8(tstruct->tm_mday);
28 dt->fHour = SkToU8(tstruct->tm_hour);
29 dt->fMinute = SkToU8(tstruct->tm_min);
30 dt->fSecond = SkToU8(tstruct->tm_sec);
SkTime_win.cpp 20 dt->fMonth = SkToU8(st.wMonth + 1);
21 dt->fDayOfWeek = SkToU8(st.wDayOfWeek);
22 dt->fDay = SkToU8(st.wDay);
23 dt->fHour = SkToU8(st.wHour);
24 dt->fMinute = SkToU8(st.wMinute);
25 dt->fSecond = SkToU8(st.wSecond);
SkFontHost_gamma.cpp 46 table[i] = SkToU8(xx);
  /external/skia/src/ports/
SkTime_Unix.cpp 25 dt->fMonth = SkToU8(tstruct->tm_mon + 1);
26 dt->fDayOfWeek = SkToU8(tstruct->tm_wday);
27 dt->fDay = SkToU8(tstruct->tm_mday);
28 dt->fHour = SkToU8(tstruct->tm_hour);
29 dt->fMinute = SkToU8(tstruct->tm_min);
30 dt->fSecond = SkToU8(tstruct->tm_sec);
SkTime_win.cpp 20 dt->fMonth = SkToU8(st.wMonth + 1);
21 dt->fDayOfWeek = SkToU8(st.wDayOfWeek);
22 dt->fDay = SkToU8(st.wDay);
23 dt->fHour = SkToU8(st.wHour);
24 dt->fMinute = SkToU8(st.wMinute);
25 dt->fSecond = SkToU8(st.wSecond);
  /external/skia/legacy/src/animator/
SkTime.cpp 26 t->fMonth = SkToU8(syst.wMonth);
27 t->fDayOfWeek = SkToU8(syst.wDayOfWeek);
28 t->fDay = SkToU8(syst.wDay);
29 t->fHour = SkToU8(syst.wHour);
30 t->fMinute = SkToU8(syst.wMinute);
31 t->fSecond = SkToU8(syst.wSecond);
58 t->fMonth = SkToU8(syst.tm_mon + 1);
59 t->fDayOfWeek = SkToU8(syst.tm_wday);
60 t->fDay = SkToU8(syst.tm_mday);
61 t->fHour = SkToU8(syst.tm_hour)
    [all...]
  /external/skia/src/animator/
SkTime.cpp 26 t->fMonth = SkToU8(syst.wMonth);
27 t->fDayOfWeek = SkToU8(syst.wDayOfWeek);
28 t->fDay = SkToU8(syst.wDay);
29 t->fHour = SkToU8(syst.wHour);
30 t->fMinute = SkToU8(syst.wMinute);
31 t->fSecond = SkToU8(syst.wSecond);
58 t->fMonth = SkToU8(syst.tm_mon + 1);
59 t->fDayOfWeek = SkToU8(syst.tm_wday);
60 t->fDay = SkToU8(syst.tm_mday);
61 t->fHour = SkToU8(syst.tm_hour)
    [all...]
  /external/skia/legacy/src/core/
SkPathEffect.cpp 75 fStyle(SkToU8(paint.getStyle())), fJoin(SkToU8(paint.getStrokeJoin())),
76 fCap(SkToU8(paint.getStrokeCap())) {
81 : fWidth(width), fMiter(miter), fStyle(SkToU8(style)),
82 fJoin(SkToU8(join)), fCap(SkToU8(cap)) {
SkBlitter_A8.cpp 45 device[i] = SkToU8(srcA + SkAlphaMul(device[i], scale));
74 device[i] = SkToU8(sa + SkAlphaMul(device[i], scale));
106 if (bw & 0x80) dst[0] = SkToU8(sa + SkAlphaMul(dst[0], dst_scale));
107 if (bw & 0x40) dst[1] = SkToU8(sa + SkAlphaMul(dst[1], dst_scale));
108 if (bw & 0x20) dst[2] = SkToU8(sa + SkAlphaMul(dst[2], dst_scale));
109 if (bw & 0x10) dst[3] = SkToU8(sa + SkAlphaMul(dst[3], dst_scale));
110 if (bw & 0x08) dst[4] = SkToU8(sa + SkAlphaMul(dst[4], dst_scale));
111 if (bw & 0x04) dst[5] = SkToU8(sa + SkAlphaMul(dst[5], dst_scale));
112 if (bw & 0x02) dst[6] = SkToU8(sa + SkAlphaMul(dst[6], dst_scale));
113 if (bw & 0x01) dst[7] = SkToU8(sa + SkAlphaMul(dst[7], dst_scale))
    [all...]
SkProcSpriteBlitter.cpp 17 : SkSpriteBlitter(source), fProc(proc), fSrcShift(SkToU8(srcShift)), fDstShift(SkToU8(dstShift)) {}
SkDebug.cpp 20 uint8_t SkToU8(size_t x)
SkAlphaRuns.cpp 95 alpha[x] = SkToU8(tmp - (tmp >> 8)); // was (tmp >> 7), but that seems wrong if we're trying to catch 256
110 alpha[0] = SkToU8(alpha[0] + maxValue);
124 alpha[0] = SkToU8(alpha[0] + stopAlpha);
  /external/skia/legacy/src/views/
SkTagList.h 29 SkTagList(U8CPU tag) : fTag(SkToU8(tag))
SkStackViewLayout.cpp 23 fOrient = SkToU8(ori);
45 fPack = SkToU8(pack);
51 fAlign = SkToU8(align);
56 fRound = SkToU8(r);
  /external/skia/src/core/
SkBlitter_A8.cpp 45 device[i] = SkToU8(srcA + SkAlphaMul(device[i], scale));
74 device[i] = SkToU8(sa + SkAlphaMul(device[i], scale));
106 if (bw & 0x80) dst[0] = SkToU8(sa + SkAlphaMul(dst[0], dst_scale));
107 if (bw & 0x40) dst[1] = SkToU8(sa + SkAlphaMul(dst[1], dst_scale));
108 if (bw & 0x20) dst[2] = SkToU8(sa + SkAlphaMul(dst[2], dst_scale));
109 if (bw & 0x10) dst[3] = SkToU8(sa + SkAlphaMul(dst[3], dst_scale));
110 if (bw & 0x08) dst[4] = SkToU8(sa + SkAlphaMul(dst[4], dst_scale));
111 if (bw & 0x04) dst[5] = SkToU8(sa + SkAlphaMul(dst[5], dst_scale));
112 if (bw & 0x02) dst[6] = SkToU8(sa + SkAlphaMul(dst[6], dst_scale));
113 if (bw & 0x01) dst[7] = SkToU8(sa + SkAlphaMul(dst[7], dst_scale))
    [all...]
SkProcSpriteBlitter.cpp 17 : SkSpriteBlitter(source), fProc(proc), fSrcShift(SkToU8(srcShift)), fDstShift(SkToU8(dstShift)) {}
SkDebug.cpp 20 uint8_t SkToU8(size_t x)
SkStroke.h 37 void setDoFill(bool doFill) { fDoFill = SkToU8(doFill); }
SkAlphaRuns.cpp 95 alpha[x] = SkToU8(tmp - (tmp >> 8)); // was (tmp >> 7), but that seems wrong if we're trying to catch 256
110 alpha[0] = SkToU8(alpha[0] + maxValue);
124 alpha[0] = SkToU8(alpha[0] + stopAlpha);
  /external/skia/src/views/
SkTagList.h 29 SkTagList(U8CPU tag) : fTag(SkToU8(tag))
  /external/skia/include/utils/
SkInterpolator.h 46 fFlags = SkToU8((fFlags & ~kMirror) | (int)mirror);
59 fFlags = SkToU8((fFlags & ~kReset) | (int)reset);
  /external/skia/legacy/include/utils/
SkInterpolator.h 46 fFlags = SkToU8((fFlags & ~kMirror) | (int)mirror);
59 fFlags = SkToU8((fFlags & ~kReset) | (int)reset);
  /external/skia/legacy/include/core/
SkStroke.h 41 void setDoFill(bool doFill) { fDoFill = SkToU8(doFill); }
  /external/skia/include/core/
SkDeviceProperties.h 82 Geometry ret = { SkToU8(orientation | layout) };
87 Geometry ret = { SkToU8(orientation | layout) };
  /external/skia/legacy/src/effects/
SkBlurMask.cpp 134 *dst++ = SkToU8(tmp * scale >> 24);
157 *dst++ = SkToU8(tmp * scale >> 24);
204 *dst++ = SkToU8(tmp * scale >> 24);
221 *dst++ = SkToU8(tmp * scale >> 24);
223 *dst++ = SkToU8(tmp * scale >> 24);
225 *dst++ = SkToU8(tmp * scale >> 24);
227 *dst++ = SkToU8(tmp * scale >> 24);
239 *dst++ = SkToU8(tmp * scale >> 24);
253 *dst++ = SkToU8(tmp * scale >> 24);
310 *dst++ = SkToU8((outer_sum * outer_scal
    [all...]

Completed in 5005 milliseconds

1 2 3 4 5