HomeSort by relevance Sort by last modified time
    Searched refs:decoded (Results 51 - 75 of 286) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/python/oauth2client/oauth2client/contrib/
_metadata.py 65 decoded = _helpers._from_bytes(content)
67 return json.loads(decoded)
69 return decoded
  /external/python/cpython3/Modules/cjkcodecs/
_codecs_jp.c 88 Py_UCS4 decoded; local
113 if (TRYMAP_DEC(cp932ext, decoded, c, c2))
114 OUTCHAR(decoded);
124 if (TRYMAP_DEC(jisx0208, decoded, c, c2))
125 OUTCHAR(decoded);
245 Py_UCS4 code, decoded; local
275 else if (TRYMAP_DEC(jisx0213_2_bmp, decoded, c2, c3))
276 OUTCHAR(decoded);
282 else if (TRYMAP_DEC(jisx0212, decoded, c2, c3))
283 OUTCHAR(decoded);
386 Py_UCS4 decoded; local
512 Py_UCS4 decoded; local
675 Py_UCS4 code, decoded; local
    [all...]
_codecs_hk.c 114 Py_UCS4 decoded; local
125 if (TRYMAP_DEC(big5, decoded, c, INBYTE2)) {
126 OUTCHAR(decoded);
132 if (TRYMAP_DEC(big5hkscs, decoded, c, INBYTE2))
156 OUTCHAR(decoded | 0x20000);
160 OUTCHAR(decoded);
174 NEXT_IN(2); /* all decoded code points are pairs, above. */
  /external/mdnsresponder/mDNSWindows/ControlPanel/
ConfigPropertySheet.cpp 203 CConfigPropertySheet::DecodeDomainName( const char * raw, CString & decoded )
240 err = UTF8StringToStringObject( decodedDomainString, decoded );
262 CString decoded; local
282 err = self->DecodeDomainName( replyDomain, decoded );
287 decoded.TrimRight( '.' );
291 self->m_browseDomains.push_back( decoded );
295 self->m_browseDomains.remove( decoded );
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
quoprimime.py 194 character "=" appended to them, so the decoded text will be identical to
280 # decoded string with string concatenation, which could be done much more
282 decoded = ''
287 decoded += eol
295 decoded += c
304 decoded += unquote(line[i:i+3])
308 decoded += c
312 decoded += eol
314 if not encoded.endswith(eol) and decoded.endswith(eol):
315 decoded = decoded[:-1]
    [all...]
  /external/boringssl/src/crypto/base64/
base64_test.cc 44 const char *decoded; member in struct:TestVector
130 const size_t decoded_len = strlen(t.decoded);
136 size_t len = EVP_EncodeBlock(out, (const uint8_t *)t.decoded, decoded_len);
162 EXPECT_EQ(Bytes(t.decoded), Bytes(out, len));
183 size_t expected_len = strlen(t.decoded);
187 EXPECT_EQ(Bytes(t.decoded), Bytes(out, static_cast<size_t>(ret)));
194 const size_t decoded_len = strlen(t.decoded);
210 reinterpret_cast<const uint8_t *>(t.decoded),
239 EXPECT_EQ(Bytes(t.decoded), Bytes(out, total));
305 EXPECT_EQ(Bytes(t.decoded), Bytes(out.data(), out_len))
    [all...]
  /external/python/cpython2/Lib/email/
quoprimime.py 194 character "=" appended to them, so the decoded text will be identical to
280 # decoded string with string concatenation, which could be done much more
282 decoded = ''
287 decoded += eol
295 decoded += c
304 decoded += unquote(line[i:i+3])
308 decoded += c
312 decoded += eol
314 if not encoded.endswith(eol) and decoded.endswith(eol):
315 decoded = decoded[:-1
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
ilbc.c 145 int16_t* decoded,
184 &decoded[i * ((IlbcDecoder*)iLBCdec_inst)->blockl],
198 int16_t* decoded,
212 &decoded[i * ((IlbcDecoder*)iLBCdec_inst)->blockl],
226 int16_t* decoded,
240 &decoded[i * ((IlbcDecoder*)iLBCdec_inst)->blockl],
252 int16_t* decoded,
260 &decoded[i * ((IlbcDecoder*)iLBCdec_inst)->blockl], &dummy,
267 int16_t* decoded,
270 (void)(decoded = NULL)
    [all...]
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
EcKeyTest.java 154 ECPrivateKey decoded = (ECPrivateKey) kf.generatePrivate(spec); local
155 assertEquals(priv.getS(), decoded.getS());
156 assertEquals(priv.getParams().getCofactor(), decoded.getParams().getCofactor());
157 assertEquals(priv.getParams().getCurve(), decoded.getParams().getCurve());
158 assertEquals(priv.getParams().getGenerator(), decoded.getParams().getGenerator());
159 assertEquals(priv.getParams().getOrder(), decoded.getParams().getOrder());
  /device/google/cuttlefish_common/tools/play_audio/
play_audio.cpp 103 auto decoded = dec.Decode(encoded, frame_size, false); local
104 if (decoded.empty()) {
107 PlayDecodedAudio(&audio_device, decoded);
  /external/webrtc/webrtc/modules/audio_coding/codecs/opus/
opus_interface.h 230 * - decoded : The decoded vector
235 * Return value : >0 - Samples per channel in decoded vector
239 size_t encoded_bytes, int16_t* decoded,
251 * - decoded : The decoded vector
253 * Return value : >0 - number of samples in decoded PLC vector
256 int WebRtcOpus_DecodePlc(OpusDecInst* inst, int16_t* decoded,
271 * - decoded : The decoded vector (previous frame
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_codecsmodule.c 240 PyObject *decoded = NULL; local
247 decoded = PyUnicode_DecodeUTF7Stateful(pbuf.buf, pbuf.len, errors,
250 if (decoded == NULL)
252 return codec_tuple(decoded, consumed);
263 PyObject *decoded = NULL; local
270 decoded = PyUnicode_DecodeUTF8Stateful(pbuf.buf, pbuf.len, errors,
273 if (decoded == NULL)
275 return codec_tuple(decoded, consumed);
287 PyObject *decoded; local
293 decoded = PyUnicode_DecodeUTF16Stateful(pbuf.buf, pbuf.len, errors,
310 PyObject *decoded = NULL; local
334 PyObject *decoded = NULL; local
391 PyObject *decoded; local
414 PyObject *decoded; local
437 PyObject *decoded; local
582 PyObject *decoded = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_codecsmodule.c 240 PyObject *decoded = NULL; local
247 decoded = PyUnicode_DecodeUTF7Stateful(pbuf.buf, pbuf.len, errors,
250 if (decoded == NULL)
252 return codec_tuple(decoded, consumed);
263 PyObject *decoded = NULL; local
270 decoded = PyUnicode_DecodeUTF8Stateful(pbuf.buf, pbuf.len, errors,
273 if (decoded == NULL)
275 return codec_tuple(decoded, consumed);
287 PyObject *decoded; local
293 decoded = PyUnicode_DecodeUTF16Stateful(pbuf.buf, pbuf.len, errors,
310 PyObject *decoded = NULL; local
334 PyObject *decoded = NULL; local
391 PyObject *decoded; local
414 PyObject *decoded; local
437 PyObject *decoded; local
582 PyObject *decoded = NULL; local
    [all...]
  /external/grpc-grpc/third_party/nanopb/tests/alltypes_callback/
decode_alltypes_callback.c 147 SubMessage decoded = {""}; local
148 if (!pb_decode(stream, SubMessage_fields, &decoded))
151 TEST(memcmp((*expected)++, &decoded, sizeof(decoded)) == 0);
157 Limits decoded = {0}; local
158 if (!pb_decode(stream, Limits_fields, &decoded))
161 TEST(decoded.int32_min == INT32_MIN);
162 TEST(decoded.int32_max == INT32_MAX);
163 TEST(decoded.uint32_min == 0);
164 TEST(decoded.uint32_max == UINT32_MAX)
    [all...]
  /external/python/cpython2/Modules/
_codecsmodule.c 240 PyObject *decoded = NULL; local
247 decoded = PyUnicode_DecodeUTF7Stateful(pbuf.buf, pbuf.len, errors,
250 if (decoded == NULL)
252 return codec_tuple(decoded, consumed);
263 PyObject *decoded = NULL; local
270 decoded = PyUnicode_DecodeUTF8Stateful(pbuf.buf, pbuf.len, errors,
273 if (decoded == NULL)
275 return codec_tuple(decoded, consumed);
287 PyObject *decoded; local
293 decoded = PyUnicode_DecodeUTF16Stateful(pbuf.buf, pbuf.len, errors
310 PyObject *decoded = NULL; local
334 PyObject *decoded = NULL; local
391 PyObject *decoded; local
414 PyObject *decoded; local
437 PyObject *decoded; local
582 PyObject *decoded = NULL; local
    [all...]
  /external/u-boot/include/jffs2/
mini_inflate.h 14 #define CODE_NOT_FOUND 2 /* a huffman code in the stream could not be decoded */
35 unsigned long decoded; /* The number of bytes decoded */ member in struct:bitstream
  /external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/
testG711.cc 52 int16_t decoded[480]; local
136 WebRtcG711_DecodeA(streamdata, stream_len, decoded, speechType);
147 WebRtcG711_DecodeU(streamdata, stream_len, decoded, speechType);
153 if (fwrite(decoded, sizeof(short), framelength, outp) != framelength) {
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/include/
isacfix.h 243 * - decoded : The decoded vector
245 * Return value : >0 - number of samples in decoded vector
252 int16_t *decoded,
271 * - decoded : The decoded vector
273 * Return value : >0 - number of samples in decoded vector
281 int16_t *decoded,
301 * - decoded : The decoded vecto
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
isac_fix_type.h 41 int16_t* decoded,
43 return WebRtcIsacfix_Decode(inst, encoded, len, decoded, speech_type);
46 int16_t* decoded,
48 return WebRtcIsacfix_DecodePlc(inst, decoded, num_lost_frames);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
isac_float_type.h 39 int16_t* decoded,
41 return WebRtcIsac_Decode(inst, encoded, len, decoded, speech_type);
44 int16_t* decoded,
46 return WebRtcIsac_DecodePlc(inst, decoded, num_lost_frames);
  /external/v8/src/
uri.cc 76 void AddToBuffer(uc16 decoded, String::FlatContent* uri_content, int index,
78 if (is_uri && IsReservedPredicate(decoded)) {
88 buffer->push_back(decoded);
104 uc16 decoded = static_cast<uc16>(two_digits); local
105 if (decoded > unibrow::Utf8::kMaxOneByteChar) {
107 octets[0] = decoded;
110 while ((decoded << ++number_of_continuation_bytes) & 0x80) {
128 AddToBuffer(decoded, uri_content, k - 2, is_uri, buffer);
154 uc16 decoded = static_cast<uc16>(two_digits); local
155 if (decoded > unibrow::Utf8::kMaxOneByteChar)
    [all...]
  /external/fonttools/Tests/misc/
encodingTools_test.py 22 decoded = b'\xfe'.decode(encoding)
23 self.assertEqual(decoded, unichr(0x2122))
  /external/tensorflow/tensorflow/contrib/coder/python/ops/
coder_ops_test.py 45 decoded = coder_ops.range_decode(
49 self.assertAllEqual(*sess.run((data, decoded)))
  /external/tensorflow/tensorflow/python/kernel_tests/
decode_png_op_test.py 50 decoded = self.evaluate(decode)
51 self.assertAllEqual(decoded, img_bytes)
  /external/webrtc/webrtc/modules/audio_coding/codecs/g722/
g722_interface.c 84 int16_t *decoded,
89 return WebRtc_g722_decode((G722DecoderState*) G722dec_inst, decoded,

Completed in 1220 milliseconds

1 23 4 5 6 7 8 91011>>