Home | History | Annotate | Download | only in core

Lines Matching defs:xptr

287 static void fill_sequential(uint16_t xptr[], int start, int count) {
289 if (reinterpret_cast<intptr_t>(xptr) & 0x2) {
290 *xptr++ = start++;
294 uint32_t* xxptr = reinterpret_cast<uint32_t*>(xptr);
305 xptr = reinterpret_cast<uint16_t*>(xxptr);
309 *xptr++ = start++;
313 *xptr++ = start++;
342 uint16_t* xptr = reinterpret_cast<uint16_t*>(xy);
351 memset(xptr, 0, n * sizeof(uint16_t));
356 xptr += n;
366 fill_sequential(xptr, xpos, n);
371 xptr += n;
375 sk_memset16(xptr, width - 1, count);
390 uint16_t* xptr = reinterpret_cast<uint16_t*>(xy);
396 fill_sequential(xptr, start, n);
397 xptr += n;
401 fill_sequential(xptr, 0, width);
402 xptr += width;
407 fill_sequential(xptr, 0, count);
411 static void fill_backwards(uint16_t xptr[], int pos, int count) {
414 xptr[i] = pos--;
430 uint16_t* xptr = reinterpret_cast<uint16_t*>(xy);
447 fill_sequential(xptr, start, n);
449 fill_backwards(xptr, start, n);
452 xptr += n;
457 fill_sequential(xptr, 0, width);
459 fill_backwards(xptr, width - 1, width);
462 xptr += width;
468 fill_sequential(xptr, 0, count);
470 fill_backwards(xptr, width - 1, count);