Searched defs:det (Results 1 - 25 of 51) sorted by relevance

123

/external/valgrind/none/tests/
H A Dfucomip.c5 float det = 625.f; local
7 if (det < 1)
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetRecog_UTF8.java21 CharsetMatch match(CharsetDetector det) { argument
25 byte input[] = det.fRawInput;
30 if (det.fRawLength >= 3 &&
36 for (i=0; i<det.fRawLength; i++) {
57 if (i>=det.fRawLength) {
92 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
H A DCharsetRecognizer.java43 * @param det The CharsetDetector, which contains the input text
48 abstract CharsetMatch match(CharsetDetector det); argument
H A DCharsetRecog_2022.java118 CharsetMatch match(CharsetDetector det) { argument
119 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
120 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
133 CharsetMatch match(CharsetDetector det) { argument
134 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
135 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
158 CharsetMatch match(CharsetDetector det) { argument
159 int confidence = match(det
[all...]
H A DCharsetMatch.java191 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf) { argument
197 if (det.fInputStream == null) {
200 fRawInput = det.fRawInput;
201 fRawLength = det.fRawLength;
203 fInputStream = det.fInputStream;
211 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf, String csName, String lang) { argument
217 if (det.fInputStream == null) {
220 fRawInput = det.fRawInput;
221 fRawLength = det.fRawLength;
223 fInputStream = det
[all...]
H A DCharsetRecog_Unicode.java25 abstract CharsetMatch match(CharsetDetector det); argument
57 CharsetMatch match(CharsetDetector det) argument
59 byte[] input = det.fRawInput;
78 return new CharsetMatch(det, this, confidence);
91 CharsetMatch match(CharsetDetector det) argument
93 byte[] input = det.fRawInput;
112 return new CharsetMatch(det, this, confidence);
124 CharsetMatch match(CharsetDetector det) argument
126 byte[] input = det.fRawInput;
127 int limit = (det
[all...]
H A DCharsetRecog_mbcs.java37 * @param det The CharsetDetector, which contains the input text
45 int match(CharsetDetector det, int [] commonChars) { argument
56 for (iter.reset(); nextChar(iter, det);) {
155 int nextByte(CharsetDetector det) { argument
156 if (nextIndex >= det.fRawLength) {
160 int byteValue = (int)det.fRawInput[nextIndex++] & 0x00ff;
173 * @param det The charset detector, which is needed to get at the input byte data
177 abstract boolean nextChar(iteratedChar it, CharsetDetector det); argument
199 boolean nextChar(iteratedChar it, CharsetDetector det) { argument
203 firstByte = it.charValue = it.nextByte(det);
224 match(CharsetDetector det) argument
262 nextChar(iteratedChar it, CharsetDetector det) argument
290 match(CharsetDetector det) argument
321 nextChar(iteratedChar it, CharsetDetector det) argument
401 match(CharsetDetector det) argument
436 match(CharsetDetector det) argument
461 nextChar(iteratedChar it, CharsetDetector det) argument
534 match(CharsetDetector det) argument
[all...]
/external/aac/libFDK/include/
H A Dautocorr2nd.h108 FIXP_DBL det; member in struct:__anon150
/external/eigen/test/
H A Dinverse.cpp50 RealScalar det; local
53 m1.computeInverseAndDetWithCheck(m2, det, invertible);
56 VERIFY_IS_APPROX(det, m1.determinant());
66 m3.computeInverseAndDetWithCheck(m4, det, invertible);
68 VERIFY_IS_MUCH_SMALLER_THAN(abs(det-m3.determinant()), RealScalar(1));
H A Dschur_real.cpp34 Scalar det = T(row-1,row-1) * T(row,row) - T(row-1,row) * T(row,row-1); local
35 VERIFY(4 * det > tr * tr);
H A Dproduct_extra.cpp109 double det = 6.0, wt = 0.5; local
110 VERIFY_IS_APPROX(dNdxy.transpose()*dNdxy*det*wt, det*wt*dNdxy.transpose()*dNdxy);
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe.h44 float det; /**< front/back face determinant */ member in struct:prim_header
/external/opencv/cv/src/
H A Dcvlinefit.cpp111 float det[9], evc[9], evl[3]; local
177 det[0] = dz2 + dy2;
178 det[1] = -dxy;
179 det[2] = -dxz;
180 det[3] = det[1];
181 det[4] = dx2 + dz2;
182 det[5] = -dyz;
183 det[6] = det[
[all...]
H A Dcvposit.cpp278 float det = 0; local
306 det += ata00 * p00;
307 det += ata01 * p01;
308 det += ata02 * p02;
310 inv_det = 1 / det;
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsmtrx.c131 cmsFloat64Number det, c0, c1, c2; local
137 det = a -> v[0].n[0]*c0 + a -> v[0].n[1]*c1 + a -> v[0].n[2]*c2;
139 if (fabs(det) < MATRIX_DET_TOLERANCE) return FALSE; // singular matrix; can't invert
141 b -> v[0].n[0] = c0/det;
142 b -> v[0].n[1] = (a -> v[0].n[2]*a -> v[2].n[1] - a -> v[0].n[1]*a -> v[2].n[2])/det;
143 b -> v[0].n[2] = (a -> v[0].n[1]*a -> v[1].n[2] - a -> v[0].n[2]*a -> v[1].n[1])/det;
144 b -> v[1].n[0] = c1/det;
145 b -> v[1].n[1] = (a -> v[0].n[0]*a -> v[2].n[2] - a -> v[0].n[2]*a -> v[2].n[0])/det;
146 b -> v[1].n[2] = (a -> v[0].n[2]*a -> v[1].n[0] - a -> v[0].n[0]*a -> v[1].n[2])/det;
147 b -> v[2].n[0] = c2/det;
[all...]
/external/skia/experimental/
H A DSkSetPoly3To3.cpp42 SkScalar det = SkScalarMul(srcOP[0], srcOP[3]) - SkScalarMul(srcOP[1], srcOP[2]); local
45 if (SkScalarNearlyZero(det)) {
49 SkScalar invDet = SkScalarInvert(det);
H A DSkSetPoly3To3_A.cpp59 SkDScalar det = SkDScalar_setMul(srcOP[0], srcOP[3]) - local
75 matrix->setScaleX(divide(M[0], det));
76 matrix->setSkewX( divide(M[1], det));
77 matrix->setSkewY (divide(M[2], det));
78 matrix->setScaleY(divide(M[3], det));
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DHyperplane.h171 Scalar det = coeffs().coeff(0) * other.coeffs().coeff(1) - coeffs().coeff(1) * other.coeffs().coeff(0); local
174 if(ei_isMuchSmallerThan(det, Scalar(1)))
183 Scalar invdet = Scalar(1) / det;
/external/eigen/Eigen/src/Eigenvalues/
H A DComplexSchur.h297 ComplexScalar det = t.coeff(0,0) * t.coeff(1,1) - b; local
303 eival2 = det / eival1;
305 eival1 = det / eival2;
/external/eigen/Eigen/src/Geometry/
H A DHyperplane.h193 Scalar det = coeffs().coeff(0) * other.coeffs().coeff(1) - coeffs().coeff(1) * other.coeffs().coeff(0); local
196 if(internal::isMuchSmallerThan(det, Scalar(1)))
205 Scalar invdet = Scalar(1) / det;
/external/eigen/Eigen/src/LU/
H A DInverse.h155 const Scalar det = (cofactors_col0.cwiseProduct(matrix.col(0))).sum(); local
156 const Scalar invdet = Scalar(1) / det;
/external/eigen/Eigen/src/LU/arch/
H A DInverse_SSE.h78 __m128 det, d, d1, d2; local
124 // det = |A|*|D| + |B|*|C| - trace(A#*B*D#*C)
125 det = _mm_sub_ss(_mm_add_ss(d1,d2),d);
126 rd = _mm_div_ss(_mm_set_ss(1.0f), det);
129 // rd = _mm_and_ps(_mm_cmpneq_ss(det,_mm_setzero_ps()), rd);
148 // iX = iX / det
216 __m128d det, d1, d2, rd; local
285 // det = |A|*|D| + |B|*|C| - trace(A#*B*D#*C)
286 det = _mm_add_sd(d1, d2);
287 det
[all...]
/external/icu/icu4c/source/i18n/
H A Dcsrmbcs.cpp131 int32_t IteratedChar::nextByte(InputText *det) argument
133 if (nextIndex >= det->fRawLength) {
139 return det->fRawInput[nextIndex++];
147 int32_t CharsetRecog_mbcs::match_mbcs(InputText *det, const uint16_t commonChars[], int32_t commonCharsLen) const { argument
156 while (nextChar(&iter, det)) {
243 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const {
247 int32_t firstByte = it->charValue = it->nextByte(det);
257 int32_t secondByte = it->nextByte(det);
271 UBool CharsetRecog_sjis::match(InputText* det, CharsetMatch *results) const { argument
272 int32_t confidence = match_mbcs(det, commonChars_sji
371 match(InputText *det, CharsetMatch *results) const argument
393 match(InputText *det, CharsetMatch *results) const argument
445 match(InputText *det, CharsetMatch *results) const argument
521 match(InputText *det, CharsetMatch *results) const argument
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
H A DTestCharsetDetector.java94 CharsetDetector det = new CharsetDetector();
95 if(det==null){
109 String[] activeCharsetNames = det.getDetectableCharsets();
141 CharsetDetector det = new CharsetDetector();
144 det.enableInputFilter(true);
145 if (!det.inputFilterEnabled()){
149 det.setText(bytes);
150 m = det.detect();
156 det.enableInputFilter(false);
157 det
420 checkMatch(CharsetDetector det, String testString, String encoding, String language, boolean checkRoundtrip, String id) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_sf.h66 struct brw_reg det; member in struct:brw_sf_compile

Completed in 580 milliseconds

123