Home
last modified time | relevance | path

Searched refs:decoding_map (Results 1 – 21 of 21) sorted by relevance

/third_party/python/Lib/test/
Dtestcodec.py20 return codecs.charmap_decode(input,errors,decoding_map)
36 decoding_map = codecs.make_identity_dict(range(256)) variable
37 decoding_map.update({
47 for k,v in decoding_map.items():
/third_party/python/Lib/encodings/
Dcp858.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp863.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp1125.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp864.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp862.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp866.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dmac_arabic.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp865.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp437.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp857.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp775.py45 decoding_map = codecs.make_identity_dict(range(256)) variable
46 decoding_map.update({
Dcp861.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp852.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp869.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp855.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp737.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp850.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
Dcp860.py46 decoding_map = codecs.make_identity_dict(range(256)) variable
47 decoding_map.update({
/third_party/ffmpeg/libavcodec/
Dinterplayvideo.c63 const unsigned char *decoding_map; member
967 bytestream2_init(&decoding_map_ptr, s->decoding_map, s->decoding_map_size); in ipvideo_decode_format_06_opcodes()
1040 bytestream2_init(&decoding_map_ptr, s->decoding_map, s->decoding_map_size); in ipvideo_decode_format_10_opcodes()
1126 init_get_bits(&gb, s->decoding_map, s->decoding_map_size * 8); in ipvideo_decode_format_11_opcodes()
1250 s->decoding_map = buf + 8 + 14; /* 14 bits of op data */ in ipvideo_decode_frame()
1282 s->decoding_map = buf + 8 + video_data_size; in ipvideo_decode_frame()
1302 s->decoding_map = buf + 8 + video_data_size; in ipvideo_decode_frame()
/third_party/python/Lib/
Dcodecs.py1073 def make_encoding_map(decoding_map): argument
1087 for k,v in decoding_map.items():