Lines Matching defs:height
247 /* returns alignment in pixels for pitch/height/depth and bytes for base */
263 /* technically tile_width/_height for pitch/height */
353 u32 height, height_align, pitch, pitch_align, depth_align;
373 height = slice_tile_max / pitch;
374 if (height > 8192)
375 height = 8192;
399 if (height > 7)
400 height &= ~0x7;
416 if (!IS_ALIGNED(height, height_align)) {
417 dev_warn(p->dev, "%s:%d cb height (%d, 0x%x, %d) invalid\n",
418 __func__, __LINE__, height, height_align, array_mode);
428 tmp = r600_fmt_get_nblocksy(format, height) * r600_fmt_get_nblocksx(format, pitch) *
444 /* it rounds up height too far for slice tile max but the BO is smaller */
454 pitch, height, r600_fmt_get_nblocksx(format, pitch),
455 r600_fmt_get_nblocksy(format, height),
461 tmp = (height * pitch) >> 6;
521 u32 height = 8192;
569 height = slice_tile_max / pitch;
570 if (height > 8192)
571 height = 8192;
590 height &= ~0x7;
606 if (!IS_ALIGNED(height, height_align)) {
607 dev_warn(p->dev, "%s:%d db height (%d, 0x%x, %d) invalid\n",
608 __func__, __LINE__, height, height_align, array_mode);
646 nby = height;
1312 /* force 8x8 htile width and height */
1412 unsigned width, height, depth, size;
1429 height = r600_mip_minify(h0, i);
1430 nby = r600_fmt_get_nblocksy(format, height);
1562 /* XXX check height as well... */