Home
last modified time | relevance | path

Searched refs:U16CPU (Results 1 – 12 of 12) sorted by relevance

/external/skia/include/core/
DSkColorPriv.h206 static inline U16CPU SkAlphaMulInv256(U16CPU value, U16CPU alpha256) { in SkAlphaMulInv256()
273 static inline uint32_t SkExpand_rgb_16(U16CPU c) { in SkExpand_rgb_16()
285 static inline U16CPU SkCompact_rgb_16(uint32_t c) { in SkCompact_rgb_16()
294 static inline U16CPU SkAlphaMulRGB16(U16CPU c, unsigned scale) { in SkAlphaMulRGB16()
306 static inline U16CPU SkBlend32_RGB16(uint32_t src_expand, uint16_t dst, unsigned scale) { in SkBlend32_RGB16()
316 static inline U16CPU SkBlendRGB16(U16CPU src, U16CPU dst, int srcScale) { in SkBlendRGB16()
342 static inline U16CPU SkRGB16Add(U16CPU a, U16CPU b) { in SkRGB16Add()
633 static inline U16CPU SkPixel32ToPixel16(SkPMColor c) { in SkPixel32ToPixel16()
640 static inline U16CPU SkPack888ToRGB16(U8CPU r, U8CPU g, U8CPU b) { in SkPack888ToRGB16()
686 static inline U16CPU SkSrcOver32To16(SkPMColor src, uint16_t dst) { in SkSrcOver32To16()
[all …]
DSkMath.h103 static inline unsigned SkMul16ShiftRound(U16CPU a, U16CPU b, int shift) { in SkMul16ShiftRound()
115 static inline U8CPU SkMulDiv255Round(U16CPU a, U16CPU b) { in SkMulDiv255Round()
DSkStream.h202 bool write16(U16CPU value) { in write16()
DSkTypes.h203 typedef unsigned U16CPU; typedef
/external/skia/src/core/
DSkBitmapProcState.h78 typedef U16CPU (*FixedTileProc)(SkFixed); // returns 0..0xFFFF
79 typedef U16CPU (*IntTileProc)(int value, int count); // returns 0..count-1
170 static inline uint32_t pack_two_shorts(U16CPU pri, U16CPU sec) { in pack_two_shorts()
DSkBitmapProcState_matrixProcs.cpp148 static inline U16CPU fixed_clamp(SkFixed x) { in fixed_clamp()
158 static inline U16CPU fixed_repeat(SkFixed x) { in fixed_repeat()
162 static inline U16CPU fixed_mirror(SkFixed x) { in fixed_mirror()
179 static inline U16CPU int_clamp(int x, int n) { in int_clamp()
189 static inline U16CPU int_repeat(int x, int n) { in int_repeat()
193 static inline U16CPU int_mirror(int x, int n) { in int_mirror()
DSkPath.cpp722 void SkPath::incReserve(U16CPU inc) { in incReserve()
/external/skia/src/ports/
DSkScalerContext_win_dw.cpp695 const U16CPU width = glyph.fWidth; in grayscale_to_a8()
698 for (U16CPU y = 0; y < glyph.fHeight; y++) { in grayscale_to_a8()
699 for (U16CPU i = 0; i < width; i++) { in grayscale_to_a8()
710 const U16CPU width = glyph.fWidth; in rgb_to_a8()
713 for (U16CPU y = 0; y < glyph.fHeight; y++) { in rgb_to_a8()
714 for (U16CPU i = 0; i < width; i++) { in rgb_to_a8()
728 const U16CPU width = glyph.fWidth; in rgb_to_lcd16()
731 for (U16CPU y = 0; y < glyph.fHeight; y++) { in rgb_to_lcd16()
732 for (U16CPU i = 0; i < width; i++) { in rgb_to_lcd16()
/external/skia/include/utils/
DSkRandom.h49 U16CPU nextU16() { return this->nextU() >> 16; } in nextU16()
/external/skia/src/views/
DSkEventSink.cpp111 SkListenersTagList(U16CPU count) : SkTagList(kListeners_SkTagList) in SkListenersTagList()
/external/skia/src/pdf/
DSkPDFBitmap.cpp206 U16CPU color565 = *src++; in bitmap_to_pdf_pixels()
/external/skia/tools/
Dsk_tool_utils.cpp180 U16CPU color16 = SkPixel32ToPixel16(pmColor); in color_to_565()