Home
last modified time | relevance | path

Searched refs:decoded (Results 1 – 25 of 430) sorted by relevance

12345678910>>...18

/third_party/node/test/parallel/
Dtest-punycode.js65 decoded: '\u0644\u064A\u0647\u0645\u0627\u0628\u062A\u0643\u0644\u0645' + property
72 decoded: '\u4ED6\u4EEC\u4E3A\u4EC0\u4E48\u4E0D\u8BF4\u4E2D\u6587' property
78 decoded: '\u4ED6\u5011\u7232\u4EC0\u9EBD\u4E0D\u8AAA\u4E2D\u6587' property
84 decoded: '\u0050\u0072\u006F\u010D\u0070\u0072\u006F\u0073\u0074\u011B' + property
91 decoded: '\u05DC\u05DE\u05D4\u05D4\u05DD\u05E4\u05E9\u05D5\u05D8\u05DC' + property
98 decoded: '\u092F\u0939\u0932\u094B\u0917\u0939\u093F\u0928\u094D\u0926' + property
106 decoded: '\u306A\u305C\u307F\u3093\u306A\u65E5\u672C\u8A9E\u3092\u8A71' + property
114 decoded: '\uC138\uACC4\uC758\uBAA8\uB4E0\uC0AC\uB78C\uB4E4\uC774\uD55C' + property
122 decoded: '\u043F\u043E\u0447\u0435\u043C\u0443\u0436\u0435\u043E\u043D' + property
130 decoded: '\u0050\u006F\u0072\u0071\u0075\u00E9\u006E\u006F\u0070\u0075' + property
[all …]
/third_party/flutter/skia/third_party/externals/spirv-tools/test/
Dhuffman_codec.cpp170 std::string decoded; in TEST() local
172 ASSERT_TRUE(huffman.DecodeFromStream(read_bit, &decoded)); in TEST()
173 EXPECT_EQ("l", decoded); in TEST()
175 ASSERT_TRUE(huffman.DecodeFromStream(read_bit, &decoded)); in TEST()
176 EXPECT_EQ("i", decoded); in TEST()
178 ASSERT_TRUE(huffman.DecodeFromStream(read_bit, &decoded)); in TEST()
179 EXPECT_EQ("n", decoded); in TEST()
181 ASSERT_TRUE(huffman.DecodeFromStream(read_bit, &decoded)); in TEST()
182 EXPECT_EQ("u", decoded); in TEST()
184 ASSERT_TRUE(huffman.DecodeFromStream(read_bit, &decoded)); in TEST()
[all …]
/third_party/python/Modules/
D_codecsmodule.c164 PyObject *codec_tuple(PyObject *decoded, in codec_tuple() argument
167 if (decoded == NULL) in codec_tuple()
169 return Py_BuildValue("Nn", decoded, len); in codec_tuple()
185 PyObject *decoded = PyBytes_DecodeEscape(data->buf, data->len, in _codecs_escape_decode_impl() local
187 return codec_tuple(decoded, data->len); in _codecs_escape_decode_impl()
268 PyObject *decoded = PyUnicode_DecodeUTF7Stateful(data->buf, data->len, in _codecs_utf_7_decode_impl() local
271 return codec_tuple(decoded, consumed); in _codecs_utf_7_decode_impl()
288 PyObject *decoded = PyUnicode_DecodeUTF8Stateful(data->buf, data->len, in _codecs_utf_8_decode_impl() local
291 return codec_tuple(decoded, consumed); in _codecs_utf_8_decode_impl()
310 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, in _codecs_utf_16_decode_impl() local
[all …]
/third_party/ffmpeg/libavcodec/
Dflacdec.c63 int32_t *decoded[FLAC_MAX_CHANNELS]; ///< decoded samples member
152 ret = av_samples_fill_arrays((uint8_t **)s->decoded, NULL, in allocate_buffers()
221 static int decode_residuals(FLACContext *s, int32_t *decoded, int pred_order) in decode_residuals() argument
235 decoded += pred_order; in decode_residuals()
261 *decoded++ = get_sbits_long(&gb, tmp); in decode_residuals()
271 *decoded++ = v; in decode_residuals()
282 static int decode_subframe_fixed(FLACContext *s, int32_t *decoded, in decode_subframe_fixed() argument
292 decoded[i] = get_sbits_long(&s->gb, bps); in decode_subframe_fixed()
295 if ((ret = decode_residuals(s, decoded, pred_order)) < 0) in decode_subframe_fixed()
299 a = decoded[pred_order-1]; in decode_subframe_fixed()
[all …]
Dflacdsp.c46 static void flac_lpc_16_c(int32_t *decoded, const int coeffs[32], in flac_lpc_16_c() argument
51 for (i = pred_order; i < len - 1; i += 2, decoded += 2) { in flac_lpc_16_c()
53 SUINT d = decoded[0]; in flac_lpc_16_c()
57 d = decoded[j]; in flac_lpc_16_c()
62 d = decoded[j] += (SUINT)(s0 >> qlevel); in flac_lpc_16_c()
64 decoded[j + 1] += (SUINT)(s1 >> qlevel); in flac_lpc_16_c()
69 sum += coeffs[j] * (SUINT)decoded[j]; in flac_lpc_16_c()
70 decoded[j] = decoded[j] + (unsigned)(sum >> qlevel); in flac_lpc_16_c()
74 static void flac_lpc_32_c(int32_t *decoded, const int coeffs[32], in flac_lpc_32_c() argument
79 for (i = pred_order; i < len; i++, decoded++) { in flac_lpc_32_c()
[all …]
Dloco.c206 int decoded, ret; in decode_frame() local
213 if (decoded < 0 || decoded >= buf_size) goto buf_too_small; \ in decode_frame()
214 buf += decoded; buf_size -= decoded; \ in decode_frame()
218 decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height, in decode_frame()
221 decoded = loco_decode_plane(l, p->data[1], avctx->width / 2, avctx->height, in decode_frame()
224 decoded = loco_decode_plane(l, p->data[2], avctx->width / 2, avctx->height, in decode_frame()
228 decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height, in decode_frame()
231 decoded = loco_decode_plane(l, p->data[2], avctx->width / 2, avctx->height / 2, in decode_frame()
234 decoded = loco_decode_plane(l, p->data[1], avctx->width / 2, avctx->height / 2, in decode_frame()
238decoded = loco_decode_plane(l, p->data[1] + p->linesize[1]*(avctx->height-1), avctx->width, avctx-… in decode_frame()
[all …]
Dtakdec.c62 int32_t *decoded[TAK_MAX_CHANNELS]; ///< decoded samples for each channel member
255 static int decode_segment(TAKDecContext *s, int8_t mode, int32_t *decoded, int len) in decode_segment() argument
262 memset(decoded, 0, len * sizeof(*decoded)); in decode_segment()
293 decoded[i] = (x >> 1) ^ -(x & 1); in decode_segment()
299 static int decode_residues(TAKDecContext *s, int32_t *decoded, int length) in decode_residues() argument
365 if ((ret = decode_segment(s, mode, decoded, len)) < 0) in decode_residues()
367 decoded += len; in decode_residues()
371 if ((ret = decode_segment(s, mode, decoded, length)) < 0) in decode_residues()
386 static int decode_subframe(TAKDecContext *s, int32_t *decoded, in decode_subframe() argument
395 return decode_residues(s, decoded, subframe_size); in decode_subframe()
[all …]
Dapedec.c174 int32_t *decoded[MAX_CHANNELS]; ///< decoded data for each channel member
667 decode_array_0000(ctx, &ctx->gb, ctx->decoded[0], &ctx->riceY, in entropy_decode_mono_0000()
673 decode_array_0000(ctx, &ctx->gb, ctx->decoded[0], &ctx->riceY, in entropy_decode_stereo_0000()
675 decode_array_0000(ctx, &ctx->gb, ctx->decoded[1], &ctx->riceX, in entropy_decode_stereo_0000()
681 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_mono_3860()
689 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_stereo_3860()
690 int32_t *decoded1 = ctx->decoded[1]; in entropy_decode_stereo_3860()
701 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_mono_3900()
709 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_stereo_3900()
710 int32_t *decoded1 = ctx->decoded[1]; in entropy_decode_stereo_3900()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/audio/
DSDL_wave.c122 Uint8 *freeable, *encoded, *decoded; in MS_ADPCM_decode() local
140 decoded = *audio_buf; in MS_ADPCM_decode()
174 decoded[0] = state[0]->iSamp2 & 0xFF; in MS_ADPCM_decode()
175 decoded[1] = state[0]->iSamp2 >> 8; in MS_ADPCM_decode()
176 decoded += 2; in MS_ADPCM_decode()
178 decoded[0] = state[1]->iSamp2 & 0xFF; in MS_ADPCM_decode()
179 decoded[1] = state[1]->iSamp2 >> 8; in MS_ADPCM_decode()
180 decoded += 2; in MS_ADPCM_decode()
182 decoded[0] = state[0]->iSamp1 & 0xFF; in MS_ADPCM_decode()
183 decoded[1] = state[0]->iSamp1 >> 8; in MS_ADPCM_decode()
[all …]
/third_party/python/Modules/cjkcodecs/
D_codecs_jp.c88 Py_UCS4 decoded; in DECODER() local
113 if (TRYMAP_DEC(cp932ext, decoded, c, c2)) in DECODER()
114 OUTCHAR(decoded); in DECODER()
124 if (TRYMAP_DEC(jisx0208, decoded, c, c2)) in DECODER()
125 OUTCHAR(decoded); in DECODER()
245 Py_UCS4 code, decoded; in DECODER() local
275 else if (TRYMAP_DEC(jisx0213_2_bmp, decoded, c2, c3)) in DECODER()
276 OUTCHAR(decoded); in DECODER()
282 else if (TRYMAP_DEC(jisx0212, decoded, c2, c3)) in DECODER()
283 OUTCHAR(decoded); in DECODER()
[all …]
D_codecs_tw.c49 Py_UCS4 decoded; in DECODER() local
58 if (TRYMAP_DEC(big5, decoded, c, INBYTE2)) { in DECODER()
59 OUTCHAR(decoded); in DECODER()
108 Py_UCS4 decoded; in DECODER() local
118 if (TRYMAP_DEC(cp950ext, decoded, c, INBYTE2)) in DECODER()
119 OUTCHAR(decoded); in DECODER()
120 else if (TRYMAP_DEC(big5, decoded, c, INBYTE2)) in DECODER()
121 OUTCHAR(decoded); in DECODER()
D_codecs_cn.c36 else if (TRYMAP_DEC(gb2312, decoded, dc1 ^ 0x80, dc2 ^ 0x80)) { \
37 OUTCHAR(decoded); \
39 else if (TRYMAP_DEC(gbkext, decoded, dc1, dc2)) { \
40 OUTCHAR(decoded); \
100 Py_UCS4 decoded; in DECODER() local
109 if (TRYMAP_DEC(gb2312, decoded, c ^ 0x80, INBYTE2 ^ 0x80)) { in DECODER()
110 OUTCHAR(decoded); in DECODER()
161 Py_UCS4 decoded; in DECODER() local
269 Py_UCS4 decoded; in DECODER() local
320 else if (TRYMAP_DEC(gb18030ext, decoded, c, c2)) in DECODER()
[all …]
D_codecs_kr.c111 Py_UCS4 decoded; in DECODER() local
155 else if (TRYMAP_DEC(ksx1001, decoded, c ^ 0x80, INBYTE2 ^ 0x80)) { in DECODER()
156 OUTCHAR(decoded); in DECODER()
208 Py_UCS4 decoded; in DECODER() local
217 if (TRYMAP_DEC(ksx1001, decoded, c ^ 0x80, INBYTE2 ^ 0x80)) in DECODER()
218 OUTCHAR(decoded); in DECODER()
219 else if (TRYMAP_DEC(cp949ext, decoded, c, INBYTE2)) in DECODER()
220 OUTCHAR(decoded); in DECODER()
365 Py_UCS4 decoded; in DECODER() local
439 if (TRYMAP_DEC(ksx1001, decoded, t1, t2)) { in DECODER()
[all …]
D_codecs_hk.c114 Py_UCS4 decoded; in DECODER() local
125 if (TRYMAP_DEC(big5, decoded, c, INBYTE2)) { in DECODER()
126 OUTCHAR(decoded); in DECODER()
132 if (TRYMAP_DEC(big5hkscs, decoded, c, INBYTE2)) in DECODER()
156 OUTCHAR(decoded | 0x20000); in DECODER()
160 OUTCHAR(decoded); in DECODER()
/third_party/protobuf/src/google/protobuf/stubs/
Dstrutil_unittest.cc500 string decoded("this junk should be ignored"); in TEST() local
502 StringPiece(encode_buffer, cypher_length), &decoded)); in TEST()
503 EXPECT_EQ(decoded.size(), base64_tests[i].plain_length); in TEST()
504 EXPECT_EQ_ARRAY(decoded.size(), decoded, base64_tests[i].plaintext, i); in TEST()
521 EXPECT_EQ(decoded.size(), base64_tests[i].plain_length); in TEST()
522 EXPECT_EQ_ARRAY(decoded.size(), decoded, base64_tests[i].plaintext, i); in TEST()
532 EXPECT_EQ(decoded.size(), base64_tests[i].plain_length); in TEST()
533 EXPECT_EQ_ARRAY(decoded.size(), decoded, base64_tests[i].plaintext, i); in TEST()
559 EXPECT_EQ(decoded.size(), base64_tests[i].plain_length); in TEST()
560 EXPECT_EQ_ARRAY(decoded.size(), decoded, base64_tests[i].plaintext, i); in TEST()
[all …]
/third_party/node/test/fixtures/wpt/encoding/
Dapi-surrogates-utf8.any.js7 decoded: 'abc123', property
13 decoded: '\uFFFD', property
19 decoded: '\uFFFD', property
25 decoded: 'abc\uFFFD123', property
31 decoded: 'abc\uFFFD123', property
37 decoded: '\uFFFD\uFFFD', property
46 assert_equals(new TextDecoder('utf-8').decode(encoded), t.decoded);
/third_party/flutter/engine/flutter/shell/platform/darwin/common/framework/Source/
Dflutter_codecs_unittest.mm24 NSString* decoded = [codec decode:encoded];
25 ASSERT_TRUE([value isEqualTo:decoded]);
32 NSString* decoded = [codec decode:encoded];
33 ASSERT_TRUE([value isEqualTo:decoded]);
40 NSString* decoded = [codec decode:encoded];
41 ASSERT_TRUE([value isEqualTo:decoded]);
54 NSArray* decoded = [codec decode:encoded];
55 ASSERT_TRUE([value isEqualTo:decoded]);
62 NSDictionary* decoded = [codec decode:encoded];
63 ASSERT_TRUE([value isEqualTo:decoded]);
Dflutter_standard_codec_unittest.mm15 id decoded = [codec decode:encoded];
17 ASSERT_TRUE(decoded == nil);
19 ASSERT_TRUE([value isEqual:decoded]);
25 id decoded = [codec decode:encoded];
27 ASSERT_TRUE(decoded == nil);
29 ASSERT_TRUE([value isEqual:decoded]);
184 FlutterMethodCall* decoded = [codec decodeMethodCall:encoded];
185 ASSERT_TRUE([decoded isEqual:call]);
192 FlutterMethodCall* decoded = [codec decodeMethodCall:encoded];
193 ASSERT_TRUE([decoded isEqual:call]);
[all …]
/third_party/jsoncpp/src/lib_json/
Djson_reader.cpp537 Value decoded; in decodeNumber() local
538 if (!decodeNumber(token, decoded)) in decodeNumber()
540 currentValue().swapPayload(decoded); in decodeNumber()
546 bool Reader::decodeNumber(Token& token, Value& decoded) { in decodeNumber() argument
564 return decodeDouble(token, decoded); in decodeNumber()
573 return decodeDouble(token, decoded); in decodeNumber()
579 decoded = Value::minLargestInt; in decodeNumber()
581 decoded = -Value::LargestInt(value); in decodeNumber()
583 decoded = Value::LargestInt(value); in decodeNumber()
585 decoded = value; in decodeNumber()
[all …]
/third_party/python/Lib/email/
Dquoprimime.py241 decoded = ''
246 decoded += eol
254 decoded += c
263 decoded += unquote(line[i:i+3])
267 decoded += c
271 decoded += eol
273 if encoded[-1] not in '\r\n' and decoded.endswith(eol):
274 decoded = decoded[:-1]
275 return decoded
/third_party/rust/crates/rust-openssl/openssl/src/
Dencrypt.rs508 let mut decoded = vec![0u8; buffer_len]; in rsa_encrypt_decrypt() localVariable
509 let decoded_len = decrypter.decrypt(encoded, &mut decoded).unwrap(); in rsa_encrypt_decrypt()
510 let decoded = &decoded[..decoded_len]; in rsa_encrypt_decrypt() localVariable
512 assert_eq!(decoded, &*input); in rsa_encrypt_decrypt()
539 let mut decoded = vec![0u8; buffer_len]; in rsa_encrypt_decrypt_with_sha256() localVariable
540 let decoded_len = decrypter.decrypt(encoded, &mut decoded).unwrap(); in rsa_encrypt_decrypt_with_sha256()
541 let decoded = &decoded[..decoded_len]; in rsa_encrypt_decrypt_with_sha256() localVariable
543 assert_eq!(decoded, &*input); in rsa_encrypt_decrypt_with_sha256()
566 let mut decoded = vec![0u8; buffer_len]; in rsa_encrypt_decrypt_oaep_label() localVariable
567 let decoded_len = decrypter.decrypt(encoded, &mut decoded).unwrap(); in rsa_encrypt_decrypt_oaep_label()
[all …]
/third_party/mesa3d/src/panfrost/util/
Dpan_lower_sample_position.c55 nir_ssa_def *decoded = nir_fmul_imm(b, nir_i2f16(b, raw), 1.0 / 256.0); in pan_lower_sample_pos_impl() local
58 if (decoded->bit_size != nir_dest_bit_size(intr->dest)) in pan_lower_sample_pos_impl()
59 decoded = nir_f2fN(b, decoded, nir_dest_bit_size(intr->dest)); in pan_lower_sample_pos_impl()
61 nir_ssa_def_rewrite_uses(&intr->dest.ssa, decoded); in pan_lower_sample_pos_impl()
/third_party/rust/crates/rustix/tests/net/
Daddr.rs13 let decoded = SocketAddrAny::read(encoded.as_ptr(), len).unwrap(); in encode_decode() localVariable
14 assert_eq!(decoded, SocketAddrAny::V4(orig)); in encode_decode()
19 let decoded = SocketAddrAny::read(encoded.as_ptr(), len).unwrap(); in encode_decode() localVariable
20 assert_eq!(decoded, SocketAddrAny::V6(orig)); in encode_decode()
27 let decoded = SocketAddrAny::read(encoded.as_ptr(), len).unwrap(); in encode_decode() localVariable
28 assert_eq!(decoded, SocketAddrAny::Unix(orig)); in encode_decode()
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/
Dstandard_method_codec_unittests.cc36 std::unique_ptr<MethodCall<EncodableValue>> decoded = in TEST() local
38 ASSERT_NE(decoded.get(), nullptr); in TEST()
39 EXPECT_TRUE(MethodCallsAreEqual(call, *decoded)); in TEST()
51 std::unique_ptr<MethodCall<EncodableValue>> decoded = in TEST() local
53 ASSERT_NE(decoded.get(), nullptr); in TEST()
54 EXPECT_TRUE(MethodCallsAreEqual(call, *decoded)); in TEST()
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Dvideo_decode_extensions.txt17 The formats for <<decoded-output-picture,output>> and
31 decoded <<decoded-output-picture,output>> and
37 <<decoded-output-picture,decoded output>> and
40 needed while processing the decoded content.
41 Also, if the decoded picture size is expected to change, the images can:
42 be created based on the maximum decoded content size required.
82 to be decoded.
85 . flink:vkCmdControlVideoCodingKHR records operations against the decoded
121 * if the <<decoded-output-picture, output resource>> would need to be used
129 flink:vkCmdDecodeVideoKHR command is to output the decoded pixel data
[all …]

12345678910>>...18