Lines Matching defs:width
273 int width, height;
301 uint32_t width, height;
325 * @param edge_size box width/height.
384 * @param side_length glyph width/height.
438 static void init_sizes(SANMVideoContext *ctx, int width, int height)
440 ctx->width = width;
442 ctx->npixels = width * height;
444 ctx->aligned_width = FFALIGN(width, 8);
448 ctx->pitch = width;
503 init_sizes(ctx, avctx->width, avctx->height);
559 int left, int width, int height)
580 if (pos + code > width)
625 int left, int width, int height)
662 bytestream2_get_buffer(&ctx->gb, dst, width);
678 for (i = 0; i < width; i += 4) {
729 for (i = 0; i < width; i += 4) {
861 int left, int width, int height)
894 if (bytestream2_get_bytes_left(&ctx->gb) < width * height)
897 bytestream2_get_bufferu(&ctx->gb, dst, width);
902 if (bytestream2_get_bytes_left(&ctx->gb) < ((width + 1) >> 1) * ((height + 1) >> 1))
905 for (i = 0; i < width; i += 2) {
917 for (i = 0; i < width; i += 8)
964 if (ctx->width < left + w || ctx->height < top + h) {
965 int ret = ff_set_dimensions(ctx->avctx, FFMAX(left + w, ctx->width),
969 init_sizes(ctx, FFMAX(left + w, ctx->width),
997 if (bytestream2_get_bytes_left(&ctx->gb) < ctx->width * ctx->height * 2) {
1002 for (x = 0; x < ctx->width; x++)
1170 mx = index % ctx->width;
1171 my = index / ctx->width;
1331 hdr->width = bytestream2_get_le32u(&ctx->gb);
1334 if (hdr->width != ctx->width || hdr->height != ctx->height) {