Searched defs:decomp (Results 1 - 19 of 19) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DPerspectiveTransformOperation.cpp55 TransformationMatrix::DecomposedType decomp; local
56 toT.decompose(decomp);
58 if (decomp.perspectiveZ) {
59 double val = -1.0 / decomp.perspectiveZ;
H A DRotateTransformOperation.cpp72 TransformationMatrix::DecomposedType decomp; local
73 toT.decompose(decomp);
76 double x = -decomp.quaternionX;
77 double y = -decomp.quaternionY;
78 double z = -decomp.quaternionZ;
86 angle = rad2deg(acos(decomp.quaternionW) * 2);
H A DTransformationMatrix.cpp1059 bool TransformationMatrix::decompose(DecomposedType& decomp) const
1062 memset(&decomp, 0, sizeof(decomp));
1063 decomp.perspectiveW = 1;
1064 decomp.scaleX = 1;
1065 decomp.scaleY = 1;
1066 decomp.scaleZ = 1;
1069 if (!WebCore::decompose(m_matrix, decomp))
1074 void TransformationMatrix::recompose(const DecomposedType& decomp) argument
1079 m_matrix[0][3] = (float) decomp
[all...]
/external/icu4c/common/
H A Dcaniter.cpp510 const UChar *decomp=decompString.getBuffer(); local
518 U16_NEXT(decomp, decompPos, decompLen, decompCp);
524 if (cp == decompCp) { // if equal, eat another cp from decomp
528 if (decompPos == decompLen) { // done, have all decomp characters!
533 U16_NEXT(decomp, decompPos, decompLen, decompCp);
546 // if the decomp class < the segment class, we fail
H A Dnormalizer2.cpp354 Norm2AllModes() : comp(impl, FALSE), decomp(impl), fcd(impl), fcc(impl, TRUE) {}
358 DecomposeNormalizer2 decomp; member in struct:Norm2AllModes
449 return allModes!=NULL ? &allModes->decomp : NULL;
476 return allModes!=NULL ? &allModes->decomp : NULL;
610 return &allModes->decomp;
H A Dnormalizer2impl.cpp543 const UChar *decomp=NULL; local
548 return decomp;
555 decomp=buffer;
614 // decomp after-boundary: same as hasFCDBoundaryAfter(),
/external/icu4c/i18n/
H A Ducol_elm.h124 UChar *decomp; member in struct:__anon4799
H A Ducol_elm.cpp1624 const UChar *decomp; local
1632 decomp = ((enumStruct *)context)->nfcImpl->
1634 //if((noOfDec = unorm_normalize(comp, len, UNORM_NFD, 0, decomp, 256, status)) > 1
1635 //|| (noOfDec == 1 && *decomp != (UChar)u32))
1636 if(decomp != NULL)
1640 if(ucol_strcoll(tempColl, comp, len, decomp, noOfDec) != UCOL_EQUAL) {
1646 U16_NEXT(decomp, i, noOfDec, c);
1658 ucol_setText(iter, decomp, noOfDec, status);
1669 el.cPoints = (UChar *)decomp;
1682 ucol_setText(colEl, decomp, noOfDe
1747 UChar decomp[256], comp[256]; local
1863 UChar decomp[256]; local
[all...]
/external/icu4c/test/intltest/
H A Dcanittst.cpp178 UnicodeString decomp, comp; local
183 Normalizer::decompose(s, FALSE, 0, decomp, status);
186 // skip characters that don't have either decomp.
188 if (s == decomp && s == comp) {
198 if (item == decomp) gotDecomp = TRUE;
H A Ducdtest.cpp353 UnicodeString decomp=nfd->normalize(UnicodeString(start), errorCode); local
354 if(decomp.length()>1 && decomp[0]==0x49) {
360 errln("[canon start set of 0049] != [all c with canon decomp with 0049]");
365 // "[canon start set of 0049]", "[all c with canon decomp with 0049]",
H A Dregcoll.cpp168 String[] decomp = {
180 static const UChar decomp[][CollationRegressionTest::MAX_TOKEN_LEN] = local
195 compareArray(*c, decomp, ARRAY_LENGTH(decomp));
H A Dtstnorm.cpp167 logln("testing decomp...");
271 UnicodeString decomp[1][3]; local
272 decomp[0][0] = str("\\u0f77");
273 decomp[0][1] = str("\\u0f77");
274 decomp[0][2] = str("\\u0fb2\\u0f71\\u0f80");
281 staticTest(UNORM_NFD, 0, decomp, ARRAY_LENGTH(decomp), 1);
282 staticTest(UNORM_NFKD, 0, decomp, ARRAY_LENGTH(decomp), 2);
H A Dtransrt.cpp133 UnicodeString decomp; local
135 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
139 for (int i = 0; i < decomp.length(); ++i) { // don't worry about surrogates
140 switch (getType(decomp.charAt(i))) {
141 case 0: t = getType(decomp.charAt(i+1));
144 case 1: t = getType(decomp.charAt(i-1));
147 case 2: t = getType(decomp.charAt(i-1));
179 UnicodeString decomp; local
181 Normalizer::decompose(sourceString, FALSE, 0, decomp, ec);
190 for (int32_t i = 0; i < decomp
[all...]
/external/bluetooth/glib/glib/
H A Dgunidecomp.c0 /* decomp.c - Character decomposition.
225 const gchar *decomp; local
236 else if ((decomp = find_decomposition (ch, FALSE)) != NULL)
241 *result_len = g_utf8_strlen (decomp, -1);
244 for (p = decomp, i = 0; *p != '\0'; p = g_utf8_next_char (p), i++)
366 const gchar *decomp; local
377 decomp = find_decomposition (wc, do_compat);
379 if (decomp)
380 n_wc += g_utf8_strlen (decomp, -1);
396 const gchar *decomp; local
[all...]
H A Dguniprop.c837 gunichar *decomp; local
839 decomp = g_unicode_canonical_decomposition (c, &decomp_len);
842 if (decomp[i] != 0x307 /* COMBINING DOT ABOVE */)
843 len += g_unichar_to_utf8 (g_unichar_toupper (decomp[i]), out_buffer ? out_buffer + len : NULL);
845 g_free (decomp);
/external/zlib/contrib/blast/
H A Dblast.c276 local int decomp(struct state *s) function
397 err = 2; /* then skip decomp(), return error */
399 err = decomp(&s); /* decompress */
/external/chromium/net/spdy/
H A Dspdy_framer.cc1233 z_stream* decomp = GetHeaderDecompressor(); local
1248 decomp->next_in = reinterpret_cast<Bytef*>(const_cast<char*>(payload));
1249 decomp->avail_in = payload_length;
1253 decomp->next_out = reinterpret_cast<Bytef*>(buffer);
1254 decomp->avail_out = arraysize(buffer);
1255 int rv = DecompressHeaderBlockInZStream(decomp);
1261 DCHECK_GT(arraysize(buffer), decomp->avail_out);
1262 size_t len = arraysize(buffer) - decomp->avail_out;
1270 more = decomp->avail_in > 0;
1285 z_stream* decomp local
[all...]
/external/icu4c/test/cintltst/
H A Dcnormtst.c1473 UChar decomp[32]; local
1483 length=unorm2_getDecomposition(n2, 0x20, decomp, LENGTHOF(decomp), &errorCode);
1488 length=unorm2_getDecomposition(n2, 0xe4, decomp, LENGTHOF(decomp), &errorCode);
1489 if(U_FAILURE(errorCode) || length!=2 || decomp[0]!=0x61 || decomp[1]!=0x308 || decomp[2]!=0) {
1493 length=unorm2_getDecomposition(n2, 0xac01, decomp, LENGTHOF(decomp),
[all...]
/external/chromium/net/tools/spdyshark/
H A Dpacket-spdy.c763 spdy_decompress_header_block(tvbuff_t *tvb, z_streamp decomp, argument
771 decomp->next_in = (Bytef *)hptr;
772 decomp->avail_in = length;
773 decomp->next_out = uncomp_block;
774 decomp->avail_out = bufsize;
775 retcode = inflate(decomp, Z_SYNC_FLUSH);
777 if (decomp->adler != dictionary_id) {
779 (guint)decomp->adler, dictionary_id);
781 retcode = inflateSetDictionary(decomp,
785 retcode = inflate(decomp, Z_SYNC_FLUS
1096 z_streamp decomp = frame_type == SPDY_SYN_STREAM ? local
[all...]

Completed in 229 milliseconds