Home
last modified time | relevance | path

Searched refs:decomp (Results 1 – 25 of 92) sorted by relevance

1234

/third_party/ffmpeg/tests/ref/fate/
Dj2k-dwt1 5/3i, decomp:15 border 151 170 140 183 milli-err2: 0
2 9/7i, decomp:15 border 151 170 140 183 milli-err2: 544
3 9/7f, decomp:15 border 151 170 140 183 err2: 0.000
4 5/3i, decomp:21 border 173 201 81 189 milli-err2: 0
5 9/7i, decomp:21 border 173 201 81 189 milli-err2: 592
6 9/7f, decomp:21 border 173 201 81 189 err2: 0.000
7 5/3i, decomp:22 border 213 227 76 245 milli-err2: 0
8 9/7i, decomp:22 border 213 227 76 245 milli-err2: 533
9 9/7f, decomp:22 border 213 227 76 245 err2: 0.000
10 5/3i, decomp:13 border 134 157 184 203 milli-err2: 0
[all …]
/third_party/node/test/parallel/
Dtest-zlib-bytes-read.js56 const decomp = zlib[method[1]]();
57 decomp.on('data', function(d) {
63 decomp.on('end', common.mustCall(function() {
71 decompWriter = createWriter(decomp, compData);
81 const decomp = zlib[method[1]]();
82 decomp.on('data', function(d) {
88 decomp.on('end', common.mustCall(function() {
98 decompWriter = createWriter(decomp, compDataExtra);
Dtest-zlib-truncated.js21 { comp: 'gzip', decomp: 'gunzip', decompSync: 'gunzipSync' },
22 { comp: 'gzip', decomp: 'unzip', decompSync: 'unzipSync' },
23 { comp: 'deflate', decomp: 'inflate', decompSync: 'inflateSync' },
24 { comp: 'deflateRaw', decomp: 'inflateRaw', decompSync: 'inflateRawSync' },
36 zlib[methods.decomp](compressed, function(err, result) {
47 zlib[methods.decomp](truncated, function(err, result) {
58 zlib[methods.decomp](truncated, syncFlushOpt, function(err, decompressed) {
/third_party/ffmpeg/libavutil/tests/
Dlzo.c40 uint8_t *decomp = av_malloc(MAXSZ + 16); in main() local
61 if (lzo1x_decompress_safe(comp, inlen, decomp, &outlen, NULL)) in main()
63 if (lzo1x_decompress(comp, inlen, decomp, &outlen, NULL)) in main()
65 if (av_lzo1x_decode(decomp, &outlen, comp, &inlen)) in main()
70 if (memcmp(orig, decomp, s)) in main()
77 av_free(decomp); in main()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
DTestDeprecatedNormalizerAPI.java119 String decomp = Normalizer.decompose(xString, compat); in assertNoDecomp() local
120 if (!decomp.equals(xString)) { in assertNoDecomp()
121 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")" in assertNoDecomp()
138 String decomp = iter.decomposition(); in TestRoundTrip() local
139 String comp = Normalizer.compose(decomp, compat); in TestRoundTrip()
147 if (decomp.length() == 4) continue; in TestRoundTrip()
150 errln("ERROR: Round trip invalid: " + hex(chStr) + " --> " + hex(decomp) in TestRoundTrip()
153 errln(" char decomp is '" + decomp + "'"); in TestRoundTrip()
DNormalizerBuilder.java175 String decomp = fromHex(segment); in buildDecompositionTables() local
190 int decompLen = UTF16Util.countCodePoint(decomp); in buildDecompositionTables()
194 decompose.put(value, decomp); in buildDecompositionTables()
201 int second = UTF16Util.nextCodePoint(decomp, 0); in buildDecompositionTables()
204 second = UTF16Util.nextCodePoint(decomp, in buildDecompositionTables()
216 System.out.println("Excluding: " + decomp); in buildDecompositionTables()
418 String decomp = decomposeData[i+1]; in setMinimalDecomp() local
421 decompose.put(value, decomp); in setMinimalDecomp()
424 int second = UTF16Util.nextCodePoint(decomp, 0); in setMinimalDecomp()
425 if (decomp.length() > 1) { in setMinimalDecomp()
[all …]
DNormalizerData.java64 String decomp = decompose.get(ch); in getRecursiveDecomposition() local
65 if (decomp != null && !(canonical && isCompatibility.get(ch))) { in getRecursiveDecomposition()
66 for (int i = 0; i < decomp.length(); i+=UTF16Util.codePointLength(ch)) { in getRecursiveDecomposition()
67 ch = UTF16Util.nextCodePoint(decomp, i); in getRecursiveDecomposition()
DTestCanonicalIterator.java203 String decomp = Normalizer.decompose(s, false); in characterTest() local
208 if (s.equals(decomp) && s.equals(comp)) return; in characterTest()
216 if (item.equals(decomp)) gotDecomp = true; in characterTest()
225 + (item.equals(decomp) ? "\t(*decomp*)" : "") in characterTest()
257 errln("FAIL CanonicalIterator: " + s + " decomp: " +decomp+" comp: "+comp); in characterTest()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
DTestDeprecatedNormalizerAPI.java122 String decomp = Normalizer.decompose(xString, compat); in assertNoDecomp() local
123 if (!decomp.equals(xString)) { in assertNoDecomp()
124 errln("ERROR: " + hex(x) + " has decomposition (" + hex(decomp) + ")" in assertNoDecomp()
141 String decomp = iter.decomposition(); in TestRoundTrip() local
142 String comp = Normalizer.compose(decomp, compat); in TestRoundTrip()
150 if (decomp.length() == 4) continue; in TestRoundTrip()
153 errln("ERROR: Round trip invalid: " + hex(chStr) + " --> " + hex(decomp) in TestRoundTrip()
156 errln(" char decomp is '" + decomp + "'"); in TestRoundTrip()
DNormalizerBuilder.java176 String decomp = fromHex(segment); in buildDecompositionTables() local
191 int decompLen = UTF16Util.countCodePoint(decomp); in buildDecompositionTables()
195 decompose.put(value, decomp); in buildDecompositionTables()
202 int second = UTF16Util.nextCodePoint(decomp, 0); in buildDecompositionTables()
205 second = UTF16Util.nextCodePoint(decomp, in buildDecompositionTables()
217 System.out.println("Excluding: " + decomp); in buildDecompositionTables()
419 String decomp = decomposeData[i+1]; in setMinimalDecomp() local
422 decompose.put(value, decomp); in setMinimalDecomp()
425 int second = UTF16Util.nextCodePoint(decomp, 0); in setMinimalDecomp()
426 if (decomp.length() > 1) { in setMinimalDecomp()
[all …]
DNormalizerData.java67 String decomp = decompose.get(ch); in getRecursiveDecomposition() local
68 if (decomp != null && !(canonical && isCompatibility.get(ch))) { in getRecursiveDecomposition()
69 for (int i = 0; i < decomp.length(); i+=UTF16Util.codePointLength(ch)) { in getRecursiveDecomposition()
70 ch = UTF16Util.nextCodePoint(decomp, i); in getRecursiveDecomposition()
DTestCanonicalIterator.java206 String decomp = Normalizer.decompose(s, false); in characterTest() local
211 if (s.equals(decomp) && s.equals(comp)) return; in characterTest()
219 if (item.equals(decomp)) gotDecomp = true; in characterTest()
228 + (item.equals(decomp) ? "\t(*decomp*)" : "") in characterTest()
260 errln("FAIL CanonicalIterator: " + s + " decomp: " +decomp+" comp: "+comp); in characterTest()
/third_party/curl/lib/
Dcontent_encoding.c183 char *decomp; /* Put the decompressed data here. */ in inflate_stream() local
194 decomp = malloc(DSIZ); in inflate_stream()
195 if(!decomp) in inflate_stream()
205 z->next_out = (Bytef *) decomp; in inflate_stream()
220 result = Curl_unencode_write(data, writer->downstream, decomp, in inflate_stream()
264 free(decomp); in inflate_stream()
654 char *decomp; in brotli_unencode_write() local
663 decomp = malloc(DSIZ); in brotli_unencode_write()
664 if(!decomp) in brotli_unencode_write()
669 dst = (uint8_t *) decomp; in brotli_unencode_write()
[all …]
/third_party/icu/icu4c/source/test/cintltst/
Dcnormtst.c1491 UChar decomp[32]; in TestGetDecomposition() local
1501 length=unorm2_getDecomposition(n2, 0x20, decomp, UPRV_LENGTHOF(decomp), &errorCode); in TestGetDecomposition()
1506 length=unorm2_getDecomposition(n2, 0xe4, decomp, UPRV_LENGTHOF(decomp), &errorCode); in TestGetDecomposition()
1507 if(U_FAILURE(errorCode) || length!=2 || decomp[0]!=0x61 || decomp[1]!=0x308 || decomp[2]!=0) { in TestGetDecomposition()
1511 length=unorm2_getDecomposition(n2, 0xac01, decomp, UPRV_LENGTHOF(decomp), &errorCode); in TestGetDecomposition()
1512 …if(U_FAILURE(errorCode) || length!=3 || decomp[0]!=0x1100 || decomp[1]!=0x1161 || decomp[2]!=0x11a… in TestGetDecomposition()
1521 length=unorm2_getDecomposition(n2, 0xac01, decomp, -1, &errorCode); in TestGetDecomposition()
1534 UChar decomp[32]; in TestGetRawDecomposition() local
1548 length=unorm2_getRawDecomposition(n2, 0x20, decomp, UPRV_LENGTHOF(decomp), &errorCode); in TestGetRawDecomposition()
1553 length=unorm2_getRawDecomposition(n2, 0xe4, decomp, UPRV_LENGTHOF(decomp), &errorCode); in TestGetRawDecomposition()
[all …]
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DDecompTable.java27 private int[] decomp; field in DecompTable.DecompEntry
34 decomp = new int[decompCount]; in DecompEntry()
40 decomp[out++] = cp; in DecompEntry()
51 return decomp; in getDecomposition()
56 return decomp.length; in getDecompositionCount()
61 if (i >= 0 && i < decomp.length) { in getDecomposedCharacter()
62 return decomp[i]; in getDecomposedCharacter()
/third_party/libwebsockets/lib/roles/http/compression/deflate/
Ddeflate.c28 lcs_init_compression_deflate(lws_comp_ctx_t *ctx, int decomp) in lcs_init_compression_deflate() argument
32 ctx->is_decompression = !!decomp; in lcs_init_compression_deflate()
40 if (!decomp && in lcs_init_compression_deflate()
49 if (decomp && in lcs_init_compression_deflate()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DCanonicalIterator.java54 nfd = allModes.decomp; in CanonicalIterator()
368 String decomp = nfcImpl.getDecomposition(comp); in extract() local
369 if (decomp == null) { in extract()
370 decomp = UTF16.valueOf(comp); in extract()
377 int decompCp = UTF16.charAt(decomp,0); in extract()
386 if (decompPos == decomp.length()) { // done, have all decomp characters! in extract()
391 decompCp = UTF16.charAt(decomp, decompPos); in extract()
DNormalizer2.java127 return Norm2AllModes.getNFCInstance().decomp; in getNFDInstance()
147 return Norm2AllModes.getNFKCInstance().decomp; in getNFKDInstance()
194 case DECOMPOSE: return all2Modes.decomp; in getInstance()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCanonicalIterator.java54 nfd = allModes.decomp; in CanonicalIterator()
372 String decomp = nfcImpl.getDecomposition(comp); in extract() local
373 if (decomp == null) { in extract()
374 decomp = UTF16.valueOf(comp); in extract()
381 int decompCp = UTF16.charAt(decomp,0); in extract()
390 if (decompPos == decomp.length()) { // done, have all decomp characters! in extract()
395 decompCp = UTF16.charAt(decomp, decompPos); in extract()
DNormalizer2.java134 return Norm2AllModes.getNFCInstance().decomp; in getNFDInstance()
156 return Norm2AllModes.getNFKCInstance().decomp; in getNFKDInstance()
205 case DECOMPOSE: return all2Modes.decomp; in getInstance()
/third_party/libwebsockets/lib/roles/http/compression/
Dstream.c62 unsigned char **p, unsigned char *end, char decomp) in lws_http_compression_apply() argument
74 if (!decomp && !(wsi->http.comp_accept_mask & (1 << n))) in lws_http_compression_apply()
84 lcs_available[n]->init_compression(&wsi->http.comp_ctx, decomp); in lws_http_compression_apply()
94 wsi->http.comp_ctx.is_decompression = !!decomp; in lws_http_compression_apply()
/third_party/libwebsockets/lib/roles/http/compression/brotli/
Dbrotli.c28 lcs_init_compression_brotli(lws_comp_ctx_t *ctx, int decomp) in lcs_init_compression_brotli() argument
30 ctx->is_decompression = (unsigned char)!!decomp; in lcs_init_compression_brotli()
32 if (!decomp) { in lcs_init_compression_brotli()
/third_party/gstreamer/gstplugins_good/gst/matroska/
Dlzo.c263 guint8 *decomp = av_malloc (MAXSZ + 16); in main() local
275 if (lzo1x_decompress_safe (comp, inlen, decomp, &outlen, NULL)) in main()
277 if (lzo1x_decompress (comp, inlen, decomp, &outlen, NULL)) in main()
279 if (lzo1x_decode (decomp, &outlen, comp, &inlen)) in main()
284 if (memcmp (orig, decomp, s)) in main()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
DRoundTripTest.java280 String decomp = Normalizer.decompose(charStr, false); in addRepresentativeHangul() local
281 if (decomp.length() != leng) { in addRepresentativeHangul()
284 if (decomp.startsWith("\u110B ") != noFirstConsonant) { in addRepresentativeHangul()
287 if (!notYetSeen.containsAll(decomp)) { in addRepresentativeHangul()
289 notYetSeen.addAll(decomp); in addRepresentativeHangul()
938 String decomp = Normalizer.normalize(sourceString, Normalizer.NFD); in is() local
939 for (int i = 0; i < decomp.length(); ++i) { // don't worry about surrogates in is()
940 switch (getType(decomp.charAt(i))) { in is()
942 t = getType(decomp.charAt(i+1)); in is()
946 t = getType(decomp.charAt(i-1)); in is()
[all …]
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DRoundTripTest.java265 String decomp = Normalizer.decompose(charStr, false); in addRepresentativeHangul() local
266 if (decomp.length() != leng) { in addRepresentativeHangul()
269 if (decomp.startsWith("\u110B ") != noFirstConsonant) { in addRepresentativeHangul()
272 if (!notYetSeen.containsAll(decomp)) { in addRepresentativeHangul()
274 notYetSeen.addAll(decomp); in addRepresentativeHangul()
923 String decomp = Normalizer.normalize(sourceString, Normalizer.NFD); in is() local
924 for (int i = 0; i < decomp.length(); ++i) { // don't worry about surrogates in is()
925 switch (getType(decomp.charAt(i))) { in is()
927 t = getType(decomp.charAt(i+1)); in is()
931 t = getType(decomp.charAt(i-1)); in is()
[all …]

1234