/external/tensorflow/tensorflow/core/lib/strings/ |
base64.h | 33 Status Base64Decode(StringPiece data, string* decoded);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/ |
audio_decoder_pcm.cc | 26 int16_t* decoded, 30 size_t ret = WebRtcG711_DecodeU(encoded, encoded_len, decoded, &temp_type); 50 int16_t* decoded, 54 size_t ret = WebRtcG711_DecodeA(encoded, encoded_len, decoded, &temp_type);
|
g711_interface.c | 35 int16_t* decoded, 39 decoded[n] = alaw_to_linear(encoded[n]); 46 int16_t* decoded, 50 decoded[n] = ulaw_to_linear(encoded[n]);
|
audio_decoder_pcm.h | 32 int16_t* decoded, 53 int16_t* decoded,
|
/external/guava/guava-tests/test/com/google/common/io/ |
BaseEncodingTest.java | 310 BaseEncoding encoding, String decoded, String encoded) { 311 testEncodingWithSeparators(encoding, decoded, encoded); 312 testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded)); local 313 testEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded)); local 317 BaseEncoding encoding, String decoded, String encoded) { 318 testEncoding(encoding, decoded, encoded); 323 testEncoding(encoding.withSeparator(separator, sepLength), decoded, local 329 private static void testEncoding(BaseEncoding encoding, String decoded, String encoded) { 330 testEncodes(encoding, decoded, encoded); 331 testDecodes(encoding, encoded, decoded); 375 testStreamingEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded)); local 376 testStreamingEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded)); local 387 testStreamingEncoding(encoding.withSeparator(separator, sepLength), decoded, local [all...] |
/external/python/cpython3/Modules/ |
_codecsmodule.c | 163 PyObject *codec_tuple(PyObject *decoded, 166 if (decoded == NULL) 168 return Py_BuildValue("Nn", decoded, len); 184 PyObject *decoded = PyBytes_DecodeEscape(data->buf, data->len, local 186 return codec_tuple(decoded, data->len); 299 PyObject *decoded = PyUnicode_DecodeUTF7Stateful(data->buf, data->len, local 302 return codec_tuple(decoded, consumed); 319 PyObject *decoded = PyUnicode_DecodeUTF8Stateful(data->buf, data->len, local 322 return codec_tuple(decoded, consumed); 341 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len local 363 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, local 385 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, local 415 PyObject *decoded = PyUnicode_DecodeUTF16Stateful(data->buf, data->len, local 439 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, local 461 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, local 483 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, local 511 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, local 531 PyObject *decoded = PyUnicode_DecodeUnicodeEscape(data->buf, data->len, local 548 PyObject *decoded = PyUnicode_DecodeRawUnicodeEscape(data->buf, data->len, local 565 PyObject *decoded = PyUnicode_DecodeLatin1(data->buf, data->len, errors); local 581 PyObject *decoded = PyUnicode_DecodeASCII(data->buf, data->len, errors); local 598 PyObject *decoded; local 623 PyObject *decoded = PyUnicode_DecodeMBCSStateful(data->buf, data->len, local 642 PyObject *decoded = PyUnicode_DecodeCodePageStateful(CP_OEMCP, local 662 PyObject *decoded = PyUnicode_DecodeCodePageStateful(codepage, local [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/ |
audio_decoder_opus.cc | 31 int16_t* decoded, 36 WebRtcOpus_Decode(dec_state_, encoded, encoded_len, decoded, &temp_type); 46 int16_t* decoded, 50 return DecodeInternal(encoded, encoded_len, sample_rate_hz, decoded, 56 int ret = WebRtcOpus_DecodeFec(dec_state_, encoded, encoded_len, decoded,
|
audio_decoder_opus.h | 35 int16_t* decoded, 40 int16_t* decoded,
|
/external/webrtc/webrtc/base/ |
urlencode.cc | 156 InternalUrlEncodeString(const std::string & decoded, 159 int needed_length = static_cast<int>(decoded.length()) * 3 + 1; 161 InternalUrlEncode(decoded.c_str(), buf, needed_length, 167 UrlEncodeString(const std::string & decoded) { 168 return InternalUrlEncodeString(decoded, true, false); 172 UrlEncodeStringWithoutEncodingSpaceAsPlus(const std::string & decoded) { 173 return InternalUrlEncodeString(decoded, false, false); 177 UrlEncodeStringForOnlyUnsafeChars(const std::string & decoded) { 178 return InternalUrlEncodeString(decoded, false, true);
|
/external/guava/guava-gwt/test-super/com/google/common/io/super/com/google/common/io/ |
BaseEncodingTest.java | 244 BaseEncoding encoding, String decoded, String encoded) { 245 testEncodingWithSeparators(encoding, decoded, encoded); 246 testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded)); local 247 testEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded)); local 251 BaseEncoding encoding, String decoded, String encoded) { 252 testEncoding(encoding, decoded, encoded); 257 testEncoding(encoding.withSeparator(separator, sepLength), decoded, local 263 private static void testEncoding(BaseEncoding encoding, String decoded, String encoded) { 264 testEncodes(encoding, decoded, encoded); 265 testDecodes(encoding, encoded, decoded); [all...] |
/external/python/cpython3/Modules/cjkcodecs/ |
_codecs_cn.c | 36 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); \ 94 Py_UCS4 decoded; local 103 if (TRYMAP_DEC(gb2312, decoded, c ^ 0x80, INBYTE2 ^ 0x80)) { 104 OUTCHAR(decoded); 155 Py_UCS4 decoded; local 263 Py_UCS4 decoded; local 314 else if (TRYMAP_DEC(gb18030ext, decoded, c, c2) 408 Py_UCS4 decoded; local [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/ |
DecodeJob.java | 26 * @param <A> The type of the source data the resource can be decoded from. 27 * @param <T> The type of resource that will be decoded. 28 * @param <Z> The type of resource that will be transcoded from the decoded and transformed resource. 73 * Returns a transcoded resource decoded from transformed resource data in the disk cache, or null if no such 86 logWithTimeAndKey("Decoded transformed from cache", startTime); 97 * Returns a transformed and transcoded resource decoded from source data in the disk cache, or null if no such 108 Resource<T> decoded = loadFromCache(resultKey.getOriginalKey()); local 110 logWithTimeAndKey("Decoded source from cache", startTime); 112 return transformEncodeAndTranscode(decoded); 116 * Returns a transformed and transcoded resource decoded from source data, or null if no source data could b 127 Resource<T> decoded = decodeSource(); local 166 Resource<T> decoded = null; local 184 final Resource<T> decoded; local [all...] |
/external/protobuf/src/google/protobuf/stubs/ |
strutil_unittest.cc | 490 // Is it the expected decoded value? 500 string decoded("this junk should be ignored"); 502 StringPiece(encode_buffer, cypher_length), &decoded)); 503 EXPECT_EQ(decoded.size(), base64_tests[i].plain_length); 504 EXPECT_EQ_ARRAY(decoded.size(), decoded, base64_tests[i].plaintext, i); 521 EXPECT_EQ(decoded.size(), base64_tests[i].plain_length); 522 EXPECT_EQ_ARRAY(decoded.size(), decoded, base64_tests[i].plaintext, i); 532 EXPECT_EQ(decoded.size(), base64_tests[i].plain_length) [all...] |
/external/python/apitools/apitools/base/protorpclite/ |
protojson_test.py | 284 decoded = protojson.decode_message( 287 self.assertEquals(decoded.an_integer, 1) 288 self.assertEquals(1, len(decoded.all_unrecognized_fields())) 289 self.assertEquals('unknown_val', decoded.all_unrecognized_fields()[0]) 291 decoded.get_unrecognized_field_info('unknown_val')) 295 decoded = protojson.decode_message( 299 self.assertEquals(decoded.an_integer, 1) 300 self.assertEquals(3, len(decoded.all_unrecognized_fields())) 301 self.assertFalse(1001 in decoded.all_unrecognized_fields()) 302 self.assertTrue('1001' in decoded.all_unrecognized_fields() [all...] |
/external/tensorflow/tensorflow/examples/saved_model/integration_tests/ |
use_text_rnn_model.py | 39 decoded = model.decode_greedy( 41 _ = [d.numpy() for d in decoded]
|
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/ |
audio_decoder_g722.h | 33 int16_t* decoded, 51 int16_t* decoded,
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/ |
audio_decoder_isac_t.h | 29 size_t DecodePlc(size_t num_frames, int16_t* decoded) override; 41 int16_t* decoded,
|
audio_decoder_isac_t_impl.h | 45 int16_t* decoded, 55 T::DecodeInternal(isac_state_, encoded, encoded_len, decoded, &temp_type); 66 size_t AudioDecoderIsacT<T>::DecodePlc(size_t num_frames, int16_t* decoded) { 67 return T::DecodePlc(isac_state_, decoded, num_frames);
|
/external/webrtc/webrtc/test/fuzzers/ |
audio_decoder_fuzzer.cc | 34 int16_t* decoded) { 43 decoded, &speech_type);
|
/external/ImageMagick/Magick++/lib/ |
Blob.cpp | 69 *decoded; local 71 decoded=Base64Decode(base64_.c_str(),&length); 73 if(decoded) 74 updateNoCopy(static_cast<void*>(decoded),length,
|
/external/brotli/java/org/brotli/wrapper/dec/ |
BrotliInputStream.java | 56 int decoded; local 57 // Iterate until at leat one byte is decoded, or EOF reached. 59 decoded = decoder.decode(); 60 if (decoded != 0) { 65 if (decoded == -1) {
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
decode_bmp_op_test.py | 64 decoded = self.evaluate(decode) 65 self.assertAllEqual(decoded, img_bytes) 139 decoded = self.evaluate(decode) 140 self.assertAllEqual(decoded, img_bytes)
|
/external/webrtc/webrtc/modules/audio_coding/codecs/pcm16b/ |
audio_decoder_pcm16b.h | 30 int16_t* decoded,
|
/external/webrtc/webrtc/modules/audio_coding/neteq/mock/ |
mock_external_decoder_pcm16b.h | 36 int16_t* decoded, 38 size_t ret = WebRtcPcm16b_Decode(encoded, encoded_len, decoded); 74 int16_t* decoded, 79 size_t(size_t num_frames, int16_t* decoded));
|
/device/google/cuttlefish_common/host/frontend/stream_audio/opuscpp/ |
opus_wrapper.cc | 143 std::vector<opus_int16> decoded; local 146 decoded.insert(std::end(decoded), std::begin(just_decoded), 149 return decoded; 155 std::vector<opus_int16> decoded(frame_length); 157 decoded.data(), frame_size, decode_fec); 162 decoded.resize(num_samples * num_channels_); 163 return decoded; 168 std::vector<opus_int16> decoded(frame_length); 170 opus_decode(decoder_.get(), nullptr, 0, decoded.data(), frame_size, true) [all...] |