Searched refs:SkToInt (Results 1 - 25 of 62) sorted by relevance

123

/external/chromium_org/third_party/skia/src/core/
H A DSkPackBits.cpp199 count = SkToInt(stop - src);
221 dst = flush_same16(dst, value, SkToInt(s - src));
230 dst = flush_diff16(dst, src, SkToInt(s - src));
242 count = SkToInt(stop - src);
263 dst = flush_same8(dst, value, SkToInt(s - src));
274 dst = flush_diff8(dst, src, SkToInt(s - src));
301 return SkToInt(dst - origDst);
322 return SkToInt(dst - origDst);
H A DSkFont.cpp76 count = SkUTF16_CountUnichars((const uint16_t*)text, SkToInt(byteLength >> 1));
79 count = SkToInt(byteLength >> 2);
82 count = SkToInt(byteLength >> 1);
H A DSkDebug.cpp44 int SkToInt(intmax_t x) { function
H A DSkRegionPriv.h32 return SkToInt((curr - runs) >> 1);
216 int runCount = SkToInt(runs - this->writable_runs() + 1);
H A DSkError.cpp133 int string_left = SkToInt(ERROR_STRING_LENGTH - strlen(str));
H A DSkMetaData.cpp94 (void)this->set(name, value, sizeof(char), kString_Type, SkToInt(strlen(value) + 1));
108 (void)this->set(name, data, sizeof(char), kData_Type, SkToInt(byteCount));
H A DSkPictureData.cpp426 const int count = SkToInt(size);
492 const int count = SkToInt(size);
501 const int count = SkToInt(size);
/external/skia/src/core/
H A DSkPackBits.cpp199 count = SkToInt(stop - src);
221 dst = flush_same16(dst, value, SkToInt(s - src));
230 dst = flush_diff16(dst, src, SkToInt(s - src));
242 count = SkToInt(stop - src);
263 dst = flush_same8(dst, value, SkToInt(s - src));
274 dst = flush_diff8(dst, src, SkToInt(s - src));
301 return SkToInt(dst - origDst);
322 return SkToInt(dst - origDst);
H A DSkFont.cpp76 count = SkUTF16_CountUnichars((const uint16_t*)text, SkToInt(byteLength >> 1));
79 count = SkToInt(byteLength >> 2);
82 count = SkToInt(byteLength >> 1);
H A DSkDebug.cpp44 int SkToInt(intmax_t x) { function
H A DSkRegionPriv.h32 return SkToInt((curr - runs) >> 1);
216 int runCount = SkToInt(runs - this->writable_runs() + 1);
H A DSkError.cpp133 int string_left = SkToInt(ERROR_STRING_LENGTH - strlen(str));
H A DSkMetaData.cpp94 (void)this->set(name, value, sizeof(char), kString_Type, SkToInt(strlen(value) + 1));
108 (void)this->set(name, data, sizeof(char), kData_Type, SkToInt(byteCount));
/external/chromium_org/third_party/skia/gm/
H A Dgetpostextpath.cpp40 int len = SkToInt(strlen(text));
/external/skia/gm/
H A Dgetpostextpath.cpp40 int len = SkToInt(strlen(text));
/external/chromium_org/third_party/skia/samplecode/
H A DSampleHairline.cpp75 if (!check_zeros(bm.getAddr32(i, 0), bm.height(), SkToInt(rb >> 2))) {
80 SkToInt(rb >> 2))) {
/external/chromium_org/third_party/skia/src/utils/mac/
H A DSkCreateCGImageRef.cpp285 const int width = scaleToFit ? scaleToFit->width() : SkToInt(CGImageGetWidth(image));
286 const int height = scaleToFit ? scaleToFit->height() : SkToInt(CGImageGetHeight(image));
/external/skia/samplecode/
H A DSampleHairline.cpp75 if (!check_zeros(bm.getAddr32(i, 0), bm.height(), SkToInt(rb >> 2))) {
80 SkToInt(rb >> 2))) {
/external/skia/src/ports/
H A DSkImageDecoder_CG.cpp69 const int width = SkToInt(CGImageGetWidth(image));
70 const int height = SkToInt(CGImageGetHeight(image));
/external/skia/src/utils/mac/
H A DSkCreateCGImageRef.cpp285 const int width = scaleToFit ? scaleToFit->width() : SkToInt(CGImageGetWidth(image));
286 const int height = scaleToFit ? scaleToFit->height() : SkToInt(CGImageGetHeight(image));
/external/chromium_org/third_party/skia/tests/
H A DRecordReplaceDrawTest.cpp78 sk_memset32((SkPMColor*)addr.get(), pmcolor, SkToInt(size >> 2));
/external/chromium_org/third_party/skia/src/ports/
H A DSkImageDecoder_CG.cpp120 const int width = SkToInt(CGImageGetWidth(image));
121 const int height = SkToInt(CGImageGetHeight(image));
/external/chromium_org/third_party/skia/src/utils/
H A DSkLuaCanvas.cpp60 this->pushArrayU16((const uint16_t*)text, SkToInt(length >> 1),
173 lua.pushArrayPoint(pts, SkToInt(count), "points");
/external/skia/src/utils/
H A DSkLuaCanvas.cpp60 this->pushArrayU16((const uint16_t*)text, SkToInt(length >> 1),
173 lua.pushArrayPoint(pts, SkToInt(count), "points");
/external/chromium_org/third_party/skia/include/core/
H A DSkTypes.h244 SK_API int SkToInt(intmax_t);
254 #define SkToInt(x) ((int)(x)) macro

Completed in 368 milliseconds

123