Lines Matching refs:weights
1055 alignas(ASTCENC_VECALIGN) float weights[BLOCK_MAX_TEXELS]; member
1278 uint8_t weights[BLOCK_MAX_WEIGHTS]; member
1940 const float* weights, in bilinear_infill() argument
1943 return (weights[di.texel_weights_4t[0][index]] * di.texel_weights_float_4t[0][index] + in bilinear_infill()
1944 weights[di.texel_weights_4t[1][index]] * di.texel_weights_float_4t[1][index]) + in bilinear_infill()
1945 (weights[di.texel_weights_4t[2][index]] * di.texel_weights_float_4t[2][index] + in bilinear_infill()
1946 weights[di.texel_weights_4t[3][index]] * di.texel_weights_float_4t[3][index]); in bilinear_infill()
1963 const float* weights, in bilinear_infill_2() argument
1966 return (weights[di.texel_weights_4t[0][index]] * di.texel_weights_float_4t[0][index] + in bilinear_infill_2()
1967 weights[di.texel_weights_4t[1][index]] * di.texel_weights_float_4t[1][index]); in bilinear_infill_2()
1982 const float* weights, in bilinear_infill_vla() argument
1992 vfloat weight_val0 = gatherf(weights, weight_idx0); in bilinear_infill_vla()
1993 vfloat weight_val1 = gatherf(weights, weight_idx1); in bilinear_infill_vla()
1994 vfloat weight_val2 = gatherf(weights, weight_idx2); in bilinear_infill_vla()
1995 vfloat weight_val3 = gatherf(weights, weight_idx3); in bilinear_infill_vla()
2022 const float* weights, in bilinear_infill_vla_2() argument
2030 vfloat weight_val0 = gatherf(weights, weight_idx0); in bilinear_infill_vla_2()
2031 vfloat weight_val1 = gatherf(weights, weight_idx1); in bilinear_infill_vla_2()