Lines Matching refs: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, const SkPMColor[]) {
101 for (int x = 0; x < width; x++) {
110 int width, int deltaSrc, int y, const SkPMColor[]) {
113 for (int x = 0; x < width; x++) {
124 int width, int deltaSrc, int, const SkPMColor[]) {
126 for (int x = 0; x < width; x++) {
136 int width, int deltaSrc, int y, const SkPMColor[]) {
139 for (int x = 0; x < width; x++) {
149 int width, int deltaSrc, int, const SkPMColor[]) {
151 for (int x = 0; x < width; x++) {
160 int width, int deltaSrc, int y, const SkPMColor[]) {
164 for (int x = 0; x < width; x++) {
174 int width, int deltaSrc, int, const SkPMColor[]) {
178 for (int x = 0; x < width; x++) {
190 int width, int deltaSrc, int y, const SkPMColor[]) {
195 for (int x = 0; x < width; x++) {
211 int width, int deltaSrc, int, const SkPMColor ctable[]) {
215 for (int x = 0; x < width; x++) {
226 int width, int deltaSrc, int, const SkPMColor ctable[]) {
229 for (int x = 0; x < width; x++) {
237 const uint8_t* SK_RESTRICT src, int width,
243 for (int x = 0; x < width; x++) {
253 const uint8_t* SK_RESTRICT src, int width,
258 for (int x = 0; x < width; x++) {
268 const uint8_t* SK_RESTRICT src, int width,
275 for (int x = 0; x < width; x++) {
286 int width, int deltaSrc, int, const SkPMColor[]) {
288 memcpy(dstRow, src, width);
291 for (int x = 0; x < width; x++) {
303 SkScaledBitmapSampler::SkScaledBitmapSampler(int width, int height,
305 if (width <= 0 || height <= 0) {
310 fScaledWidth = width;
317 int dx = SkMin32(sampleSize, width);
320 fScaledWidth = width / dx;
329 SkASSERT(fX0 >= 0 && fX0 < width);
335 SkASSERT(fDX > 0 && (fX0 + fDX * (fScaledWidth - 1)) < width);