HomeSort by relevance Sort by last modified time
    Searched defs:RUNCHAR (Results 1 - 12 of 12) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
binhex.py 41 RUNCHAR=chr(0x90) # run-length introducer
348 # end up with an orphaned RUNCHAR later on. So, we keep a couple
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:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
binhex.py 40 RUNCHAR=chr(0x90) # run-length introducer
342 # end up with an orphaned RUNCHAR later on. So, we keep a couple
352 if self.pre_buffer[-3:] == RUNCHAR + '\0' + RUNCHAR:
354 elif self.pre_buffer[-1] == RUNCHAR:
356 elif self.pre_buffer[-2:] == RUNCHAR + '\0':
358 elif self.pre_buffer[-2] == RUNCHAR:
  /external/python/cpython2/Lib/
binhex.py 41 RUNCHAR=chr(0x90) # run-length introducer
348 # end up with an orphaned RUNCHAR later on. So, we keep a couple
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/cpython3/Lib/
binhex.py 41 RUNCHAR = b"\x90"
322 # end up with an orphaned RUNCHAR later on. So, we keep a couple
332 if self.pre_buffer[-3:] == RUNCHAR + b'\0' + RUNCHAR:
334 elif self.pre_buffer[-1:] == RUNCHAR:
336 elif self.pre_buffer[-2:] == RUNCHAR + b'\0':
338 elif self.pre_buffer[-2:-1] == RUNCHAR:
  /prebuilts/gdb/darwin-x86/lib/python2.7/
binhex.py 40 RUNCHAR=chr(0x90) # run-length introducer
342 # end up with an orphaned RUNCHAR later on. So, we keep a couple
352 if self.pre_buffer[-3:] == RUNCHAR + '\0' + RUNCHAR:
354 elif self.pre_buffer[-1] == RUNCHAR:
356 elif self.pre_buffer[-2:] == RUNCHAR + '\0':
358 elif self.pre_buffer[-2] == RUNCHAR:
  /prebuilts/gdb/linux-x86/lib/python2.7/
binhex.py 40 RUNCHAR=chr(0x90) # run-length introducer
342 # end up with an orphaned RUNCHAR later on. So, we keep a couple
352 if self.pre_buffer[-3:] == RUNCHAR + '\0' + RUNCHAR:
354 elif self.pre_buffer[-1] == RUNCHAR:
356 elif self.pre_buffer[-2:] == RUNCHAR + '\0':
358 elif self.pre_buffer[-2] == RUNCHAR:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
binhex.py 40 RUNCHAR=chr(0x90) # run-length introducer
342 # end up with an orphaned RUNCHAR later on. So, we keep a couple
352 if self.pre_buffer[-3:] == RUNCHAR + '\0' + RUNCHAR:
354 elif self.pre_buffer[-1] == RUNCHAR:
356 elif self.pre_buffer[-2:] == RUNCHAR + '\0':
358 elif self.pre_buffer[-2] == RUNCHAR:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
binhex.py 40 RUNCHAR=chr(0x90) # run-length introducer
342 # end up with an orphaned RUNCHAR later on. So, we keep a couple
352 if self.pre_buffer[-3:] == RUNCHAR + '\0' + RUNCHAR:
354 elif self.pre_buffer[-1] == RUNCHAR:
356 elif self.pre_buffer[-2:] == RUNCHAR + '\0':
358 elif self.pre_buffer[-2] == RUNCHAR:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
binascii.c 70 #define RUNCHAR 0x90
644 if ( ch == RUNCHAR ) {
645 /* RUNCHAR. Escape it. */
646 *out_data++ = RUNCHAR;
657 *out_data++ = RUNCHAR;
801 if (in_byte == RUNCHAR) {
812 OUTBYTE(RUNCHAR);
820 if (in_byte == RUNCHAR) {
823 /* Just an escaped RUNCHAR value */
824 OUTBYTE(RUNCHAR);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
binascii.c 70 #define RUNCHAR 0x90
653 if ( ch == RUNCHAR ) {
654 /* RUNCHAR. Escape it. */
655 *out_data++ = RUNCHAR;
666 *out_data++ = RUNCHAR;
814 if (in_byte == RUNCHAR) {
825 OUTBYTE(RUNCHAR);
833 if (in_byte == RUNCHAR) {
836 /* Just an escaped RUNCHAR value */
837 OUTBYTE(RUNCHAR);
    [all...]
  /external/python/cpython2/Modules/
binascii.c 70 #define RUNCHAR 0x90
644 if ( ch == RUNCHAR ) {
645 /* RUNCHAR. Escape it. */
646 *out_data++ = RUNCHAR;
657 *out_data++ = RUNCHAR;
801 if (in_byte == RUNCHAR) {
812 OUTBYTE(RUNCHAR);
820 if (in_byte == RUNCHAR) {
823 /* Just an escaped RUNCHAR value */
824 OUTBYTE(RUNCHAR);
    [all...]
  /external/python/cpython3/Modules/
binascii.c 71 #define RUNCHAR 0x90
697 if ( ch == RUNCHAR ) {
698 /* RUNCHAR. Escape it. */
699 *out_data++ = RUNCHAR;
710 *out_data++ = RUNCHAR;
837 if (in_byte == RUNCHAR) {
850 *out_data++ = RUNCHAR;
858 if (in_byte == RUNCHAR) {
865 /* Just an escaped RUNCHAR value */
866 *out_data++ = RUNCHAR;
    [all...]

Completed in 561 milliseconds