Lines Matching full:width
26 int width, int deltaSrc, int, const SkPMColor[]) {
28 for (int x = 0; x < width; x++) {
37 int width, int deltaSrc, int, const SkPMColor[]) {
39 for (int x = 0; x < width; x++) {
48 int width, int deltaSrc, int, const SkPMColor[]) {
51 for (int x = 0; x < width; x++) {
64 int width, int deltaSrc, int, const SkPMColor[]) {
66 for (int x = 0; x < width; x++) {
75 int width, int deltaSrc, int y, const SkPMColor[]) {
78 for (int x = 0; x < width; x++) {
87 int width, int deltaSrc, int, const SkPMColor[]) {
89 for (int x = 0; x < width; x++) {
98 int width, int deltaSrc, int y, const SkPMColor[]) {
101 for (int x = 0; x < width; x++) {
112 int width, int deltaSrc, int, const SkPMColor[]) {
114 for (int x = 0; x < width; x++) {
124 int width, int deltaSrc, int y, const SkPMColor[]) {
127 for (int x = 0; x < width; x++) {
137 int width, int deltaSrc, int, const SkPMColor[]) {
139 for (int x = 0; x < width; x++) {
148 int width, int deltaSrc, int y, const SkPMColor[]) {
152 for (int x = 0; x < width; x++) {
162 int width, int deltaSrc, int, const SkPMColor[]) {
166 for (int x = 0; x < width; x++) {
178 int width, int deltaSrc, int y, const SkPMColor[]) {
183 for (int x = 0; x < width; x++) {
199 int width, int deltaSrc, int, const SkPMColor ctable[]) {
203 for (int x = 0; x < width; x++) {
214 int width, int deltaSrc, int, const SkPMColor ctable[]) {
217 for (int x = 0; x < width; x++) {
225 const uint8_t* SK_RESTRICT src, int width,
231 for (int x = 0; x < width; x++) {
241 const uint8_t* SK_RESTRICT src, int width,
246 for (int x = 0; x < width; x++) {
256 const uint8_t* SK_RESTRICT src, int width,
263 for (int x = 0; x < width; x++) {
274 int width, int deltaSrc, int, const SkPMColor[]) {
276 memcpy(dstRow, src, width);
279 for (int x = 0; x < width; x++) {
291 SkScaledBitmapSampler::SkScaledBitmapSampler(int width, int height,
293 if (width <= 0 || height <= 0) {
298 fScaledWidth = width;
305 int dx = SkMin32(sampleSize, width);
308 fScaledWidth = width / dx;
317 SkASSERT(fX0 >= 0 && fX0 < width);
323 SkASSERT(fDX > 0 && (fX0 + fDX * (fScaledWidth - 1)) < width);