Home
last modified time | relevance | path

Searched refs:decoded (Results 1 - 25 of 122) sorted by relevance

12345

/third_party/node/test/parallel/
H A Dtest-punycode.js73 decoded: '\u0644\u064A\u0647\u0645\u0627\u0628\u062A\u0643\u0644\u0645' +
80 decoded: '\u4ED6\u4EEC\u4E3A\u4EC0\u4E48\u4E0D\u8BF4\u4E2D\u6587'
86 decoded: '\u4ED6\u5011\u7232\u4EC0\u9EBD\u4E0D\u8AAA\u4E2D\u6587'
92 decoded: '\u0050\u0072\u006F\u010D\u0070\u0072\u006F\u0073\u0074\u011B' +
99 decoded: '\u05DC\u05DE\u05D4\u05D4\u05DD\u05E4\u05E9\u05D5\u05D8\u05DC' +
106 decoded: '\u092F\u0939\u0932\u094B\u0917\u0939\u093F\u0928\u094D\u0926' +
114 decoded: '\u306A\u305C\u307F\u3093\u306A\u65E5\u672C\u8A9E\u3092\u8A71' +
122 decoded: '\uC138\uACC4\uC758\uBAA8\uB4E0\uC0AC\uB78C\uB4E4\uC774\uD55C' +
130 decoded: '\u043F\u043E\u0447\u0435\u043C\u0443\u0436\u0435\u043E\u043D' +
138 decoded
[all...]
/third_party/curl/tests/unit/
H A Dunit1302.c55 unsigned char *decoded; variable
121 rc = Curl_base64_decode("aWlpaQ==", &decoded, &size);
124 verify_memory(decoded, "iiii", 4);
125 Curl_safefree(decoded); variable
127 rc = Curl_base64_decode("aWlp", &decoded, &size);
130 verify_memory(decoded, "iii", 3);
131 Curl_safefree(decoded); variable
133 rc = Curl_base64_decode("aWk=", &decoded, &size);
136 verify_memory(decoded, "ii", 2);
137 Curl_safefree(decoded); variable
143 Curl_safefree(decoded); global() variable
[all...]
/third_party/ffmpeg/libavcodec/
H A 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_orde in decode_subframe_fixed()
334 lpc_analyze_remodulate(SUINT32 *decoded, const int coeffs[32], int order, int qlevel, int len, int bps) lpc_analyze_remodulate() argument
361 decode_subframe_lpc(FLACContext *s, int32_t *decoded, int pred_order, int bps) decode_subframe_lpc() argument
407 int32_t *decoded = s->decoded[channel]; decode_subframe() local
[all...]
H A Dflacdsp.c47 static void flac_lpc_16_c(int32_t *decoded, const int coeffs[32], in flac_lpc_16_c() argument
52 for (i = pred_order; i < len - 1; i += 2, decoded += 2) { in flac_lpc_16_c()
54 SUINT d = decoded[0]; in flac_lpc_16_c()
58 d = decoded[j]; in flac_lpc_16_c()
63 d = decoded[j] += (SUINT)(s0 >> qlevel); in flac_lpc_16_c()
65 decoded[j + 1] += (SUINT)(s1 >> qlevel); in flac_lpc_16_c()
70 sum += coeffs[j] * (SUINT)decoded[j]; in flac_lpc_16_c()
71 decoded[j] = decoded[j] + (unsigned)(sum >> qlevel); in flac_lpc_16_c()
75 static void flac_lpc_32_c(int32_t *decoded, cons argument
[all...]
H A Dloco.c205 int decoded, ret; in decode_frame() local
212 if (decoded < 0 || decoded >= buf_size) goto buf_too_small; \ in decode_frame()
213 buf += decoded; buf_size -= decoded; \ in decode_frame()
217 decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height, in decode_frame()
220 decoded = loco_decode_plane(l, p->data[1], avctx->width / 2, avctx->height, in decode_frame()
223 decoded = loco_decode_plane(l, p->data[2], avctx->width / 2, avctx->height, in decode_frame()
227 decoded = loco_decode_plane(l, p->data[0], avctx->width, avctx->height, in decode_frame()
230 decoded in decode_frame()
[all...]
H A 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, lengt in decode_residues()
386 decode_subframe(TAKDecContext *s, int32_t *decoded, int subframe_size, int prev_subframe_size) decode_subframe() argument
514 int32_t *decoded = s->decoded[chan]; decode_channel() local
773 int32_t *decoded = s->decoded[chan]; tak_decode_frame() local
862 int32_t *decoded = s->decoded[chan]; tak_decode_frame() local
894 int32_t *decoded = s->decoded[chan]; tak_decode_frame() local
902 int32_t *decoded = s->decoded[chan]; tak_decode_frame() local
[all...]
H A Dapedec.c99 /** Filters applied to the decoded data */
175 int32_t *decoded[MAX_CHANNELS]; ///< decoded data for each channel member
671 decode_array_0000(ctx, &ctx->gb, ctx->decoded[0], &ctx->riceY, in entropy_decode_mono_0000()
677 decode_array_0000(ctx, &ctx->gb, ctx->decoded[0], &ctx->riceY, in entropy_decode_stereo_0000()
679 decode_array_0000(ctx, &ctx->gb, ctx->decoded[1], &ctx->riceX, in entropy_decode_stereo_0000()
685 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_mono_3860()
693 int32_t *decoded0 = ctx->decoded[0]; in entropy_decode_stereo_3860()
694 int32_t *decoded1 = ctx->decoded[1]; in entropy_decode_stereo_3860()
705 int32_t *decoded0 = ctx->decoded[ in entropy_decode_mono_3900()
872 filter_fast_3320(APEPredictor *p, const int decoded, const int filter, const int delayA) filter_fast_3320() argument
898 filter_3800(APEPredictor *p, const unsigned decoded, const int filter, const int delayA, const int delayB, const int start, const int shift) filter_3800() argument
1090 predictor_update_3930(APEPredictor *p, const int decoded, const int filter, const int delayA) predictor_update_3930() argument
1170 predictor_update_filter(APEPredictor64 *p, const int decoded, const int filter, const int delayA, const int delayB, const int adaptA, const int adaptB, int compression_level) predictor_update_filter() argument
[all...]
/third_party/protobuf/src/google/protobuf/stubs/
H A Dstrutil_unittest.cc490 // Is it the expected decoded value? in TEST()
500 string decoded("this junk should be ignored"); in TEST()
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 in TEST()
[all...]
/third_party/python/Modules/cjkcodecs/
H A 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()
386 Py_UCS4 decoded; DECODER() local
512 Py_UCS4 decoded; DECODER() local
675 Py_UCS4 code, decoded; DECODER() local
[all...]
H A 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()
H A 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, in DECODER()
414 Py_UCS4 decoded; DECODER() local
[all...]
H A 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()
174 NEXT_IN(2); /* all decoded code points are pairs, above. */ in DECODER()
H A 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, t in DECODER()
[all...]
/third_party/curl/lib/
H A Didn.c150 * Curl_idn_decode() returns an allocated IDN decoded string if it was
159 char *decoded = NULL; in idn_decode() local
171 int rc = IDN2_LOOKUP(input, &decoded, flags); in idn_decode()
175 rc = IDN2_LOOKUP(input, &decoded, IDN2_TRANSITIONAL); in idn_decode()
183 result = win32_idn_to_ascii(input, &decoded); in idn_decode()
186 *output = decoded; in idn_decode()
269 char *decoded; in Curl_idnconvert_hostname() local
270 CURLcode result = idn_decode(host->name, &decoded); in Curl_idnconvert_hostname()
272 if(!*decoded) { in Curl_idnconvert_hostname()
274 Curl_idn_free(decoded); in Curl_idnconvert_hostname()
[all...]
/third_party/python/Lib/email/
H A Dquoprimime.py163 quoted-printable character "=" appended to them, so the decoded text will
240 # decoded string with string concatenation, which could be done much more
242 decoded = ''
247 decoded += eol
255 decoded += c
264 decoded += unquote(line[i:i+3])
268 decoded += c
272 decoded += eol
274 if encoded[-1] not in '\r\n' and decoded.endswith(eol):
275 decoded
[all...]
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dencrypt.rs395 /// Note that the length of the output buffer can be greater of the length of the decoded data.
428 /// let mut decoded = vec![0u8; buffer_len];
431 /// let decoded_len = decrypter.decrypt(&input, &mut decoded).unwrap();
434 /// let decoded = &decoded[..decoded_len];
508 let mut decoded = vec![0u8; buffer_len]; in rsa_encrypt_decrypt() variables
509 let decoded_len = decrypter.decrypt(encoded, &mut decoded).unwrap(); in rsa_encrypt_decrypt()
510 let decoded = &decoded[..decoded_len]; in rsa_encrypt_decrypt()
512 assert_eq!(decoded, in rsa_encrypt_decrypt()
539 let mut decoded = vec![0u8; buffer_len]; rsa_encrypt_decrypt_with_sha256() variables
566 let mut decoded = vec![0u8; buffer_len]; rsa_encrypt_decrypt_oaep_label() variables
574 let mut decoded = vec![0u8; buffer_len]; rsa_encrypt_decrypt_oaep_label() variables
[all...]
/third_party/mesa3d/src/panfrost/util/
H A 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/node/deps/v8/src/strings/
H A Duri.cc77 void AddToBuffer(base::uc16 decoded, String::FlatContent* uri_content, in AddToBuffer() argument
79 if (is_uri && IsReservedPredicate(decoded)) { in AddToBuffer()
89 buffer->push_back(decoded); in AddToBuffer()
106 base::uc16 decoded = static_cast<base::uc16>(two_digits); in IntoTwoByte() local
107 if (decoded > unibrow::Utf8::kMaxOneByteChar) { in IntoTwoByte()
109 octets[0] = decoded; in IntoTwoByte()
112 while ((decoded << ++number_of_continuation_bytes) & 0x80) { in IntoTwoByte()
130 AddToBuffer(decoded, uri_content, k - 2, is_uri, buffer); in IntoTwoByte()
156 base::uc16 decoded = static_cast<base::uc16>(two_digits); in IntoOneAndTwoByte() local
157 if (decoded > unibro in IntoOneAndTwoByte()
[all...]
/third_party/rust/crates/rustix/tests/net/
H A Daddr.rs13 let decoded = SocketAddrAny::read(encoded.as_ptr(), len).unwrap(); in encode_decode()
14 assert_eq!(decoded, SocketAddrAny::V4(orig)); in encode_decode()
19 let decoded = SocketAddrAny::read(encoded.as_ptr(), len).unwrap(); in encode_decode()
20 assert_eq!(decoded, SocketAddrAny::V6(orig)); in encode_decode()
27 let decoded = SocketAddrAny::read(encoded.as_ptr(), len).unwrap(); in encode_decode()
28 assert_eq!(decoded, SocketAddrAny::Unix(orig)); in encode_decode()
/third_party/python/Modules/
H A 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 in _codecs_utf_16_decode_impl() local
332 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, _codecs_utf_16_le_decode_impl() local
354 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, _codecs_utf_16_be_decode_impl() local
384 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, _codecs_utf_16_ex_decode_impl() local
408 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, _codecs_utf_32_decode_impl() local
430 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, _codecs_utf_32_le_decode_impl() local
452 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, _codecs_utf_32_be_decode_impl() local
480 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, _codecs_utf_32_ex_decode_impl() local
502 PyObject *decoded = _PyUnicode_DecodeUnicodeEscapeStateful(data->buf, data->len, _codecs_unicode_escape_decode_impl() local
522 PyObject *decoded = _PyUnicode_DecodeRawUnicodeEscapeStateful(data->buf, data->len, _codecs_raw_unicode_escape_decode_impl() local
540 PyObject *decoded = PyUnicode_DecodeLatin1(data->buf, data->len, errors); _codecs_latin_1_decode_impl() local
556 PyObject *decoded = PyUnicode_DecodeASCII(data->buf, data->len, errors); _codecs_ascii_decode_impl() local
573 PyObject *decoded; _codecs_charmap_decode_impl() local
598 PyObject *decoded = PyUnicode_DecodeMBCSStateful(data->buf, data->len, _codecs_mbcs_decode_impl() local
617 PyObject *decoded = PyUnicode_DecodeCodePageStateful(CP_OEMCP, _codecs_oem_decode_impl() local
637 PyObject *decoded = PyUnicode_DecodeCodePageStateful(codepage, _codecs_code_page_decode_impl() local
[all...]
/third_party/python/Modules/_io/
H A Dstringio.c180 PyObject *decoded = NULL; in write_str() local
186 decoded = _PyIncrementalNewlineDecoder_decode( in write_str()
190 decoded = obj; in write_str()
191 Py_INCREF(decoded); in write_str()
195 decoded, &_Py_STR(newline), self->writenl, -1); in write_str()
196 Py_DECREF(decoded); in write_str()
197 decoded = translated; in write_str()
199 if (decoded == NULL) in write_str()
202 assert(PyUnicode_Check(decoded)); in write_str()
203 if (PyUnicode_READY(decoded)) { in write_str()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dupnp_xml.c229 unsigned char *decoded; in xml_get_base64_item() local
238 decoded = base64_decode((unsigned char *) msg, os_strlen(msg), &len); in xml_get_base64_item()
240 if (decoded == NULL) { in xml_get_base64_item()
245 buf = wpabuf_alloc_ext_data(decoded, len); in xml_get_base64_item()
247 os_free(decoded); in xml_get_base64_item()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dupnp_xml.c229 unsigned char *decoded; in xml_get_base64_item() local
238 decoded = base64_decode(msg, os_strlen(msg), &len); in xml_get_base64_item()
240 if (decoded == NULL) { in xml_get_base64_item()
245 buf = wpabuf_alloc_ext_data(decoded, len); in xml_get_base64_item()
247 os_free(decoded); in xml_get_base64_item()
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/dec/
H A DBrotliInputStream.java56 int decoded; in read()
57 // Iterate until at leat one byte is decoded, or EOF reached. in read()
59 decoded = decoder.decode(); in read()
60 if (decoded != 0) { in read()
65 if (decoded == -1) { in read()
/third_party/googletest/googlemock/src/
H A Dgmock-internal-utils.cc222 bool Base64Unescape(const std::string& encoded, std::string* decoded) { in Base64Unescape() argument
223 decoded->clear(); in Base64Unescape()
225 decoded->reserve(3 * (encoded_len / 4) + (encoded_len % 4)); in Base64Unescape()
234 decoded->clear(); in Base64Unescape()
242 decoded->push_back(dst); in Base64Unescape()

Completed in 14 milliseconds

12345