HomeSort by relevance Sort by last modified time
    Searched refs:coeffs (Results 76 - 100 of 140) sorted by null

1 2 34 5 6

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
idctllm_sse2.asm 44 ; clear coeffs
115 ; special case when 2 blocks have 0 or 1 coeffs
133 ; Clear out coeffs
370 ; special case when 2 blocks have 0 or 1 coeffs
447 ; special case when 2 blocks have 0 or 1 coeffs
465 ; Clear out coeffs
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Translation.h 156 res.linear().diagonal() = other.coeffs();
  /external/eigen/test/
geo_eulerangles.cpp 79 q1.coeffs() = Quaternionx::Coefficients::Random().normalized();
  /external/libhevc/common/arm/
ihevc_intra_pred_chroma_planar.s 114 ldr r11, gau1_ihevc_planar_factor_addr @loads table of coeffs
154 add r12, r11, #1 @coeffs (to be reloaded after every row)
157 mov r10, #8 @increment for the coeffs
328 vld1.s8 d8, [r12], r10 @load 8 coeffs [col+1]
  /external/libvpx/libvpx/vp8/encoder/arm/armv6/
vp8_short_fdct4x4_armv6.asm 25 ; coeffs 0-3
56 ; coeffs 4-7
81 ; coeffs 8-11
106 ; coeffs 12-15
  /frameworks/av/media/img_utils/src/
DngUtils.cpp 320 const double coeffs[] = { c_0 * kCoeffs[0], local
331 coeffs);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/armv6/
vp8_short_fdct4x4_armv6.asm 25 ; coeffs 0-3
56 ; coeffs 4-7
81 ; coeffs 8-11
106 ; coeffs 12-15
  /external/libavc/common/arm/
ih264_iquant_itrans_recon_a9.s 393 vld1.u8 d0, [r2], r4 @Loading out buffer 16 coeffs
400 vqmovun.s16 d20, q10 @Getting quantized coeffs
406 vmov.u16 q14, #0x00ff @Copy lsb from qantized(long)coeffs
593 @ TRANSPOSE 8x8 coeffs to actual order
705 @ TRANSPOSE 8x8 coeffs to actual order
851 vst1.32 d0, [r2], r4 @ Magnitudes of 1st 4x4 block coeffs
853 vst1.32 d1, [r2], r4 @ Magnitudes of 1st 4x4 block coeffs
855 vst1.32 d2, [r2], r4 @ Magnitudes of 1st 4x4 block coeffs
857 vst1.32 d3, [r2], r4 @ Magnitudes of 1st 4x4 block coeffs
858 vst1.32 d4, [r2], r4 @ Magnitudes of 1st 4x4 block coeffs
    [all...]
  /hardware/intel/img/psb_video/src/
psb_overlay.c 334 double rawCoeff[MAX_TAPS * 32], coeffs[N_PHASES][MAX_TAPS]; local
367 coeffs[i][j] = rawCoeff[pos] / sum;
374 SetCoeffRegs(&coeffs[i][j], mantSize + 2, pCoeff, pos);
376 SetCoeffRegs(&coeffs[i][j], mantSize, pCoeff, pos);
388 sum += coeffs[i][j];
393 coeffs[i][tap2Fix] += diff;
396 SetCoeffRegs(&coeffs[i][tap2Fix], mantSize + 2, pCoeff, pos);
398 SetCoeffRegs(&coeffs[i][tap2Fix], mantSize, pCoeff, pos);
402 sum += coeffs[i][j];
    [all...]
  /external/opencv3/3rdparty/libwebp/dec/
frame.c 588 const int16_t* coeffs = dec->coeffs_; local
623 VP8Transform(coeffs + n * 16, dst, 0);
625 VP8TransformDC(coeffs + n * 16, dst);
635 VP8Transform(coeffs + n * 16, dst, 0);
637 VP8TransformDC(coeffs + n * 16, dst);
  /external/webp/src/dec/
frame.c 119 const int16_t* const coeffs = block->coeffs_; local
147 DoTransform(bits, coeffs + n * 16, dst);
154 DoTransform(bits, coeffs + n * 16, y_dst + kScan[n]);
164 DoUVTransform(bits_uv >> 0, coeffs + 16 * 16, u_dst);
165 DoUVTransform(bits_uv >> 8, coeffs + 20 * 16, v_dst);
  /external/opencv/cvaux/src/
