Home
last modified time | relevance | path

Searched refs:decomp (Results 1 – 25 of 99) 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-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) {
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);
/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/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/glib/glib/
Dgunidecomp.c250 const gchar *decomp; in g_unicode_canonical_decomposition() local
261 else if ((decomp = find_decomposition (ch, FALSE)) != NULL) in g_unicode_canonical_decomposition()
266 *result_len = g_utf8_strlen (decomp, -1); in g_unicode_canonical_decomposition()
269 for (p = decomp, i = 0; *p != '\0'; p = g_utf8_next_char (p), i++) in g_unicode_canonical_decomposition()
388 const gchar *decomp; in _g_utf8_normalize_wc() local
399 decomp = find_decomposition (wc, do_compat); in _g_utf8_normalize_wc()
401 if (decomp) in _g_utf8_normalize_wc()
402 n_wc += g_utf8_strlen (decomp, -1); in _g_utf8_normalize_wc()
418 const gchar *decomp; in _g_utf8_normalize_wc() local
430 decomp = find_decomposition (wc, do_compat); in _g_utf8_normalize_wc()
[all …]
/third_party/icu/icu4c/source/test/cintltst/
Dcnormtst.c1488 UChar decomp[32]; in TestGetDecomposition() local
1498 length=unorm2_getDecomposition(n2, 0x20, decomp, UPRV_LENGTHOF(decomp), &errorCode); in TestGetDecomposition()
1503 length=unorm2_getDecomposition(n2, 0xe4, decomp, UPRV_LENGTHOF(decomp), &errorCode); in TestGetDecomposition()
1504 if(U_FAILURE(errorCode) || length!=2 || decomp[0]!=0x61 || decomp[1]!=0x308 || decomp[2]!=0) { in TestGetDecomposition()
1508 length=unorm2_getDecomposition(n2, 0xac01, decomp, UPRV_LENGTHOF(decomp), &errorCode); in TestGetDecomposition()
1509 …if(U_FAILURE(errorCode) || length!=3 || decomp[0]!=0x1100 || decomp[1]!=0x1161 || decomp[2]!=0x11a… in TestGetDecomposition()
1518 length=unorm2_getDecomposition(n2, 0xac01, decomp, -1, &errorCode); in TestGetDecomposition()
1531 UChar decomp[32]; in TestGetRawDecomposition() local
1545 length=unorm2_getRawDecomposition(n2, 0x20, decomp, UPRV_LENGTHOF(decomp), &errorCode); in TestGetRawDecomposition()
1550 length=unorm2_getRawDecomposition(n2, 0xe4, decomp, UPRV_LENGTHOF(decomp), &errorCode); in TestGetRawDecomposition()
[all …]
/third_party/curl/lib/
Dcontent_encoding.c169 char *decomp; /* Put the decompressed data here. */ in inflate_stream() local
180 decomp = malloc(DSIZ); in inflate_stream()
181 if(!decomp) in inflate_stream()
191 z->next_out = (Bytef *) decomp; in inflate_stream()
206 result = Curl_unencode_write(data, writer->downstream, decomp, in inflate_stream()
249 free(decomp); in inflate_stream()
647 char *decomp; in brotli_unencode_write() local
656 decomp = malloc(DSIZ); in brotli_unencode_write()
657 if(!decomp) in brotli_unencode_write()
662 dst = (uint8_t *) decomp; in brotli_unencode_write()
[all …]
/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/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 = decomp; in lcs_init_compression_brotli()
32 if (!decomp) { in lcs_init_compression_brotli()
/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/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/python/Lib/
Dlzma.py332 decomp = LZMADecompressor(format, memlimit, filters)
334 res = decomp.decompress(data)
341 if not decomp.eof:
344 data = decomp.unused_data
Dbz2.py337 decomp = BZ2Decompressor()
339 res = decomp.decompress(data)
346 if not decomp.eof:
349 data = decomp.unused_data
/third_party/uboot/u-boot-2020.01/tools/binman/etype/
Dblob_dtb.py59 def WriteData(self, data, decomp=True): argument
60 ok = Entry_blob.WriteData(self, data, decomp)
Dcbfs.py270 def ReadData(self, decomp=True): argument
274 def ReadChildData(self, child, decomp=True): argument
280 return cfile.data if decomp else cfile.orig_data
/third_party/miniz/
Dminiz_tinfl.c649 tinfl_decompressor decomp; in tinfl_decompress_mem_to_heap() local
653 tinfl_init(&decomp); in tinfl_decompress_mem_to_heap()
657 …tinfl_status status = tinfl_decompress(&decomp, (const mz_uint8 *)pSrc_buf + src_buf_ofs, &src_buf… in tinfl_decompress_mem_to_heap()
687 tinfl_decompressor decomp; in tinfl_decompress_mem_to_mem() local
689 tinfl_init(&decomp); in tinfl_decompress_mem_to_mem()
690 …status = tinfl_decompress(&decomp, (const mz_uint8 *)pSrc_buf, &src_buf_len, (mz_uint8 *)pOut_buf,… in tinfl_decompress_mem_to_mem()
697 tinfl_decompressor decomp; in tinfl_decompress_mem_to_callback() local
702 tinfl_init(&decomp); in tinfl_decompress_mem_to_callback()
706 …tinfl_status status = tinfl_decompress(&decomp, (const mz_uint8 *)pIn_buf + in_buf_ofs, &in_buf_si… in tinfl_decompress_mem_to_callback()
/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/glib/glib/tests/
Dunicode.c1292 gunichar decomp[5]; in test_fully_decompose_canonical() local
1296 len = g_unichar_fully_decompose (ch, FALSE, decomp, G_N_ELEMENTS (decomp)); \ in test_fully_decompose_canonical()
1298 if (expected_len >= 1) g_assert_cmphex (decomp[0], ==, a); \ in test_fully_decompose_canonical()
1299 if (expected_len >= 2) g_assert_cmphex (decomp[1], ==, b); \ in test_fully_decompose_canonical()
1300 if (expected_len >= 3) g_assert_cmphex (decomp[2], ==, c); \ in test_fully_decompose_canonical()
1301 if (expected_len >= 4) g_assert_cmphex (decomp[3], ==, d); \ in test_fully_decompose_canonical()
1344 gunichar *decomp; in test_canonical_decomposition() local
1348 decomp = g_unicode_canonical_decomposition (ch, &len); \ in test_canonical_decomposition()
1350 if (expected_len >= 1) g_assert_cmphex (decomp[0], ==, a); \ in test_canonical_decomposition()
1351 if (expected_len >= 2) g_assert_cmphex (decomp[1], ==, b); \ in test_canonical_decomposition()
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dcanittst.cpp179 UnicodeString decomp, comp; in characterTest() local
184 Normalizer::decompose(s, FALSE, 0, decomp, status); in characterTest()
189 if (s == decomp && s == comp) { in characterTest()
199 if (item == decomp) gotDecomp = TRUE; in characterTest()

1234