HomeSort by relevance Sort by last modified time
    Searched defs:MAGIC (Results 26 - 50 of 124) sorted by null

12 3 4 5

  /external/python/cpython2/Lib/plat-irix5/
flp.py 56 MAGIC = '.fdc'
72 if fp.read(4) != MAGIC:
73 print 'flp: bad magic word in cache file', cachename
131 fp.write('\0\0\0\0') # Seek back and write MAGIC when done
136 fp.write(MAGIC)
199 # First read the magic header line
201 if datum != ('Magic', 12321):
  /external/python/cpython2/Lib/plat-irix6/
flp.py 55 MAGIC = '.fdc'
71 if fp.read(4) != MAGIC:
72 print 'flp: bad magic word in cache file', cachename
130 fp.write('\0\0\0\0') # Seek back and write MAGIC when done
135 fp.write(MAGIC)
198 # First read the magic header line
200 if datum != ('Magic', 12321):
  /frameworks/compile/mclinker/lib/LD/
Archive.cpp 20 const char Archive::MAGIC[] = "!<arch>\n";
22 const size_t Archive::MAGIC_LEN = sizeof(Archive::MAGIC) - 1;
  /cts/hostsidetests/security/securityPatch/CVE-2017-0462/
poc.c 40 #define MAGIC 'z'
42 #define SEEMP_CMD_RESERVE_RDBLKS _IOR(MAGIC, 1, int)
43 #define SEEMP_CMD_RELEASE_RDBLKS _IO(MAGIC, 2)
44 #define SEEMP_CMD_GET_RINGSZ _IOR(MAGIC, 3, int)
45 #define SEEMP_CMD_GET_BLKSZ _IOR(MAGIC, 4, int)
46 #define SEEMP_CMD_SET_MASK _IO(MAGIC, 5)
47 #define SEEMP_CMD_SET_MAPPING _IO(MAGIC, 6)
48 #define SEEMP_CMD_CHECK_FILTER _IOR(MAGIC, 7, int)
49 #define SEEMP_CMD_DEBUG_START _IOR(MAGIC, 8, int)
50 #define SEEMP_CMD_DEBUG_STOP _IOR(MAGIC, 9, int
    [all...]
  /external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/
ClassDefinitionUtils.java 84 public static final byte[] MAGIC = { (byte) 0xca, (byte) 0xfe, (byte) 0xba, (byte) 0xbe };
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 32 static const char MAGIC[]; ///< magic string
33 static const char THIN_MAGIC[]; ///< magic of thin archive
34 static const size_t MAGIC_LEN; ///< length of magic string
39 static const char MEMBER_MAGIC[]; ///< fmag field magic #
  /external/ltp/testcases/misc/math/fptests/
fptest02.c 47 #define MAGIC 0.777807
157 v = avgspd - MAGIC;
162 v = avgspd - MAGIC;
164 tst_resm(TINFO, "expected %.15f\n", MAGIC);
  /external/python/cpython2/Lib/plat-mac/
bundlebuilder.py 237 MAGIC = imp.get_magic()
255 return path, MAGIC + '\0\0\0\0' + marshal.dumps(code)
753 f.write(MAGIC)
    [all...]
  /external/valgrind/coregrind/m_ume/
macho.c 57 #define MAGIC MH_MAGIC
63 #define MAGIC MH_MAGIC_64
535 if (mh.magic != MAGIC) {
536 print("bad executable (no Mach-O magic)\n");
787 vki_uint32_t magic; local
790 if (size < sizeof(magic)) {
791 print("bad executable (no Mach-O magic)\n");
794 res = VG_(pread)(fd, &magic, sizeof(magic), offset)
816 const vki_uint32_t *magic = hdr; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
tic.h 78 #define MAGIC 0432 /* first two bytes of a compiled entry */
87 #define IS_TIC_MAGIC(p) (LOW_MSB(p) == MAGIC)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tic.h 78 #define MAGIC 0432 /* first two bytes of a compiled entry */
87 #define IS_TIC_MAGIC(p) (LOW_MSB(p) == MAGIC)
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
bundlebuilder.py 237 MAGIC = imp.get_magic()
255 return path, MAGIC + '\0\0\0\0' + marshal.dumps(code)
753 f.write(MAGIC)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bundlebuilder.py 237 MAGIC = imp.get_magic()
255 return path, MAGIC + '\0\0\0\0' + marshal.dumps(code)
753 f.write(MAGIC)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
sre_constants.py 16 MAGIC = 20031017
244 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sre_constants.py 16 MAGIC = 20031017
242 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /external/avb/
avbtool 636 MAGIC = 0xed26ff3a
674 (magic, major_version, minor_version, file_hdr_sz, chunk_hdr_sz,
677 if magic != self.MAGIC:
    [all...]
  /external/emma/core/java12/com/vladium/emma/data/
DataFactory.java 548 final int magic = raf.readInt (); local
549 if (magic != MAGIC)
692 out.writeInt (MAGIC);
805 private static final int MAGIC = 0x454D4D41; // "EMMA"
  /external/python/cpython2/Lib/
sre_constants.py 16 MAGIC = 20031017
244 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 66 # define MAGIC MH_MAGIC
73 # define MAGIC MH_MAGIC_64
119 if (VG_(ntohl)(fh_be->magic) == FAT_MAGIC)
124 if (mh->magic == MAGIC)
183 fh.magic = VG_(ntohl)(fh_be.magic);
185 if (fh.magic == FAT_MAGIC) {
263 if (mh.magic != MAGIC) {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sre_constants.py 16 MAGIC = 20031017
240 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /prebuilts/gdb/linux-x86/lib/python2.7/
sre_constants.py 16 MAGIC = 20031017
240 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_constants.py 16 MAGIC = 20031017
240 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_constants.py 16 MAGIC = 20031017
240 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 103 static final String MAGIC = "libcore.io.DiskLruCache";
342 String magic = readAsciiLine(in); local
347 if (!MAGIC.equals(magic)
353 + magic + ", " + version + ", " + valueCountString + ", " + blank + "]");
432 writer.write(MAGIC);
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 103 static final String MAGIC = "libcore.io.DiskLruCache";
342 String magic = readAsciiLine(in); local
347 if (!MAGIC.equals(magic)
353 + magic + ", " + version + ", " + valueCountString + ", " + blank + "]");
432 writer.write(MAGIC);
    [all...]

Completed in 1758 milliseconds

12 3 4 5