Lines Matching defs:width

69               unsigned width, unsigned height, unsigned depth,
82 width, height,
99 unsigned width,
107 int blockwidth = desc->block.width;
116 width = (width + blockwidth - 1)/blockwidth;
121 width_size = width * blocksize;
137 for (j = 0; j < width; j++)
144 util_memset32(dst, uc->ui[0], width);
150 util_memset64(dst, ((uint64_t *)uc)[0], width);
157 for (j = 0; j < width; j++) {
176 unsigned width,
186 x, y, width, height, uc);
197 * width, height. If copying uncompressed -> compressed, the dest region
198 * is expanded by the block width, height. See GL_ARB_copy_image.
235 dst_box.width = src_box.width;
251 dst_box.width /= src_bw;
258 dst_box.width *= dst_bw;
282 assert(src_box.x + src_box.width <= (int)u_minify(src->width0, src_level));
284 assert(dst_box.x + dst_box.width <= (int)u_minify(dst->width0, dst_level));
288 assert((src_box.width / src_bw) * (src_box.height / src_bh) * src_bs ==
289 (dst_box.width / dst_bw) * (dst_box.height / dst_bh) * dst_bs);
315 memcpy(dst_map, src_map, src_box.width);
348 src_box.width, src_box.height, src_box.depth,
366 unsigned width, unsigned height, unsigned depth)
376 0, 0, 0, width, height, depth, &uc);
386 unsigned width, unsigned height, unsigned depth)
396 width, height, depth,
403 width, height, depth);
425 unsigned width, unsigned height)
442 w = width * pixstride;
451 color, width, height, 1);
459 dst->u.tex.first_layer, width, height, depth);
469 unsigned width,
477 if(dst_stride == width)
478 memset(dst_map, (uint8_t) zstencil, height * width);
481 memset(dst_map, (uint8_t) zstencil, width);
490 for (j = 0; j < width; j++)
498 util_memset32(dst_map, (uint32_t)zstencil, width);
514 for (j = 0; j < width; j++) {
525 util_memset64(dst_map, zstencil, width);
539 for (j = 0; j < width; j++) {
560 unsigned width,
569 width, height, zstencil);
581 unsigned width, unsigned height, unsigned depth)
598 width, height, depth, &dst_trans);
607 dst_trans->layer_stride, width, height,
647 box->width, box->height, box->depth);
654 box->width, box->height, box->depth);
673 unsigned width, unsigned height)
687 width, height, max_layer + 1);
698 unsigned width = 1, height = 1, depth = 1;
702 width = res->width0;
707 width = u_minify(res->width0, level);
713 width = u_minify(res->width0, level);
718 width = u_minify(res->width0, level);
723 width = u_minify(res->width0, level);
728 width = u_minify(res->width0, level);
733 width = u_minify(res->width0, level);
738 width = u_minify(res->width0, level);
748 box->x + box->width <= (int) width &&
806 assert(blit->dst.box.width >= 1);
811 if (blit->src.box.width != blit->dst.box.width ||