Lines Matching defs:order
243 int *order = av_malloc_array(FF_ARRAY_ELEMS(section->fields), sizeof(*order));
245 if (!order)
248 order[i] = i;
251 order[i++] = -1;
252 return order;
259 int *order = ctx->field_order[ctx->current_section];
279 order = ctx->field_order[ctx->current_section];
284 if (section->format_header && !order) {
291 if (av_reallocp_array(&order, (*number + 1), sizeof(*order)) != 0)
294 order[*number] = -1;
297 order[*number] = i;
303 ctx->field_order[ctx->current_section] = order;
314 if (!order) {
315 order = get_default_field_orders(section, number);
316 if (!order)
318 ctx->field_order[ctx->current_section] = order;
326 if (order[i] >= 0) {
327 ASSFieldType type = section->fields[order[i]].type;
328 ptr = struct_ptr + section->fields[order[i]].offset;