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

1 2 3 4 5 6 7

  /external/valgrind/none/tests/
fucomip.c 5 float det = 625.f; local
7 if (det < 1)
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsetRecognizer.java 44 * @param det The CharsetDetector, which contains the input text
49 abstract CharsetMatch match(CharsetDetector det);
CharsetRecog_2022.java 119 CharsetMatch match(CharsetDetector det) {
120 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
121 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
134 CharsetMatch match(CharsetDetector det) {
135 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
136 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
159 CharsetMatch match(CharsetDetector det) {
160 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences)
    [all...]
CharsetRecog_UTF8.java 22 CharsetMatch match(CharsetDetector det) {
26 byte input[] = det.fRawInput;
31 if (det.fRawLength >= 3 &&
37 for (i=0; i<det.fRawLength; i++) {
58 if (i>=det.fRawLength) {
93 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
CharsetMatch.java 179 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf) {
185 if (det.fInputStream == null) {
188 fRawInput = det.fRawInput;
189 fRawLength = det.fRawLength;
191 fInputStream = det.fInputStream;
199 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf, String csName, String lang) {
205 if (det.fInputStream == null) {
208 fRawInput = det.fRawInput;
209 fRawLength = det.fRawLength;
211 fInputStream = det.fInputStream
    [all...]
CharsetRecog_mbcs.java 38 * @param det The CharsetDetector, which contains the input text
46 int match(CharsetDetector det, int [] commonChars) {
57 for (iter.reset(); nextChar(iter, det);) {
156 int nextByte(CharsetDetector det) {
157 if (nextIndex >= det.fRawLength) {
161 int byteValue = (int)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);
200 boolean nextChar(iteratedChar it, CharsetDetector det) {
204 firstByte = it.charValue = it.nextByte(det);
    [all...]
CharsetRecog_Unicode.java 26 abstract CharsetMatch match(CharsetDetector det);
58 CharsetMatch match(CharsetDetector det)
60 byte[] input = det.fRawInput;
79 return new CharsetMatch(det, this, confidence);
92 CharsetMatch match(CharsetDetector det)
94 byte[] input = det.fRawInput;
113 return new CharsetMatch(det, this, confidence);
125 CharsetMatch match(CharsetDetector det)
127 byte[] input = det.fRawInput;
128 int limit = (det.fRawLength / 4) * 4
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsetRecognizer.java 43 * @param det The CharsetDetector, which contains the input text
48 abstract CharsetMatch match(CharsetDetector det);
CharsetRecog_2022.java 118 CharsetMatch match(CharsetDetector det) {
119 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
120 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
133 CharsetMatch match(CharsetDetector det) {
134 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences);
135 return confidence == 0 ? null : new CharsetMatch(det, this, confidence);
158 CharsetMatch match(CharsetDetector det) {
159 int confidence = match(det.fInputBytes, det.fInputLen, escapeSequences)
    [all...]
CharsetRecog_UTF8.java 21 CharsetMatch match(CharsetDetector det) {
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);
CharsetMatch.java 191 CharsetMatch(CharsetDetector det, CharsetRecognizer rec, int conf) {
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) {
217 if (det.fInputStream == null) {
220 fRawInput = det.fRawInput;
221 fRawLength = det.fRawLength;
223 fInputStream = det.fInputStream
    [all...]
CharsetRecog_mbcs.java 37 * @param det The CharsetDetector, which contains the input text
45 int match(CharsetDetector det, int [] commonChars) {
56 for (iter.reset(); nextChar(iter, det);) {
155 int nextByte(CharsetDetector det) {
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);
199 boolean nextChar(iteratedChar it, CharsetDetector det) {
203 firstByte = it.charValue = it.nextByte(det);
    [all...]
CharsetRecog_Unicode.java 25 abstract CharsetMatch match(CharsetDetector det);
57 CharsetMatch match(CharsetDetector det)
59 byte[] input = det.fRawInput;
78 return new CharsetMatch(det, this, confidence);
91 CharsetMatch match(CharsetDetector det)
93 byte[] input = det.fRawInput;
112 return new CharsetMatch(det, this, confidence);
124 CharsetMatch match(CharsetDetector det)
126 byte[] input = det.fRawInput;
127 int limit = (det.fRawLength / 4) * 4
    [all...]
  /external/icu/icu4c/source/i18n/
csrsbcs.h 46 virtual int32_t nextByte(InputText *det);
47 virtual void parseCharacters(InputText *det);
50 int32_t parse(InputText *det);
64 int32_t nextByte(InputText *det);
65 void parseCharacters(InputText *det);
76 virtual UBool match(InputText *det, CharsetMatch *results) const = 0;
77 virtual int32_t match_sbcs(InputText *det, const int32_t ngrams[], const uint8_t charMap[]) const;
85 virtual UBool match(InputText *det, CharsetMatch *results) const;
93 virtual UBool match(InputText *det, CharsetMatch *results) const;
144 virtual UBool match(InputText *det, CharsetMatch *results) const
    [all...]
csrmbcs.h 42 int32_t nextByte(InputText* det);
53 * @param det The CharsetDetector, which contains the input text
61 int32_t match_mbcs(InputText* det, const uint16_t commonChars[], int32_t commonCharsLen) const;
84 * @param det The charset detector, which is needed to get at the input byte data
101 UBool nextChar(IteratedChar *it, InputText *det) const;
132 UBool nextChar(IteratedChar *it, InputText *det) const;
175 UBool nextChar(IteratedChar* it, InputText* det) const;
194 UBool nextChar(IteratedChar* it, InputText* det) const;
csrmbcs.cpp 131 int32_t IteratedChar::nextByte(InputText *det)
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 {
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 {
272 int32_t confidence = match_mbcs(det, commonChars_sjis, ARRAY_SIZE(commonChars_sjis))
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
trsMatrix.cpp 81 double det = det33d(m); local
83 out[0][0] = (m[1][1]*m[2][2] - m[1][2]*m[2][1]) / det;
84 out[1][0] = (m[1][2]*m[2][0] - m[1][0]*m[2][2]) / det;
85 out[2][0] = (m[1][0]*m[2][1] - m[1][1]*m[2][0]) / det;
87 out[0][1] = (m[0][2]*m[2][1] - m[0][1]*m[2][2]) / det;
88 out[1][1] = (m[0][0]*m[2][2] - m[0][2]*m[2][0]) / det;
89 out[2][1] = (m[0][1]*m[2][0] - m[0][0]*m[2][1]) / det;
91 out[0][2] = (m[0][1]*m[1][2] - m[0][2]*m[1][1]) / det;
92 out[1][2] = (m[0][2]*m[1][0] - m[0][0]*m[1][2]) / det;
93 out[2][2] = (m[0][0]*m[1][1] - m[0][1]*m[1][0]) / det;
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
trsMatrix.cpp 81 double det = det33d(m); local
83 out[0][0] = (m[1][1]*m[2][2] - m[1][2]*m[2][1]) / det;
84 out[1][0] = (m[1][2]*m[2][0] - m[1][0]*m[2][2]) / det;
85 out[2][0] = (m[1][0]*m[2][1] - m[1][1]*m[2][0]) / det;
87 out[0][1] = (m[0][2]*m[2][1] - m[0][1]*m[2][2]) / det;
88 out[1][1] = (m[0][0]*m[2][2] - m[0][2]*m[2][0]) / det;
89 out[2][1] = (m[0][1]*m[2][0] - m[0][0]*m[2][1]) / det;
91 out[0][2] = (m[0][1]*m[1][2] - m[0][2]*m[1][1]) / det;
92 out[1][2] = (m[0][2]*m[1][0] - m[0][0]*m[1][2]) / det;
93 out[2][2] = (m[0][0]*m[1][1] - m[0][1]*m[1][0]) / det;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/
TestCharsetDetector.java 100 CharsetDetector det = new CharsetDetector(); local
101 if(det==null){
115 String[] activeCharsetNames = det.getDetectableCharsets();
147 CharsetDetector det = new CharsetDetector(); local
150 det.enableInputFilter(true);
151 if (!det.inputFilterEnabled()){
155 det.setText(bytes);
156 m = det.detect();
162 det.enableInputFilter(false);
163 det.setText(bytes)
178 CharsetDetector det = new CharsetDetector(); local
202 CharsetDetector det = new CharsetDetector(); local
237 CharsetDetector det = new CharsetDetector(); local
271 CharsetDetector det = new CharsetDetector(); local
304 CharsetDetector det = new CharsetDetector(); local
485 CharsetDetector det = new CharsetDetector(); local
515 CharsetDetector det = new CharsetDetector(); local
546 CharsetDetector det = new CharsetDetector(); local
701 CharsetDetector det = new CharsetDetector(); local
712 CharsetDetector det = new CharsetDetector(); local
720 CharsetDetector det = new CharsetDetector(); local
739 CharsetDetector det = new CharsetDetector(); local
1139 CharsetDetector det = new CharsetDetector(); local
1191 CharsetDetector det = new CharsetDetector(); local
1220 CharsetDetector det = new CharsetDetector(); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
TestCharsetDetector.java 96 CharsetDetector det = new CharsetDetector(); local
97 if(det==null){
111 String[] activeCharsetNames = det.getDetectableCharsets();
143 CharsetDetector det = new CharsetDetector(); local
146 det.enableInputFilter(true);
147 if (!det.inputFilterEnabled()){
151 det.setText(bytes);
152 m = det.detect();
158 det.enableInputFilter(false);
159 det.setText(bytes)
174 CharsetDetector det = new CharsetDetector(); local
198 CharsetDetector det = new CharsetDetector(); local
233 CharsetDetector det = new CharsetDetector(); local
267 CharsetDetector det = new CharsetDetector(); local
300 CharsetDetector det = new CharsetDetector(); local
481 CharsetDetector det = new CharsetDetector(); local
511 CharsetDetector det = new CharsetDetector(); local
542 CharsetDetector det = new CharsetDetector(); local
697 CharsetDetector det = new CharsetDetector(); local
708 CharsetDetector det = new CharsetDetector(); local
716 CharsetDetector det = new CharsetDetector(); local
735 CharsetDetector det = new CharsetDetector(); local
1135 CharsetDetector det = new CharsetDetector(); local
1187 CharsetDetector det = new CharsetDetector(); local
1216 CharsetDetector det = new CharsetDetector(); local
    [all...]
  /external/aac/libFDK/include/
autocorr2nd.h 108 FIXP_DBL det; member in struct:__anon6300
  /external/eigen/test/
inverse.cpp 50 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));
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/src/gl-matrix/
mat3.js 176 det = a00 * b01 + a01 * b11 + a02 * b21;
178 if (!det) {
181 det = 1.0 / det;
183 out[0] = b01 * det;
184 out[1] = (-a22 * a01 + a02 * a21) * det;
185 out[2] = (a12 * a01 - a02 * a11) * det;
186 out[3] = b11 * det;
187 out[4] = (a22 * a00 - a02 * a20) * det;
188 out[5] = (-a12 * a00 + a02 * a10) * det;
    [all...]
mat2d.js 120 var det = aa * ad - ab * ac;
121 if(!det){
124 det = 1.0 / det;
126 out[0] = ad * det;
127 out[1] = -ab * det;
128 out[2] = -ac * det;
129 out[3] = aa * det;
130 out[4] = (ac * aty - ad * atx) * det;
131 out[5] = (ab * atx - aa * aty) * det;
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/
utility.hpp 170 T det = A[0][0] * A[1][1] - A[1][0] * A[0][1]; local
172 if (det != 0)
174 double invdet = 1.0 / det;
189 T det = A[0][0] * (A[1][1] * A[2][2] - A[1][2] * A[2][1]) local
193 if (det != 0)
195 double invdet = 1.0 / det;

Completed in 660 milliseconds

1 2 3 4 5 6 7