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

1 2

  /external/chromium/third_party/icu/source/i18n/
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);
74 int32_t match(InputText* det) = 0; member in class:CharsetRecog_mbcs
84 * @param det The charset detector, which is needed to get at the input byte data
101 UBool nextChar(IteratedChar *it, InputText *det);
103 int32_t match(InputText *det);
125 int32_t match(InputText* det) = 0; member in class:CharsetRecog_euc
132 UBool nextChar(IteratedChar *it, InputText *det);
147 int32_t match(InputText *det);
    [all...]
csrutf8.h 35 int32_t match(InputText *det);
csrutf8.cpp 26 int32_t CharsetRecog_UTF8::match(InputText* det) {
30 const uint8_t *input = det->fRawInput;
35 if (det->fRawLength >= 3 &&
41 for (i=0; i < det->fRawLength; i += 1) {
69 if (i >= det->fRawLength) {
csrmbcs.cpp 130 int32_t IteratedChar::nextByte(InputText *det)
132 if (nextIndex >= det->fRawLength) {
138 return det->fRawInput[nextIndex++];
146 int32_t CharsetRecog_mbcs::match_mbcs(InputText *det, const uint16_t commonChars[], int32_t commonCharsLen) {
155 while (nextChar(&iter, det)) {
242 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) {
246 int32_t firstByte = it->charValue = it->nextByte(det);
256 int32_t secondByte = it->nextByte(det);
270 int32_t CharsetRecog_sjis::match(InputText* det)
272 return match_mbcs(det, commonChars_sjis, ARRAY_SIZE(commonChars_sjis))
    [all...]
csrsbcs.h 42 int32_t nextByte(InputText *det);
45 int32_t parse(InputText *det);
61 virtual int32_t match(InputText *det) = 0;
63 int32_t match_sbcs(InputText *det, const int32_t ngrams[], const uint8_t charMap[]);
csrsbcs.cpp 88 int32_t NGramParser::nextByte(InputText *det)
90 if (byteIndex >= det->fInputLen) {
94 return det->fInputBytes[byteIndex++];
97 int32_t NGramParser::parse(InputText *det)
102 while ((b = nextByte(det)) >= 0) {
144 int32_t CharsetRecog_sbcs::match_sbcs(InputText *det, const int32_t ngrams[], const uint8_t byteMap[])
149 haveC1Bytes = det->fC1Bytes;
150 result = parser.parse(det);
    [all...]
  /external/icu4c/i18n/
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);
74 int32_t match(InputText* det) = 0; member in class:CharsetRecog_mbcs
84 * @param det The charset detector, which is needed to get at the input byte data
101 UBool nextChar(IteratedChar *it, InputText *det);
103 int32_t match(InputText *det);
125 int32_t match(InputText* det) = 0; member in class:CharsetRecog_euc
132 UBool nextChar(IteratedChar *it, InputText *det);
147 int32_t match(InputText *det);
    [all...]
csrutf8.h 35 int32_t match(InputText *det);
csrutf8.cpp 26 int32_t CharsetRecog_UTF8::match(InputText* det) {
30 const uint8_t *input = det->fRawInput;
35 if (det->fRawLength >= 3 &&
41 for (i=0; i < det->fRawLength; i += 1) {
69 if (i >= det->fRawLength) {
csrmbcs.cpp 130 int32_t IteratedChar::nextByte(InputText *det)
132 if (nextIndex >= det->fRawLength) {
138 return det->fRawInput[nextIndex++];
146 int32_t CharsetRecog_mbcs::match_mbcs(InputText *det, const uint16_t commonChars[], int32_t commonCharsLen) {
155 while (nextChar(&iter, det)) {
242 UBool CharsetRecog_sjis::nextChar(IteratedChar* it, InputText* det) {
246 int32_t firstByte = it->charValue = it->nextByte(det);
256 int32_t secondByte = it->nextByte(det);
270 int32_t CharsetRecog_sjis::match(InputText* det)
272 return match_mbcs(det, commonChars_sjis, ARRAY_SIZE(commonChars_sjis))
    [all...]
csrsbcs.h 42 int32_t nextByte(InputText *det);
45 int32_t parse(InputText *det);
61 virtual int32_t match(InputText *det) = 0;
63 int32_t match_sbcs(InputText *det, const int32_t ngrams[], const uint8_t charMap[]);
csrsbcs.cpp 88 int32_t NGramParser::nextByte(InputText *det)
90 if (byteIndex >= det->fInputLen) {
94 return det->fInputBytes[byteIndex++];
97 int32_t NGramParser::parse(InputText *det)
102 while ((b = nextByte(det)) >= 0) {
144 int32_t CharsetRecog_sbcs::match_sbcs(InputText *det, const int32_t ngrams[], const uint8_t byteMap[])
149 haveC1Bytes = det->fC1Bytes;
150 result = parser.parse(det);
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
calc_auto_corr.cpp 228 * ac->det = ac->r11r*ac->r22r - rel*(ac->r12r*ac->r12r);
232 ac->det = fxp_mul32_Q30(ac->r12r, ac->r12r);
234 ac->det -= ac->det >> 20;
236 ac->det = fxp_mul32_Q30(ac->r11r, ac->r22r) - ac->det;
388 * ac->det = ac->r11r*ac->r22r - rel*(ac->r12r*ac->r12r);
393 ac->det = fxp_mul32_Q29(ac->r12i, ac->r12i);
394 ac->det = fxp_mac32_Q29(ac->r12r, ac->r12r, ac->det);
    [all...]
calc_auto_corr.h 83 Int32 det; member in struct:ACORR_COEFS
sbr_generate_high_freq.cpp 510 if (ac.r11r && ac.det)
567 * alphar[1][loBand] = ( ac.r01r * ac.r12r - ac.r02r * ac.r11r ) / ac.det;
573 temp2 = ac.det;
585 pv_div(temp1, ac.det, &quotient);
828 if (ac.det < 1)
848 pv_div(temp1r, ac.det, &quotient);
851 pv_div(temp1i, ac.det, &quotient);
  /external/srec/config/en.us/grammars/
run_clean_grammars.sh 8 rm *.Grev2.det.txt >/dev/null 2>&1
  /external/skia/experimental/
SkSetPoly3To3_A.cpp 64 SkDScalar det = SkDScalar_setMul(srcOP[0], srcOP[3]) - local
80 matrix->setScaleX(div(M[0], det));
81 matrix->setSkewX( div(M[1], det));
82 matrix->setSkewY (div(M[2], det));
83 matrix->setScaleY(div(M[3], det));
SkSetPoly3To3.cpp 32 SkScalar det = SkScalarMul(srcOP[0], srcOP[3]) - SkScalarMul(srcOP[1], srcOP[2]); local
35 if (SkScalarNearlyZero(det)) {
39 SkScalar invDet = SkScalarInvert(det);
  /external/webkit/WebCore/platform/graphics/transforms/
AffineTransform.cpp 122 double AffineTransform::det() const function in class:WebCore::AffineTransform
129 return det() != 0.0;
134 double determinant = det();
AffineTransform.h 111 double det() const;
TransformationMatrix.cpp 68 // det A
201 double det = determinant4x4(matrix); local
203 if (fabs(det) < SMALL_NUMBER)
210 result[i][j] = result[i][j] / det;
955 double det = WebCore::determinant4x4(m_matrix); local
    [all...]
  /external/srec/config/en.us/
Android.mk 62 (cd $(G2G_INSTALL_PATH); rm -f $*.Grev2.det.txt $*.map $*.omap $*.P.txt $*.params $*.PCLG.txt $*.script)
73 (cd $(G2G_INSTALL_PATH); rm -f $*.Grev2.det.txt $*.map $*.omap $*.P.txt $*.params $*.PCLG.txt $*.script)
  /external/webkit/SunSpider/tests/sunspider-0.9/
3d-raytrace.js 150 var det = u1 * v2 - v1 * u2;
153 this.nu1 = u1 / det;
154 this.nv1 = -v1 / det;
155 this.nu2 = v2 / det;
156 this.nv2 = -u2 / det;
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
3d-raytrace.js 150 var det = u1 * v2 - v1 * u2;
153 this.nu1 = u1 / det;
154 this.nv1 = -v1 / det;
155 this.nu2 = v2 / det;
156 this.nv2 = -u2 / det;
  /frameworks/base/opengl/java/android/opengl/
Matrix.java 207 float det = local
211 if (det == 0.0f) {
216 det = 1 / det;
218 mInv[j + mInvOffset] = dst[j] * det;

Completed in 215 milliseconds

1 2