/external/bluetooth/glib/gio/ |
D | gdummyfile.c | 67 static char * _g_encode_uri (GDecodedUri *decoded); 68 static void _g_decoded_uri_free (GDecodedUri *decoded); 500 _g_decoded_uri_free (GDecodedUri *decoded) in _g_decoded_uri_free() argument 502 if (decoded == NULL) in _g_decoded_uri_free() 505 g_free (decoded->scheme); in _g_decoded_uri_free() 506 g_free (decoded->query); in _g_decoded_uri_free() 507 g_free (decoded->fragment); in _g_decoded_uri_free() 508 g_free (decoded->userinfo); in _g_decoded_uri_free() 509 g_free (decoded->host); in _g_decoded_uri_free() 510 g_free (decoded->path); in _g_decoded_uri_free() [all …]
|
/external/qemu/distrib/sdl-1.2.12/src/audio/ |
D | SDL_wave.c | 120 Uint8 *freeable, *encoded, *decoded; in MS_ADPCM_decode() local 138 decoded = *audio_buf; in MS_ADPCM_decode() 172 decoded[0] = state[0]->iSamp2&0xFF; in MS_ADPCM_decode() 173 decoded[1] = state[0]->iSamp2>>8; in MS_ADPCM_decode() 174 decoded += 2; in MS_ADPCM_decode() 176 decoded[0] = state[1]->iSamp2&0xFF; in MS_ADPCM_decode() 177 decoded[1] = state[1]->iSamp2>>8; in MS_ADPCM_decode() 178 decoded += 2; in MS_ADPCM_decode() 180 decoded[0] = state[0]->iSamp1&0xFF; in MS_ADPCM_decode() 181 decoded[1] = state[0]->iSamp1>>8; in MS_ADPCM_decode() [all …]
|
/external/webkit/V8Binding/v8/test/mjsunit/regress/ |
D | regress-244.js | 50 var decoded = String.fromCharCode(kLegalPairs[i][0]); 52 assertEquals(decodeURI(encoded), decoded); 53 assertEquals(encodeURI(decoded), encoded);
|
/external/dbus/dbus/ |
D | dbus-internals.c | 562 DBusString decoded; in _dbus_read_uuid_file_without_creating() local 566 _dbus_string_init (&decoded); in _dbus_read_uuid_file_without_creating() 583 if (!_dbus_string_hex_decode (&contents, 0, &end, &decoded, 0)) in _dbus_read_uuid_file_without_creating() 597 if (_dbus_string_get_length (&decoded) != DBUS_UUID_LENGTH_BYTES) in _dbus_read_uuid_file_without_creating() 602 _dbus_string_get_length (&decoded), in _dbus_read_uuid_file_without_creating() 607 _dbus_string_copy_to_buffer (&decoded, uuid->as_bytes, DBUS_UUID_LENGTH_BYTES); in _dbus_read_uuid_file_without_creating() 609 _dbus_string_free (&decoded); in _dbus_read_uuid_file_without_creating() 619 _dbus_string_free (&decoded); in _dbus_read_uuid_file_without_creating()
|
D | dbus-string-util.c | 146 DBusString decoded; in test_hex_roundtrip() local 158 if (!_dbus_string_init (&decoded)) in test_hex_roundtrip() 167 if (!_dbus_string_hex_decode (&encoded, 0, &end, &decoded, 0)) in test_hex_roundtrip() 172 if (!_dbus_string_equal (&orig, &decoded)) in test_hex_roundtrip() 179 _dbus_string_get_length (&decoded)); in test_hex_roundtrip() 181 s = _dbus_string_get_const_data (&decoded); in test_hex_roundtrip() 188 _dbus_string_free (&decoded); in test_hex_roundtrip()
|
D | dbus-auth.c | 90 DBusString *decoded); 1412 DBusString decoded; in process_data() local 1414 if (!_dbus_string_init (&decoded)) in process_data() 1417 if (!_dbus_string_hex_decode (args, 0, &end, &decoded, 0)) in process_data() 1419 _dbus_string_free (&decoded); in process_data() 1425 _dbus_string_free (&decoded); in process_data() 1433 if (_dbus_string_validate_ascii (&decoded, 0, in process_data() 1434 _dbus_string_get_length (&decoded))) in process_data() 1437 _dbus_string_get_const_data (&decoded)); in process_data() 1440 if (!(* data_func) (auth, &decoded)) in process_data() [all …]
|
D | dbus-sha.c | 557 DBusString *decoded) in decode_compact_string() argument 620 if (byte_containing_next_bit >= _dbus_string_get_length (decoded)) in decode_compact_string() 622 if (!_dbus_string_set_length (decoded, byte_containing_next_bit + 1)) in decode_compact_string() 626 old_byte = _dbus_string_get_byte (decoded, byte_containing_next_bit); in decode_compact_string() 635 _dbus_string_set_byte (decoded, byte_containing_next_bit, old_byte); in decode_compact_string() 647 if (_dbus_string_get_length (decoded) != length_bytes) in decode_compact_string() 650 length_bytes, n_bits, _dbus_string_get_length (decoded)); in decode_compact_string()
|
/external/skia/src/animator/ |
D | SkBase64.cpp | 63 signed char decoded = decodeData[srcByte - '+']; in decode() local 64 bytes[byte] = decoded; in decode() 65 if (decoded < 0) { in decode() 66 if (decoded == DecodePad) in decode()
|
/external/icu4c/test/intltest/ |
D | csdetest.cpp | 161 UChar *decoded = NULL; in checkEncoding() local 189 decoded = NEW_ARRAY(UChar, testLength); in checkEncoding() 190 dLength = ucsdet_getUChars(matches[0], decoded, testLength, &status); in checkEncoding() 192 if (testString.compare(decoded, dLength) != 0) { in checkEncoding() 197 if(testString[i] != decoded[i]) { in checkEncoding() 206 DELETE_ARRAY(decoded); in checkEncoding()
|
/external/dropbear/libtomcrypt/src/pk/rsa/ |
D | rsa_verify_hash.c | 100 int decoded; in rsa_verify_hash_ex() local 117 …s_1_v1_5_decode(tmpbuf, x, LTC_PKCS_1_EMSA, modulus_bitlen, out, &outlen, &decoded)) != CRYPT_OK) { in rsa_verify_hash_ex()
|
/external/opencore/protocols/sdp/parser/src/ |
D | h264mediainfoparser.cpp | 600 uint8 decoded[MIN_ENCODED_BYTES]; in parseParameterSets() local 605 decoded, in parseParameterSets() 607 sizeof(decoded) in parseParameterSets() 610 uint8 nal_type = decoded[0] & AVC_NALTYPE_MASK; in parseParameterSets()
|
/external/bluetooth/bluez/common/ |
D | sdp-xml.c | 638 char buf[3], *decoded; in sdp_xml_parse_string_decode() local 641 decoded = malloc((len >> 1) + 1); in sdp_xml_parse_string_decode() 652 decoded[i >> 1] = strtoul(buf, 0, 16); in sdp_xml_parse_string_decode() 655 decoded[len >> 1] = '\0'; in sdp_xml_parse_string_decode() 656 text = decoded; in sdp_xml_parse_string_decode()
|
/external/webkit/WebKitTools/DumpRenderTree/qt/ |
D | jsobjects.cpp | 264 QString decoded = QUrl::fromAce(host.toLatin1() + QByteArray(".no")); in decodeHostName() local 265 decoded.truncate(decoded.length() - 3); in decodeHostName() 266 return decoded; in decodeHostName()
|
/external/webkit/WebCore/platform/ |
D | KURL.cpp | 892 …String decoded = (encoding.isValid() ? encoding : UTF8Encoding()).decode(buffer.data(), p - buffer… in decodeURLEscapeSequences() local 893 if (decoded.isEmpty()) in decodeURLEscapeSequences() 898 result.append(decoded.characters(), decoded.length()); in decodeURLEscapeSequences() 1562 … CString decoded = pathEncoding.encode(s.data(), s.size(), URLEncodedEntitiesForUnencodables); in encodeRelativeString() local 1563 output.resize(decoded.length()); in encodeRelativeString() 1564 memcpy(output.data(), decoded.data(), decoded.length()); in encodeRelativeString()
|
/external/strace/ |
D | PORTING | 56 their arguments can be decoded, you must do the dirty work of decoding
|
D | NEWS | 171 * IPC calls on SunOS 4.1.x are decoded
|
/external/webkit/WebKitTools/Scripts/modules/ |
D | BeautifulSoup.py | 682 decoded = key 684 decoded = fmt % (key, val) 685 attrs.append(decoded)
|
/external/webkit/WebKit/mac/Plugins/Hosted/ |
D | HostedNetscapePluginStream.mm | 154 // which is only interested in the decoded length, not yet known at the moment.
|
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/MVS/ |
D | MVS.uudecode | 299 X /* The line has been decoded; now check that sum */
|
/external/ipsec-tools/src/racoon/ |
D | isakmp.c | 2779 isakmp_printpacket(msg, from, my, decoded) in isakmp_printpacket() argument 2783 int decoded; 2832 if (decoded) {
|
/external/zlib/ |
D | algorithm.txt | 133 The code being decoded, with 10 symbols, from 1 to 6 bits long:
|
/external/dropbear/libtomcrypt/ |
D | crypt.tex | 3102 … padding data pointed to by \textit{msg} of length \textit{msglen}. The decoded data is stored in… 3217 \textit{msghashlen}. If the block is a valid PSS block and the decoded hash equals the hash suppli… 3456 …ted to by \textit{sig} of length \textit{siglen} octets. Next, the RSA decoded data is PSS decoded 3459 If the RSA decoded data is not a valid PSS message, or if the PSS decoded hash does not match the \… 3480 …ed to by \textit{sig} of length \textit{siglen} octets. Next, the RSA decoded data is PKCS decoded 3483 If the RSA decoded data is not a valid PSS message, or if the PKCS decoded hash does not match the … 4194 and reflects if the particular member of a list was the decoded data type. To help build the lists… 4360 SET and SET OF are related to the SEQUENCE type in that they can be pretty much be decoded with the… 4384 The SET type can be decoded with the following function. 4420 Since the decoding of a \textit{SET OF} object is unambiguous it can be decoded with der\_decode\_s… [all …]
|
/external/webkit/WebCore/loader/ |
D | FrameLoader.cpp | 1023 String decoded = m_decoder->decode(str, len); in write() local 1025 decoded += m_decoder->flush(); in write() 1026 if (decoded.isEmpty()) in write() 1038 tokenizer->write(decoded, true); in write()
|
/external/webkit/WebKit/mac/Plugins/ |
D | WebBaseNetscapePluginStream.mm | 342 // which is only interested in the decoded length, not yet known at the moment.
|
/external/tcpdump/ |
D | CHANGES | 242 OUI 0x0000f8 decoded as encapsulated ethernet for Cisco-custom bridging
|