HomeSort by relevance Sort by last modified time
    Searched refs:MAGIC (Results 1 - 25 of 63) sorted by null

1 2 3

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
cpio.h 47 #define MAGIC "070707"
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.11-4.8/sysroot/usr/include/
cpio.h 47 #define MAGIC "070707"
tic.h 78 #define MAGIC 0432 /* first two bytes of a compiled entry */
87 #define IS_TIC_MAGIC(p) (LOW_MSB(p) == MAGIC)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sunaudio.py 8 MAGIC = '.snd'
21 if fp.read(4) != MAGIC:
22 raise error, 'gethdr: bad magic word'
py_compile.py 13 MAGIC = imp.get_magic()
129 fc.write(MAGIC)
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/
sunaudio.py 8 MAGIC = '.snd'
21 if fp.read(4) != MAGIC:
22 raise error, 'gethdr: bad magic word'
py_compile.py 13 MAGIC = imp.get_magic()
129 fc.write(MAGIC)
sre_constants.py 16 MAGIC = 20031017
240 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
perlrun.swg 105 typedef int (CPerlObj::*SwigMagicFunc)(SV *, MAGIC *);
110 #define SWIG_MAGIC(a,b) (SV *a, MAGIC *b)
119 #define SWIG_MAGIC(a,b) (SV *a, MAGIC *b)
124 typedef int (*SwigMagicFunc)(SV *, MAGIC *);
131 #define SWIG_MAGIC(a,b) (struct interpreter *interp, SV *a, MAGIC *b)
136 typedef int (*SwigMagicFunc)(struct interpreter *, SV *, MAGIC *);
242 /* If magical, apply more magic */
251 MAGIC *mg;
450 /* Magic variable code */
458 SWIGRUNTIME void _swig_create_magic(SV *sv, char *name, int (*set)(SV *, MAGIC *), int (*get)(SV *,MAGIC *))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
HeaderItem.java 28 * {@code non-null;} the file format magic number, represented as the
31 private static final String MAGIC = "dex\n035\0";
75 out.annotate(8, "magic: " + new CstUtf8(MAGIC).toQuoted());
87 // Write the magic number.
89 out.writeByte(MAGIC.charAt(i));
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprof.java 35 * Prefix of valid magic values from the start of a binary hprof file.
37 static String MAGIC = "JAVA PROFILE ";
40 * Returns the file's magic value as a String if found, otherwise null.
49 if (string.startsWith(MAGIC)) {
  /external/elfutils/0.153/libdwfl/
gzip.c 60 # define MAGIC "\xFD" "7zXZ\0" /* XZ file format. */
73 # define MAGIC "BZh"
85 # define MAGIC "\037\213"
175 #define NOMAGIC(magic) \
176 (mapped_size <= sizeof magic || memcmp (mapped, magic, sizeof magic - 1))
179 if (NOMAGIC (MAGIC)
  /external/mksh/src/
eval.c 579 tpat1 = shf_smprintf("%s%c*", ++tpat0, MAGIC);
583 tpat1 = shf_smprintf("%c*%s", MAGIC, ++tpat0);
587 tpat1 = shf_smprintf("%c*%s%c*", MAGIC, pat, MAGIC);
650 *dp++ = MAGIC;
710 *dp++ = MAGIC;
975 * to have magic !,-,]s outside of
982 *dp++ = MAGIC;
989 *dp++ = MAGIC;
998 *dp++ = MAGIC;
    [all...]
  /frameworks/compile/mclinker/lib/LD/
Archive.cpp 19 const char Archive::MAGIC[] = "!<arch>\n";
21 const size_t Archive::MAGIC_LEN = sizeof(Archive::MAGIC) - 1;
  /external/valgrind/main/coregrind/m_ume/
macho.c 57 #define MAGIC MH_MAGIC
63 #define MAGIC MH_MAGIC_64
516 if (mh.magic != MAGIC) {
517 print("bad executable (no Mach-O magic)\n");
773 vki_uint32_t magic; local
776 if (size < sizeof(magic)) {
777 print("bad executable (no Mach-O magic)\n");
780 res = VG_(pread)(fd, &magic, sizeof(magic), offset)
806 const vki_uint32_t *magic = hdr; local
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 33 static const char MAGIC[]; ///< magic string
34 static const char THIN_MAGIC[]; ///< magic of thin archive
35 static const size_t MAGIC_LEN; ///< length of magic string
40 static const char MEMBER_MAGIC[]; ///< fmag field magic #
  /device/moto/shamu/
releasetools.py 9 __str__ = "bad magic value"
24 # char magic[8]; // set to BOOTLDR_MAGIC
29 MAGIC = "MBOOTV1\0"
51 magic, = struct.unpack(magic_format, data[num_imgs_size + NUM_MAX_IMAGES*img_info_size:num_imgs_size + NUM_MAX_IMAGES*img_info_size + magic_size])
52 if magic != MAGIC:
155 assert False, "bootloader.img bad magic value"
183 assert False, "radio.img bad magic value"
202 # be flashed to trigger the flex update "magic". Do not
226 assert False, "radio.img bad magic value
    [all...]
  /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...]
  /development/samples/browseable/DisplayingBitmaps/src/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...]
  /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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 90 static final String MAGIC = "libcore.io.DiskLruCache";
246 String magic = source.readUtf8LineStrict(); local
251 if (!MAGIC.equals(magic)
256 throw new IOException("unexpected journal header: [" + magic + ", " + version + ", "
348 writer.writeUtf8(MAGIC);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 27 # .pyc file (and 'PYC ' resource magic number)
28 MAGIC = imp.get_magic()
248 data = (MAGIC + '\0\0\0\0') + data
429 fc.write('\0\0\0\0') # MAGIC placeholder, written later
434 fc.write(MAGIC)

Completed in 467 milliseconds

1 2 3