Lines Matching refs:status
369 astcenc_error status;
371 status = validate_profile(config.profile);
372 if (status != ASTCENC_SUCCESS)
374 return status;
377 status = validate_flags(config.profile, config.flags);
378 if (status != ASTCENC_SUCCESS)
380 return status;
383 status = validate_block_size(config.block_x, config.block_y, config.block_z);
384 if (status != ASTCENC_SUCCESS)
386 return status;
445 astcenc_error status;
447 status = validate_cpu_float();
448 if (status != ASTCENC_SUCCESS)
450 return status;
459 status = validate_block_size(block_x, block_y, block_z);
460 if (status != ASTCENC_SUCCESS)
462 return status;
604 status = validate_flags(profile, flags);
605 if (status != ASTCENC_SUCCESS)
607 return status;
662 astcenc_error status;
665 status = validate_cpu_float();
666 if (status != ASTCENC_SUCCESS)
668 return status;
701 status = validate_config(ctx->config);
702 if (status != ASTCENC_SUCCESS)
705 return status;
1082 astcenc_error status;
1090 status = validate_compression_swizzle(*swizzle);
1091 if (status != ASTCENC_SUCCESS)
1093 return status;
1194 astcenc_error status;
1204 status = validate_decompression_swizzle(*swizzle);
1205 if (status != ASTCENC_SUCCESS)
1207 return status;
1412 astcenc_error status
1416 switch (static_cast<int>(status))