Searched refs:decoding_map (Results 1 – 21 of 21) sorted by relevance
/third_party/python/Lib/test/ |
D | testcodec.py | 20 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/ |
D | cp858.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp863.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp1125.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp864.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp862.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp866.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | mac_arabic.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp865.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp437.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp857.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp775.py | 45 decoding_map = codecs.make_identity_dict(range(256)) variable 46 decoding_map.update({
|
D | cp861.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp852.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp869.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp855.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp737.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp850.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
D | cp860.py | 46 decoding_map = codecs.make_identity_dict(range(256)) variable 47 decoding_map.update({
|
/third_party/ffmpeg/libavcodec/ |
D | interplayvideo.c | 63 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/ |
D | codecs.py | 1073 def make_encoding_map(decoding_map): argument 1087 for k,v in decoding_map.items():
|