Searched refs:dot_s (Results 1 - 6 of 6) sorted by relevance
/third_party/astc-encoder/Source/ |
H A D | astcenc_compress_symbolic.cpp | 193 float error_base0 = dot_s(color_diff0 * color_diff0, error_weight); in realign_weights_undecimated() 194 float error_base1 = dot_s(color_diff1 * color_diff1, error_weight); in realign_weights_undecimated() 195 float error_base2 = dot_s(color_diff2 * color_diff2, error_weight); in realign_weights_undecimated() 196 float error_base3 = dot_s(color_diff3 * color_diff3, error_weight); in realign_weights_undecimated() 198 float error_down0 = dot_s(color_diff_down0 * color_diff_down0, error_weight); in realign_weights_undecimated() 199 float error_down1 = dot_s(color_diff_down1 * color_diff_down1, error_weight); in realign_weights_undecimated() 200 float error_down2 = dot_s(color_diff_down2 * color_diff_down2, error_weight); in realign_weights_undecimated() 201 float error_down3 = dot_s(color_diff_down3 * color_diff_down3, error_weight); in realign_weights_undecimated() 203 float error_up0 = dot_s(color_diff_up0 * color_diff_up0, error_weight); in realign_weights_undecimated() 204 float error_up1 = dot_s(color_diff_up in realign_weights_undecimated() [all...] |
H A D | astcenc_find_best_partitioning.cpp | 84 float distance = dot_s(diff * diff, blk.channel_weight); in kmeans_init() 129 float distance = dot_s(diff * diff, blk.channel_weight); in kmeans_init() 168 float distance = dot_s(diff * diff, blk.channel_weight); in kmeans_assign() 682 uncor_error += dot_s(uncor_vector * uncor_vector, error_weights); 683 samec_error += dot_s(samec_vector * samec_vector, error_weights);
|
H A D | astcenc_ideal_endpoints_and_weights.cpp | 286 float param = dot_s(point - line.a, line.b); 602 float param = dot_s(point - line.a, line.b); 1197 return vfloat4(dot_s(mat0, vect), 1198 dot_s(mat1, vect), 1199 dot_s(mat2, vect), 1200 dot_s(mat3, vect)); 1410 if (astc::isnan(dot_s(rgbovec, rgbovec))) 1694 if (astc::isnan(dot_s(rgbo_vector, rgbo_vector)))
|
H A D | astcenc_vecmathlib_common_4.h | 319 ASTCENC_SIMD_INLINE float dot_s(vfloat4 a, vfloat4 b) in dot_s() function
|
H A D | astcenc_vecmathlib_sse_4.h | 1266 ASTCENC_SIMD_INLINE float dot_s(vfloat4 a, vfloat4 b) in dot_s() function
|
/third_party/astc-encoder/Source/UnitTest/ |
H A D | test_simd.cpp | 982 /** @brief Test vfloat4 dot_s. */ 983 TEST(vfloat4, dot_s) in TEST() 987 float r1 = dot_s(a1, b1); in TEST() 998 float r2 = dot_s(a2, b2); in TEST()
|
Completed in 13 milliseconds