Home
last modified time | relevance | path

Searched refs:RUNCHAR (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
Dbinhex.py41 RUNCHAR=chr(0x90) # run-length introducer variable
358 if self.pre_buffer[-3:] == RUNCHAR + '\0' + RUNCHAR:
360 elif self.pre_buffer[-1] == RUNCHAR:
362 elif self.pre_buffer[-2:] == RUNCHAR + '\0':
364 elif self.pre_buffer[-2] == RUNCHAR:
/external/python/cpython2/Modules/
Dbinascii.c70 #define RUNCHAR 0x90 macro
644 if ( ch == RUNCHAR ) { in binascii_rlecode_hqx()
646 *out_data++ = RUNCHAR; in binascii_rlecode_hqx()
657 *out_data++ = RUNCHAR; in binascii_rlecode_hqx()
801 if (in_byte == RUNCHAR) { in binascii_rledecode_hqx()
812 OUTBYTE(RUNCHAR); in binascii_rledecode_hqx()
820 if (in_byte == RUNCHAR) { in binascii_rledecode_hqx()
824 OUTBYTE(RUNCHAR); in binascii_rledecode_hqx()