Lines Matching refs:error

131 /** @brief The high default error used to initialize error trackers. */
283 /** @brief The error-weighted average color in the partition. */
286 /** @brief The dominant error-weighted direction in the partition. */
783 /** @brief The relative error significance of the color channels. */
920 /** @brief The ideal weight error scaling for each texel; may be undecimated or decimated. */
991 /** @brief The cumulative error for quantized weights for each block mode. */
1063 /** @brief The block is an error block, and will return error color or NaN. */
1108 /** @brief The error of the current encoding; valid for @c NONCONST blocks. */
1515 * @brief Compute the RGB error for uncorrelated and same chroma projections.
1519 * is used to assess the error from using an uncorrelated color representation. The other line goes
1520 * through (0,0,0) and is used to assess the error from using an RGBS color representation.
1522 * This function computes the squared error when using these two representations.
1527 * @param[out] uncor_error The cumulative error for using the uncorrelated line.
1528 * @param[out] samec_error The cumulative error for using the same chroma line.
1538 * @brief Compute the RGBA error for uncorrelated and same chroma projections.
1542 * is used to assess the error from using an uncorrelated color representation. The other line goes
1543 * through (0,0,0,1) and is used to assess the error from using an RGBS color representation.
1545 * This function computes the squared error when using these two representations.
1552 * @param[out] uncor_error The cumulative error for using the uncorrelated line.
1553 * @param[out] samec_error The cumulative error for using the same chroma line.
1728 * defines an exact position on the partition color line. We can then use these to assess the error
1744 * defines an exact position on the partition color line. We can then use these to assess the error
1769 * weight if it helps to reduce error.
1804 * @brief Compute the error of a decimated weight set for 1 plane.
1807 * error for decimated weight grids where weights are stored at a lower resolution. This function
1808 * computes the error of the reduced grid, compared to the full grid.
1814 * @return The accumulated error.
1822 * @brief Compute the error of a decimated weight set for 2 planes.
1825 * error for decimated weight grids where weights are stored at a lower resolution. This function
1826 * computes the error of the reduced grid, compared to the full grid.
1834 * @return The accumulated error.
2112 * @brief Compute the error between a symbolic block and the original input data.
2123 * @return Returns the computed error, or a negative value if the encoding
2133 * @brief Compute the error between a symbolic block and the original input data.
2144 * @return Returns the computed error, or a negative value if the encoding
2154 * @brief Compute the error between a symbolic block and the original input data.
2165 * @return Returns the computed error, or a negative value if the encoding
2178 * previously flagged as an error block if an error color it to be encoded.
2193 * flagged as an error block if the encoding is invalid.
2222 int error = 0;
2231 error = posix_memalign(&ptr, real_align, size);
2234 if (error || (!ptr))