Searched refs:det (Results 1 - 25 of 121) sorted by relevance

12345

/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 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 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 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 DCharsetRecognizer.java45 * @param det The CharsetDetector, which contains the input text
50 abstract CharsetMatch match(CharsetDetector det); argument
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 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_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 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/icu/icu4c/source/i18n/
H A Dcsrsbcs.h48 virtual int32_t nextByte(InputText *det);
49 virtual void parseCharacters(InputText *det);
52 int32_t parse(InputText *det);
66 int32_t nextByte(InputText *det);
67 void parseCharacters(InputText *det);
78 virtual UBool match(InputText *det, CharsetMatch *results) const = 0;
79 virtual int32_t match_sbcs(InputText *det, const int32_t ngrams[], const uint8_t charMap[]) const;
87 virtual UBool match(InputText *det, CharsetMatch *results) const;
95 virtual UBool match(InputText *det, CharsetMatch *results) const;
146 virtual UBool match(InputText *det, CharsetMatc
[all...]
H A Dcsrmbcs.cpp132 int32_t IteratedChar::nextByte(InputText *det) argument
134 if (nextIndex >= det->fRawLength) {
140 return det->fRawInput[nextIndex++];
148 int32_t CharsetRecog_mbcs::match_mbcs(InputText *det, const uint16_t commonChars[], int32_t commonCharsLen) const { argument
157 while (nextChar(&iter, det)) {
244 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) const {
248 int32_t firstByte = it->charValue = it->nextByte(det);
258 int32_t secondByte = it->nextByte(det);
272 UBool CharsetRecog_sjis::match(InputText* det, CharsetMatch *results) const { argument
273 int32_t confidence = match_mbcs(det, commonChars_sji
372 match(InputText *det, CharsetMatch *results) const argument
394 match(InputText *det, CharsetMatch *results) const argument
446 match(InputText *det, CharsetMatch *results) const argument
522 match(InputText *det, CharsetMatch *results) const argument
[all...]
H A Dcsrmbcs.h44 int32_t nextByte(InputText* det);
55 * @param det The CharsetDetector, which contains the input text
63 int32_t match_mbcs(InputText* det, const uint16_t commonChars[], int32_t commonCharsLen) const;
86 * @param det The charset detector, which is needed to get at the input byte data
103 UBool nextChar(IteratedChar *it, InputText *det) const;
134 UBool nextChar(IteratedChar *it, InputText *det) const;
177 UBool nextChar(IteratedChar* it, InputText* det) const;
196 UBool nextChar(IteratedChar* it, InputText* det) const;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/
H A DTestCharsetDetector.java90 CharsetDetector det = new CharsetDetector();
91 if(det==null){
105 String[] activeCharsetNames = det.getDetectableCharsets();
138 CharsetDetector det = new CharsetDetector();
141 det.enableInputFilter(true);
142 if (!det.inputFilterEnabled()){
146 det.setText(bytes);
147 m = det.detect();
153 det.enableInputFilter(false);
154 det
423 checkMatch(CharsetDetector det, String testString, String encoding, String language, boolean checkRoundtrip, String id) argument
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
H A DTestCharsetDetector.java87 CharsetDetector det = new CharsetDetector();
88 if(det==null){
102 String[] activeCharsetNames = det.getDetectableCharsets();
135 CharsetDetector det = new CharsetDetector();
138 det.enableInputFilter(true);
139 if (!det.inputFilterEnabled()){
143 det.setText(bytes);
144 m = det.detect();
150 det.enableInputFilter(false);
151 det
420 checkMatch(CharsetDetector det, String testString, String encoding, String language, boolean checkRoundtrip, String id) argument
[all...]
/external/aac/libFDK/include/
H A Dautocorr2nd.h118 FIXP_DBL det; member in struct:__anon419
/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/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/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));
/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/ltp/testcases/open_posix_testsuite/conformance/interfaces/testfrmw/
H A Dthreads_scenarii.c89 #define CASE(det, expl, scp, spa, sco, sta, gua, ssi, desc, res) \
91 .detached = det, \
103 #define CASE_POS(det, expl, scp, spa, sco, sta, gua, ssi, desc) \
104 CASE(det, expl, scp, spa, sco, sta, gua, ssi, desc, 0)
105 #define CASE_NEG(det, expl, scp, spa, sco, sta, gua, ssi, desc) \
106 CASE(det, expl, scp, spa, sco, sta, gua, ssi, desc, 1)
107 #define CASE_UNK(det, expl, scp, spa, sco, sta, gua, ssi, desc) \
108 CASE(det, expl, scp, spa, sco, sta, gua, ssi, desc, 2)

Completed in 506 milliseconds

12345