Searched refs:max_input (Results 1 – 4 of 4) sorted by relevance
/external/libpng/contrib/tools/ |
D | makesRGB.c | 40 static const unsigned int max_input = 255*65535; variable 45 return sRGB_from_linear(l/max_input); in fsRGB() 306 for (i=0; i <= max_input; ++i) in main() 385 min_error, max_error, error_count, (100.*error_count)/max_input); in main()
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | inv_txfm_sse2.c | 3514 __m128i temp_mm, min_input, max_input; in vpx_highbd_idct4x4_16_add_sse2() local 3532 max_input = _mm_max_epi16(inptr[0], inptr[1]); in vpx_highbd_idct4x4_16_add_sse2() 3534 max_input = _mm_cmpgt_epi16(max_input, max); in vpx_highbd_idct4x4_16_add_sse2() 3536 temp_mm = _mm_or_si128(max_input, min_input); in vpx_highbd_idct4x4_16_add_sse2() 3544 max_input = _mm_max_epi16(inptr[0], inptr[1]); in vpx_highbd_idct4x4_16_add_sse2() 3546 max_input = _mm_cmpgt_epi16(max_input, max); in vpx_highbd_idct4x4_16_add_sse2() 3548 temp_mm = _mm_or_si128(max_input, min_input); in vpx_highbd_idct4x4_16_add_sse2() 3629 __m128i min_input, max_input, temp1, temp2, sign_bits; in vpx_highbd_idct8x8_64_add_sse2() local 3645 max_input = _mm_max_epi16(inptr[0], inptr[1]); in vpx_highbd_idct8x8_64_add_sse2() 3648 max_input = _mm_max_epi16(max_input, inptr[i]); in vpx_highbd_idct8x8_64_add_sse2() [all …]
|
/external/webrtc/webrtc/modules/audio_processing/aec/ |
D | aec_core_neon.c | 349 const float32x4_t max_input = vdupq_n_f32(129.f); in vpowq_f32() local 351 const float32x4_t x_min = vminq_f32(b_log2_a, max_input); in vpowq_f32()
|
D | aec_core_sse2.c | 330 static const ALIGN16_BEG float max_input[4] ALIGN16_END = {129.f, 129.f, in mm_pow_ps() local 334 const __m128 x_min = _mm_min_ps(b_log2_a, *((__m128*)max_input)); in mm_pow_ps()
|