cvcalibfilter.cpp 681 /* Save coeffs */
686 fprintf(f, "%15.10lf ", stereo.coeffs[i][j/3][j%3] );
736 /* Load coeffs */
741 fscanf(f, "%lf ", &(stereo.coeffs[i][j/3][j%3]) );
809 cvComputePerspectiveMap(stereo.coeffs[i], rectMap[i][0], rectMap[i][1]);
  /frameworks/av/media/libstagefright/webm/
WebmElement.cpp 391 int32_t primaries, transfer, coeffs; local
394 aspects, &primaries, &transfer, &coeffs, &fullRange);
402 colorInfo.push_back(new WebmUnsigned(kMkvMatrixCoefficients, coeffs));
  /external/libjpeg-turbo/
turbojpeg.h 550 * @param coeffs pointer to an array of transformed DCT coefficients. (NOTE:
556 * the array pointed to by <tt>coeffs</tt> as well as its offset relative to
562 * the component plane to which <tt>coeffs</tt> belongs
565 * <tt>coeffs</tt> belongs (Y, Cb, and Cr have, respectively, ID's of 0, 1,
569 * <tt>coeffs</tt> belongs. This is the same as the index of the transform
577 int (*customFilter)(short *coeffs, tjregion arrayRegion,
    [all...]
  /external/opencv3/modules/imgproc/src/
filterengine.hpp 367 void preprocess2DKernel( const Mat& kernel, std::vector<Point>& coords, std::vector<uchar>& coeffs );
imgwarp.cpp 148 static inline void interpolateLinear( float x, float* coeffs )
150 coeffs[0] = 1.f - x;
151 coeffs[1] = x;
154 static inline void interpolateCubic( float x, float* coeffs )
158 coeffs[0] = ((A*(x + 1) - 5*A)*(x + 1) + 8*A)*(x + 1) - 4*A;
159 coeffs[1] = ((A + 2)*x - (A + 3))*x*x + 1;
160 coeffs[2] = ((A + 2)*(1 - x) - (A + 3))*(1 - x)*(1 - x) + 1;
161 coeffs[3] = 1.f - coeffs[0] - coeffs[1] - coeffs[2]
    [all...]
  /external/webp/src/enc/
frame.c 232 const int c = res->coeffs[n++];
410 res.first, res.last, res.coeffs, tokens);
424 res.first, res.last, res.coeffs, tokens);
438 res.first, res.last, res.coeffs, tokens);
  /external/libvpx/libvpx/vpx_dsp/x86/
quantize_avx_x86_64.asm 43 ; Get DC and first 15 AC coeffs - in this special case, that is all.
70 ; Check if all coeffs are less than zbin. If yes, we just write zeros
241 ; get DC and first 15 AC coeffs
259 ; Check if all coeffs are less than zbin. If yes, skip forward quickly.
379 ; Check if all coeffs are less than zbin. If yes, skip this itertion.
inv_txfm_ssse3_x86_64.asm 188 ; inverse 8x8 2D-DCT transform with only first 10 coeffs non-zero
  /external/opencv3/modules/imgproc/src/opencl/
remap.cl 318 __constant float coeffs[64] =
420 __constant float * coeffs_x = coeffs + ((convert_int_rte(xf * INTER_TAB_SIZE) & (INTER_TAB_SIZE - 1)) << 1);
421 __constant float * coeffs_y = coeffs + ((convert_int_rte(yf * INTER_TAB_SIZE) & (INTER_TAB_SIZE - 1)) << 1);
  /external/opencv3/modules/java/src/
core+Core.java     [all...]
  /frameworks/av/media/libstagefright/codecs/avcdec/
SoftAVCDec.cpp 411 int32_t coeffs = s_ctl_get_vui_params_op.u1_matrix_coeffs; local
416 primaries, transfer, coeffs, fullRange, colorAspects);
  /frameworks/av/media/libstagefright/codecs/hevcdec/
SoftHEVC.cpp 211 int32_t coeffs = s_ctl_get_vui_params_op.u1_matrix_coefficients; local
216 primaries, transfer, coeffs, fullRange, colorAspects);
  /frameworks/av/media/libstagefright/codecs/mpeg2dec/
SoftMPEG2.cpp 488 int32_t coeffs = s_ctl_get_seq_info_op.u1_matrix_coefficients; local
493 primaries, transfer, coeffs, fullRange, colorAspects);
  /external/opencv3/3rdparty/libwebp/enc/
vp8enci.h 360 const int16_t* const coeffs,

Completed in 790 milliseconds

1 2 34 5 6