Lines Matching defs:width
335 * \param bw returns block width in pixels
355 * \param bw returns block width in pixels
813 _mesa_format_image_size(mesa_format format, int width,
824 const uint32_t wblocks = (width + bw - 1) / bw;
830 sz = width * height * depth * info->BytesPerBlock;
841 _mesa_format_image_size64(mesa_format format, int width,
852 const uint64_t wblocks = (width + bw - 1) / bw;
858 sz = ((uint64_t) width * (uint64_t) height *
867 _mesa_format_row_stride(mesa_format format, int width)
874 const uint32_t wblocks = (width + bw - 1) / bw;
879 const int32_t stride = width * info->BytesPerBlock;