Home | History | Annotate | Download | only in util

Lines Matching refs:row

330             uint16_t *row = (uint16_t *)dst_map;
332 *row++ = (uint16_t) zstencil;
339 uint32_t *row = (uint32_t *)dst_map;
341 *row++ = zstencil;
356 uint32_t *row = (uint32_t *)dst_map;
358 uint32_t tmp = *row & dst_mask;
359 *row++ = tmp | (zstencil & ~dst_mask);
374 uint64_t *row = (uint64_t *)dst_map;
376 *row++ = zstencil;
389 uint64_t *row = (uint64_t *)dst_map;
391 uint64_t tmp = *row & ~src_mask;
392 *row++ = tmp | (zstencil & src_mask);