Home
last modified time | relevance | path

Searched refs:MAGIC (Results 1 – 12 of 12) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dcheckpyc.py18 MAGIC = imp.get_magic()
20 print 'Using MAGIC word', repr(MAGIC)
49 if magic_str <> MAGIC:
Dtexi2html.py71 MAGIC = '\\input texinfo' variable
259 if line[:len(MAGIC)] <> MAGIC:
260 raise SyntaxError, 'file does not begin with %r' % (MAGIC,)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpy_compile.py13 MAGIC = imp.get_magic() variable
129 fc.write(MAGIC)
Dsre_constants.py16 MAGIC = 20031017 variable
242 f.write("#define SRE_MAGIC %d\n" % MAGIC)
Dsre_compile.py17 assert _sre.MAGIC == MAGIC, "SRE module mismatch"
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dsre_constants.py16 MAGIC = 20031017 variable
244 f.write("#define SRE_MAGIC %d\n" % MAGIC)
Dsre_compile.py18 assert _sre.MAGIC == MAGIC, "SRE module mismatch"
/device/google/cuttlefish/host/commands/assemble_cvd/
Dcf_bpttool.py291 MAGIC = 0xed26ff3a variable in ImageHandler
335 if magic != self.MAGIC:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dimport.c82 #define MAGIC (62211 | ((long)'\r'<<16) | ((long)'\n'<<24)) macro
87 static long pyc_magic = MAGIC;
167 pyc_magic = MAGIC + 1; in _PyImport_Init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
Dimport.c82 #define MAGIC (62211 | ((long)'\r'<<16) | ((long)'\n'<<24)) macro
87 static long pyc_magic = MAGIC;
167 pyc_magic = MAGIC + 1; in _PyImport_Init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dimport.c82 #define MAGIC (62211 | ((long)'\r'<<16) | ((long)'\n'<<24)) macro
87 static long pyc_magic = MAGIC;
195 pyc_magic = MAGIC + 1; in _PyImport_Init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dpycodegen.py123 MAGIC = imp.get_magic() variable in Module
132 return self.MAGIC + mtime