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

1234

/external/valgrind/none/tests/
H A Dfucomip.c5 float det = 625.f; local
7 if (det < 1)
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCharsetRecog_UTF8.java26 CharsetMatch match(CharsetDetector det) { argument
30 byte input[] = det.fRawInput;
35 if (det.fRawLength >= 3 &&
41 for (i=0; i<det.fRawLength; i++) {
62 if (i>=det.fRawLength) {
97 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
H A DCharsetRecognizer.java46 * @param det The CharsetDetector, which contains the input text
51 abstract CharsetMatch match(CharsetDetector det); argument
H A DCharsetRecog_2022.java123 CharsetMatch match(CharsetDetector det) { argument
124 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
125 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
140 CharsetMatch match(CharsetDetector det) { argument
141 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
142 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
167 CharsetMatch match(CharsetDetector det) { argument
168 int confidence = match(det
[all...]
H A DCharsetMatch.java182 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf) { argument
188 if (det.fInputStream == null) {
191 fRawInput = det.fRawInput;
192 fRawLength = det.fRawLength;
194 fInputStream = det.fInputStream;
202 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf, String csName, String lang) { argument
208 if (det.fInputStream == null) {
211 fRawInput = det.fRawInput;
212 fRawLength = det.fRawLength;
214 fInputStream = det
[all...]
H A DCharsetRecog_Unicode.java30 abstract CharsetMatch match(CharsetDetector det); argument
64 CharsetMatch match(CharsetDetector det) argument
66 byte[] input = det.fRawInput;
85 return new CharsetMatch(det, this, confidence);
100 CharsetMatch match(CharsetDetector det) argument
102 byte[] input = det.fRawInput;
121 return new CharsetMatch(det, this, confidence);
135 CharsetMatch match(CharsetDetector det) argument
137 byte[] input = det.fRawInput;
138 int limit = (det
[all...]
H A DCharsetRecog_mbcs.java41 * @param det The CharsetDetector, which contains the input text
49 int match(CharsetDetector det, int [] commonChars) { argument
60 for (iter.reset(); nextChar(iter, det);) {
157 int nextByte(CharsetDetector det) { argument
158 if (nextIndex >= det.fRawLength) {
162 int byteValue = det.fRawInput[nextIndex++] & 0x00ff;
175 * @param det The charset detector, which is needed to get at the input byte data
179 abstract boolean nextChar(iteratedChar it, CharsetDetector det); argument
202 boolean nextChar(iteratedChar it, CharsetDetector det) { argument
205 firstByte = it.charValue = it.nextByte(det);
227 match(CharsetDetector det) argument
268 nextChar(iteratedChar it, CharsetDetector det) argument
296 match(CharsetDetector det) argument
330 nextChar(iteratedChar it, CharsetDetector det) argument
411 match(CharsetDetector det) argument
449 match(CharsetDetector det) argument
476 nextChar(iteratedChar it, CharsetDetector det) argument
550 match(CharsetDetector det) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetRecog_UTF8.java25 CharsetMatch match(CharsetDetector det) { argument
29 byte input[] = det.fRawInput;
34 if (det.fRawLength >= 3 &&
40 for (i=0; i<det.fRawLength; i++) {
61 if (i>=det.fRawLength) {
96 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
H A DCharsetRecognizer.java45 * @param det The CharsetDetector, which contains the input text
50 abstract CharsetMatch match(CharsetDetector det); argument
H A DCharsetRecog_2022.java122 CharsetMatch match(CharsetDetector det) { argument
123 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
124 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
139 CharsetMatch match(CharsetDetector det) { argument
140 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
141 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
166 CharsetMatch match(CharsetDetector det) { argument
167 int confidence = match(det
[all...]
H A DCharsetMatch.java194 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf) { argument
200 if (det.fInputStream == null) {
203 fRawInput = det.fRawInput;
204 fRawLength = det.fRawLength;
206 fInputStream = det.fInputStream;
214 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf, String csName, String lang) { argument
220 if (det.fInputStream == null) {
223 fRawInput = det.fRawInput;
224 fRawLength = det.fRawLength;
226 fInputStream = det
[all...]
H A DCharsetRecog_Unicode.java29 abstract CharsetMatch match(CharsetDetector det); argument
63 CharsetMatch match(CharsetDetector det) argument
65 byte[] input = det.fRawInput;
84 return new CharsetMatch(det, this, confidence);
99 CharsetMatch match(CharsetDetector det) argument
101 byte[] input = det.fRawInput;
120 return new CharsetMatch(det, this, confidence);
134 CharsetMatch match(CharsetDetector det) argument
136 byte[] input = det.fRawInput;
137 int limit = (det
[all...]
H A DCharsetRecog_mbcs.java40 * @param det The CharsetDetector, which contains the input text
48 int match(CharsetDetector det, int [] commonChars) { argument
59 for (iter.reset(); nextChar(iter, det);) {
156 int nextByte(CharsetDetector det) { argument
157 if (nextIndex >= det.fRawLength) {
161 int byteValue = det.fRawInput[nextIndex++] & 0x00ff;
174 * @param det The charset detector, which is needed to get at the input byte data
178 abstract boolean nextChar(iteratedChar it, CharsetDetector det); argument
201 boolean nextChar(iteratedChar it, CharsetDetector det) { argument
204 firstByte = it.charValue = it.nextByte(det);
226 match(CharsetDetector det) argument
267 nextChar(iteratedChar it, CharsetDetector det) argument
295 match(CharsetDetector det) argument
329 nextChar(iteratedChar it, CharsetDetector det) argument
410 match(CharsetDetector det) argument
448 match(CharsetDetector det) argument
475 nextChar(iteratedChar it, CharsetDetector det) argument
549 match(CharsetDetector det) argument
[all...]
/external/aac/libFDK/include/
H A Dautocorr2nd.h118 FIXP_DBL det; member in struct:__anon419
/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);
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe.h45 float det; /**< front/back face determinant */ member in struct:prim_header
/external/autotest/client/site_tests/graphics_SanAngeles/src/
H A Dshader.c89 float det = m[0*4+0] * (m[1*4+1] * m[2*4+2] - m[2*4+1] * m[1*4+2]) - local
92 float invDet = 1.f / det;
/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...]
/external/pdfium/third_party/lcms/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/src/core/
H A DSkPoint.cpp185 SkScalar det = u.cross(v); local
190 *side = (Side) SkScalarSignAsInt(det);
192 SkScalar temp = det / uLengthSqd;
193 temp *= det;
226 SkScalar det = u.cross(v); local
227 SkScalar temp = det / uLengthSqd;
228 temp *= det;
/external/skqp/src/core/
H A DSkPoint.cpp185 SkScalar det = u.cross(v); local
190 *side = (Side) SkScalarSignAsInt(det);
192 SkScalar temp = det / uLengthSqd;
193 temp *= det;
226 SkScalar det = u.cross(v); local
227 SkScalar temp = det / uLengthSqd;
228 temp *= det;
/external/tensorflow/tensorflow/python/ops/linalg/
H A Dlinalg_impl.py33 det = linalg_ops.matrix_determinant variable
66 det = tf.exp(tf.logdet(A)) # scalar
82 # This uses the property that the log det(A) = 2*sum(log(real(diag(C))))
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/
H A Dg722_enc_dec.h87 int det; member in struct:__anon30716::__anon30717
125 int det; member in struct:__anon30718::__anon30719
/external/dng_sdk/source/
H A Ddng_matrix.cpp889 real64 det = (a00 * temp [0] [0] + local
893 if (Abs_real64 (det) < kNearZero)
906 B [j] [k] = temp [j] [k] / det;

Completed in 634 milliseconds

1234