Home | History | Annotate | Download | only in core

Lines Matching defs:xptr

260 static void fill_sequential(uint16_t xptr[], int start, int count) {
262 if (reinterpret_cast<intptr_t>(xptr) & 0x2) {
263 *xptr++ = start++;
267 uint32_t* xxptr = reinterpret_cast<uint32_t*>(xptr);
278 xptr = reinterpret_cast<uint16_t*>(xxptr);
282 *xptr++ = start++;
286 *xptr++ = start++;
315 uint16_t* xptr = reinterpret_cast<uint16_t*>(xy);
324 memset(xptr, 0, n * sizeof(uint16_t));
329 xptr += n;
339 fill_sequential(xptr, xpos, n);
344 xptr += n;
348 sk_memset16(xptr, width - 1, count);
363 uint16_t* xptr = reinterpret_cast<uint16_t*>(xy);
369 fill_sequential(xptr, start, n);
370 xptr += n;
374 fill_sequential(xptr, 0, width);
375 xptr += width;
380 fill_sequential(xptr, 0, count);
384 static void fill_backwards(uint16_t xptr[], int pos, int count) {
387 xptr[i] = pos--;
403 uint16_t* xptr = reinterpret_cast<uint16_t*>(xy);
420 fill_sequential(xptr, start, n);
422 fill_backwards(xptr, start, n);
425 xptr += n;
430 fill_sequential(xptr, 0, width);
432 fill_backwards(xptr, width - 1, width);
435 xptr += width;
441 fill_sequential(xptr, 0, count);
443 fill_backwards(xptr, width - 1, count);