Home
last modified time | relevance | path

Searched refs:decoded_data (Results 1 – 12 of 12) sorted by relevance

/external/python/cryptography/src/cryptography/hazmat/primitives/serialization/
Dssh.py40 decoded_data = base64.b64decode(key_body)
44 inner_key_type, rest = _ssh_read_next_string(decoded_data)
54 def _load_ssh_rsa_public_key(key_type, decoded_data, backend): argument
55 e, rest = _ssh_read_next_mpint(decoded_data)
64 def _load_ssh_dss_public_key(key_type, decoded_data, backend): argument
65 p, rest = _ssh_read_next_mpint(decoded_data)
79 def _load_ssh_ecdsa_public_key(expected_key_type, decoded_data, backend): argument
80 curve_name, rest = _ssh_read_next_string(decoded_data)
/external/webrtc/modules/audio_coding/codecs/ilbc/test/
DiLBC_test.c49 int16_t decoded_data[BLOCKL_MAX]; in main() local
207 len, decoded_data,&speechType); in main()
214 len=WebRtcIlbcfix_DecodePlc(Dec_Inst, decoded_data, 1); in main()
220 if (fwrite(decoded_data, sizeof(int16_t), len, ofileid) != len) { in main()
DiLBC_testprogram.c60 short *decoded_data, /* (o) Decoded signal block */ in decode() argument
72 WebRtcIlbcfix_Decode(decoded_data, (uint16_t *)encoded_data, in decode()
/external/tensorflow/tensorflow/core/kernels/
Dspectrogram_test_utils.cc38 std::vector<float> decoded_data; in ReadWaveFileToVector() local
43 wav_data, &decoded_data, &decoded_sample_count, in ReadWaveFileToVector()
49 data->resize(decoded_data.size()); in ReadWaveFileToVector()
50 for (int i = 0; i < decoded_data.size(); ++i) { in ReadWaveFileToVector()
51 (*data)[i] = decoded_data[i]; in ReadWaveFileToVector()
/external/autotest/client/cros/chameleon/
Davsync_probe_utils.py260 decoded_data = []
281 decoded_data.append([data[0], code, sound])
283 self._log_list_data_to_file('binarize_raw.txt', decoded_data)
284 return decoded_data
/external/pdfium/third_party/libopenjpeg20/
Dt1.c1621 cblk->decoded_data = (OPJ_INT32*)opj_aligned_malloc(sizeof(OPJ_INT32) * in opj_t1_clbl_decode_processor()
1623 if (cblk->decoded_data == NULL) { in opj_t1_clbl_decode_processor()
1637 memset(cblk->decoded_data, 0, sizeof(OPJ_INT32) * cblk_w * cblk_h); in opj_t1_clbl_decode_processor()
1638 } else if (cblk->decoded_data) { in opj_t1_clbl_decode_processor()
1641 opj_aligned_free(cblk->decoded_data); in opj_t1_clbl_decode_processor()
1642 cblk->decoded_data = NULL; in opj_t1_clbl_decode_processor()
1690 datap = cblk->decoded_data ? cblk->decoded_data : t1->data; in opj_t1_clbl_decode_processor()
1719 assert((cblk->decoded_data != NULL) || (tilec->data != NULL)); in opj_t1_clbl_decode_processor()
1721 if (cblk->decoded_data) { in opj_t1_clbl_decode_processor()
1830 if (cblk->decoded_data) { in opj_t1_decode_cblks()
[all …]
Dtcd.h138 OPJ_INT32* decoded_data; member
Dtcd.c1304 opj_aligned_free(p_code_block->decoded_data); in opj_tcd_code_block_dec_allocate()
1305 p_code_block->decoded_data = 00; in opj_tcd_code_block_dec_allocate()
2310 opj_aligned_free(l_code_block->decoded_data); in opj_tcd_code_block_dec_deallocate()
2311 l_code_block->decoded_data = NULL; in opj_tcd_code_block_dec_deallocate()
Ddwt.c1901 if (cblk->decoded_data != NULL) { in opj_dwt_init_sparse_array()
1918 cblk->decoded_data, in opj_dwt_init_sparse_array()
/external/llvm-project/lldb/source/Expression/
DDWARFExpression.cpp544 bool decoded_data = false; in LinkThreadLocalStorage() local
551 decoded_data = true; in LinkThreadLocalStorage()
560 decoded_data = true; in LinkThreadLocalStorage()
594 if (!decoded_data) { in LinkThreadLocalStorage()
/external/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
Dgdbremote_testcase.py1077 decoded_data = ""
1115 decoded_data += self.decode_gdbremote_binary(content_raw)
1116 return decoded_data
/external/webp/src/dec/
Dvp8l_dec.c107 uint32_t** const decoded_data);
1416 uint32_t** const decoded_data) { in DecodeImageStream() argument
1488 if (decoded_data != NULL) { in DecodeImageStream()
1489 *decoded_data = data; in DecodeImageStream()