HomeSort by relevance Sort by last modified time
    Searched refs:coefficients (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/eigen/doc/special_examples/
Tutorial_sparse_example.cpp 7 void buildProblem(std::vector<T>& coefficients, Eigen::VectorXd& b, int n);
16 std::vector<T> coefficients; // list of non-zeros coefficients local
18 buildProblem(coefficients, b, n);
21 A.setFromTriplets(coefficients.begin(), coefficients.end());
Tutorial_sparse_example_details.cpp 19 void buildProblem(std::vector<T>& coefficients, Eigen::VectorXd& b, int n)
28 insertCoefficient(id, i-1,j, -1, coefficients, b, boundary);
29 insertCoefficient(id, i+1,j, -1, coefficients, b, boundary);
30 insertCoefficient(id, i,j-1, -1, coefficients, b, boundary);
31 insertCoefficient(id, i,j+1, -1, coefficients, b, boundary);
32 insertCoefficient(id, i,j, 4, coefficients, b, boundary);
  /external/chromium_org/third_party/webrtc/common_audio/
fir_filter.cc 25 FIRFilterC(const float* coefficients,
37 FIRFilter* FIRFilter::Create(const float* coefficients,
40 if (!coefficients || coefficients_length <= 0 || max_input_length <= 0) {
50 new FIRFilterSSE2(coefficients, coefficients_length, max_input_length);
55 new FIRFilterSSE2(coefficients, coefficients_length, max_input_length);
57 filter = new FIRFilterC(coefficients, coefficients_length);
63 new FIRFilterNEON(coefficients, coefficients_length, max_input_length);
68 new FIRFilterNEON(coefficients, coefficients_length, max_input_length);
70 filter = new FIRFilterC(coefficients, coefficients_length);
74 filter = new FIRFilterC(coefficients, coefficients_length)
    [all...]
fir_filter.h 21 // Creates a filter with the given coefficients. All initial state values will
27 static FIRFilter* Create(const float* coefficients,
fir_filter_neon.h 22 FIRFilterNEON(const float* coefficients,
fir_filter_sse.h 22 FIRFilterSSE2(const float* coefficients,
fir_filter_neon.cc 21 FIRFilterNEON::FIRFilterNEON(const float* coefficients,
32 // Add zeros at the end of the coefficients.
35 // The coefficients are reversed to compensate for the order in which the
38 coefficients_[i + padding] = coefficients[coefficients_length - i - 1];
fir_filter_sse.cc 21 FIRFilterSSE2::FIRFilterSSE2(const float* coefficients,
32 // Add zeros at the end of the coefficients.
35 // The coefficients are reversed to compensate for the order in which the
38 coefficients_[i + padding] = coefficients[coefficients_length - i - 1];
  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
filter_ar_fast_q12.c 18 const int16_t* __restrict coefficients,
32 sum += coefficients[j] * data_out[i - j];
35 output = coefficients[0] * data_in[i];
filter_ar_fast_q12_armv7.S 26 @ r2: &coefficients[0]
34 @ r10: coefficients[j]
36 @ r12: &coefficients[j]
51 sub r12, #4 @ &coefficients[coefficients_length - 2]
63 ldr r10, [r12], #-4 @ coefficients[j - 1], coefficients[j]
65 smlatt r8, r10, r5, r8 @ sum2 += coefficients[j] * data_out[i - j + 1];
66 smlatb r7, r10, r5, r7 @ sum1 += coefficients[j] * data_out[i - j];
67 smlabt r7, r10, r5, r7 @ coefficients[j - 1] * data_out[i - j + 1];
69 smlabb r8, r10, r5, r8 @ coefficients[j - 1] * data_out[i - j + 2]
    [all...]
filter_ar_fast_q12_mips.c 16 const int16_t* __restrict coefficients,
35 "lh %[coef0], 0(%[coefficients]) \n\t"
42 " addu %[coefptr], %[coefficients], %[offset] \n\t"
64 "addu %[coefptr], %[coefficients], %[offset] \n\t"
107 "addu %[coefptr], %[coefficients], %[offset] \n\t"
131 : [coefficients] "r" (coefficients), [data_length] "r" (data_length),
downsample_fast.c 19 const int16_t* __restrict coefficients,
38 out_s32 += coefficients[j] * data_in[i - j]; // Q12.
downsample_fast_mips.c 18 const int16_t* __restrict coefficients,
32 int16_t* p_coefficients_0 = (int16_t*)&coefficients[0];
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrBicubicEffect.h 27 const float* coefficients() const { return fCoefficients; } function in class:GrBicubicEffect
37 * Create a simple filter effect with custom bicubic coefficients and optional domain.
39 static GrFragmentProcessor* Create(GrTexture* tex, const SkScalar coefficients[16],
44 return Create(tex, coefficients, GrCoordTransform::MakeDivByTextureWHMatrix(tex),
47 return SkNEW_ARGS(GrBicubicEffect, (tex, coefficients,
62 * Create a filter effect with custom bicubic coefficients, the texture matrix, and the x/y
65 static GrFragmentProcessor* Create(GrTexture* tex, const SkScalar coefficients[16],
68 return SkNEW_ARGS(GrBicubicEffect, (tex, coefficients, matrix, tileModes));
90 GrBicubicEffect(GrTexture*, const SkScalar coefficients[16],
92 GrBicubicEffect(GrTexture*, const SkScalar coefficients[16]
    [all...]
GrBicubicEffect.cpp 67 kMat44f_GrSLType, "Coefficients");
77 GrGLShaderVar("coefficients", kMat44f_GrSLType),
91 "\tvec4 c = coefficients * ts;\n"
126 pdman.setMatrix4f(fCoefficientsUni, bicubicEffect.coefficients());
140 const SkScalar coefficients[16],
145 convert_row_major_scalar_coeffs_to_column_major_floats(fCoefficients, coefficients);
149 const SkScalar coefficients[16],
155 convert_row_major_scalar_coeffs_to_column_major_floats(fCoefficients, coefficients);
168 !memcmp(fCoefficients, s.coefficients(), 16) &&
186 SkScalar coefficients[16] local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLPathRendering.cpp 300 const GrGLfloat* coefficients) {
307 !memcmp(coefficients, fHWPathTexGenSettings[unitIdx].fCoefficients,
315 GL_CALL(PathTexGen(GR_GL_TEXTURE0 + unitIdx, GR_GL_OBJECT_LINEAR, components, coefficients));
317 memcpy(fHWPathTexGenSettings[unitIdx].fCoefficients, coefficients,
323 GrGLfloat coefficients[3 * 3]; local
327 coefficients[0] = SkScalarToFloat(matrix[SkMatrix::kMScaleX]);
328 coefficients[1] = SkScalarToFloat(matrix[SkMatrix::kMSkewX]);
329 coefficients[2] = SkScalarToFloat(matrix[SkMatrix::kMTransX]);
332 coefficients[3] = SkScalarToFloat(matrix[SkMatrix::kMSkewY]);
333 coefficients[4] = SkScalarToFloat(matrix[SkMatrix::kMScaleY])
373 GrGLfloat coefficients[3 * 3]; local
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/simd/
jfss2fst-64.asm 107 movdqa xmm4,xmm0 ; transpose coefficients(phase 1)
110 movdqa xmm5,xmm2 ; transpose coefficients(phase 1)
125 movdqa xmm2,xmm6 ; transpose coefficients(phase 1)
128 movdqa xmm5,xmm1 ; transpose coefficients(phase 1)
132 movdqa xmm7,xmm6 ; transpose coefficients(phase 2)
135 movdqa xmm3,xmm2 ; transpose coefficients(phase 2)
144 movdqa xmm7,xmm0 ; transpose coefficients(phase 2)
147 movdqa xmm2,xmm4 ; transpose coefficients(phase 2)
151 movdqa xmm1,xmm0 ; transpose coefficients(phase 3)
154 movdqa xmm5,xmm2 ; transpose coefficients(phase 3
    [all...]
jfss2fst.asm 113 movdqa xmm4,xmm0 ; transpose coefficients(phase 1)
116 movdqa xmm5,xmm2 ; transpose coefficients(phase 1)
131 movdqa xmm2,xmm6 ; transpose coefficients(phase 1)
134 movdqa xmm5,xmm1 ; transpose coefficients(phase 1)
138 movdqa xmm7,xmm6 ; transpose coefficients(phase 2)
141 movdqa xmm3,xmm2 ; transpose coefficients(phase 2)
150 movdqa xmm7,xmm0 ; transpose coefficients(phase 2)
153 movdqa xmm2,xmm4 ; transpose coefficients(phase 2)
157 movdqa xmm1,xmm0 ; transpose coefficients(phase 3)
160 movdqa xmm5,xmm2 ; transpose coefficients(phase 3
    [all...]
jfsseflt-64.asm 94 movaps xmm4,xmm0 ; transpose coefficients(phase 1)
97 movaps xmm5,xmm2 ; transpose coefficients(phase 1)
112 movaps xmm4,xmm6 ; transpose coefficients(phase 1)
115 movaps xmm2,xmm1 ; transpose coefficients(phase 1)
119 movaps xmm7,xmm6 ; transpose coefficients(phase 2)
122 movaps xmm3,xmm2 ; transpose coefficients(phase 2)
138 movaps xmm7,xmm4 ; transpose coefficients(phase 2)
141 movaps xmm6,xmm1 ; transpose coefficients(phase 2)
229 movaps xmm4,xmm0 ; transpose coefficients(phase 1)
232 movaps xmm5,xmm2 ; transpose coefficients(phase 1
    [all...]
jiss2fst-64.asm 79 ; Perform dequantization and inverse DCT on one block of coefficients.
246 movdqa xmm3,xmm6 ; transpose coefficients(phase 1)
249 movdqa xmm0,xmm5 ; transpose coefficients(phase 1)
267 movdqa xmm4,xmm7 ; transpose coefficients(phase 1)
270 movdqa xmm2,xmm1 ; transpose coefficients(phase 1)
274 movdqa xmm0,xmm3 ; transpose coefficients(phase 2)
277 movdqa xmm5,xmm6 ; transpose coefficients(phase 2)
287 movdqa xmm3,xmm1 ; transpose coefficients(phase 2)
290 movdqa xmm0,xmm2 ; transpose coefficients(phase 2)
294 movdqa xmm4,xmm6 ; transpose coefficients(phase 3
    [all...]
jiss2fst.asm 78 ; Perform dequantization and inverse DCT on one block of coefficients.
253 movdqa xmm3,xmm6 ; transpose coefficients(phase 1)
256 movdqa xmm0,xmm5 ; transpose coefficients(phase 1)
274 movdqa xmm4,xmm7 ; transpose coefficients(phase 1)
277 movdqa xmm2,xmm1 ; transpose coefficients(phase 1)
281 movdqa xmm0,xmm3 ; transpose coefficients(phase 2)
284 movdqa xmm5,xmm6 ; transpose coefficients(phase 2)
294 movdqa xmm3,xmm1 ; transpose coefficients(phase 2)
297 movdqa xmm0,xmm2 ; transpose coefficients(phase 2)
301 movdqa xmm4,xmm6 ; transpose coefficients(phase 3
    [all...]
jfss2int-64.asm 128 movdqa xmm4,xmm0 ; transpose coefficients(phase 1)
131 movdqa xmm5,xmm2 ; transpose coefficients(phase 1)
146 movdqa xmm2,xmm6 ; transpose coefficients(phase 1)
149 movdqa xmm5,xmm1 ; transpose coefficients(phase 1)
153 movdqa xmm7,xmm6 ; transpose coefficients(phase 2)
156 movdqa xmm3,xmm2 ; transpose coefficients(phase 2)
165 movdqa xmm7,xmm0 ; transpose coefficients(phase 2)
168 movdqa xmm2,xmm4 ; transpose coefficients(phase 2)
172 movdqa xmm1,xmm0 ; transpose coefficients(phase 3)
175 movdqa xmm5,xmm2 ; transpose coefficients(phase 3
    [all...]
jfss2int.asm 134 movdqa xmm4,xmm0 ; transpose coefficients(phase 1)
137 movdqa xmm5,xmm2 ; transpose coefficients(phase 1)
152 movdqa xmm2,xmm6 ; transpose coefficients(phase 1)
155 movdqa xmm5,xmm1 ; transpose coefficients(phase 1)
159 movdqa xmm7,xmm6 ; transpose coefficients(phase 2)
162 movdqa xmm3,xmm2 ; transpose coefficients(phase 2)
171 movdqa xmm7,xmm0 ; transpose coefficients(phase 2)
174 movdqa xmm2,xmm4 ; transpose coefficients(phase 2)
178 movdqa xmm1,xmm0 ; transpose coefficients(phase 3)
181 movdqa xmm5,xmm2 ; transpose coefficients(phase 3
    [all...]
jfmmxfst.asm 116 movq mm4,mm0 ; transpose coefficients(phase 1)
119 movq mm5,mm2 ; transpose coefficients(phase 1)
134 movq mm4,mm6 ; transpose coefficients(phase 1)
137 movq mm2,mm1 ; transpose coefficients(phase 1)
141 movq mm7,mm6 ; transpose coefficients(phase 2)
144 movq mm3,mm2 ; transpose coefficients(phase 2)
160 movq mm7,mm4 ; transpose coefficients(phase 2)
163 movq mm6,mm1 ; transpose coefficients(phase 2)
257 movq mm4,mm0 ; transpose coefficients(phase 1)
260 movq mm5,mm2 ; transpose coefficients(phase 1
    [all...]
jfsseflt.asm 101 movaps xmm4,xmm0 ; transpose coefficients(phase 1)
104 movaps xmm5,xmm2 ; transpose coefficients(phase 1)
119 movaps xmm4,xmm6 ; transpose coefficients(phase 1)
122 movaps xmm2,xmm1 ; transpose coefficients(phase 1)
126 movaps xmm7,xmm6 ; transpose coefficients(phase 2)
129 movaps xmm3,xmm2 ; transpose coefficients(phase 2)
145 movaps xmm7,xmm4 ; transpose coefficients(phase 2)
148 movaps xmm6,xmm1 ; transpose coefficients(phase 2)
237 movaps xmm4,xmm0 ; transpose coefficients(phase 1)
240 movaps xmm5,xmm2 ; transpose coefficients(phase 1
    [all...]

Completed in 336 milliseconds

1 2 3