HomeSort by relevance Sort by last modified time
    Searched refs:preshift (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libstagefright/codecs/aacenc/src/
sf_estim.c 64 Word32 preshift, postshift; local
68 preshift = norm_l(x) - (INT_BITS-1-FF_SQRT_BITS);
69 postshift = preshift >> 1;
70 preshift = postshift << 1;
72 if(preshift >= 0)
73 y = x << preshift; /* now 1/4 <= y < 1 */
75 y = x >> (-preshift);
  /external/opencv3/modules/imgproc/src/
imgwarp.cpp 555 __m128i preshift = _mm_set1_epi32(shiftval);
570 t0 = _mm_add_epi32(_mm_cvtps_epi32(x0), preshift);
571 t2 = _mm_add_epi32(_mm_cvtps_epi32(x1), preshift);
581 t1 = _mm_add_epi32(_mm_cvtps_epi32(x0), preshift);
582 t2 = _mm_add_epi32(_mm_cvtps_epi32(x1), preshift);
600 t0 = _mm_add_epi32(_mm_cvtps_epi32(x0), preshift);
601 t2 = _mm_add_epi32(_mm_cvtps_epi32(x1), preshift);
611 t1 = _mm_add_epi32(_mm_cvtps_epi32(x0), preshift);
612 t2 = _mm_add_epi32(_mm_cvtps_epi32(x1), preshift);
627 t0 = _mm_add_epi32(_mm_cvtps_epi32(x0), preshift);
    [all...]

Completed in 131 milliseconds