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

1 2 3 4 5 6 7

  /external/jemalloc/test/unit/
zero.c 13 #define MAGIC ((uint8_t)0x61)
22 assert_u_eq(s[0], MAGIC,
25 assert_u_eq(s[sz_prev-1], MAGIC,
34 s[i] = MAGIC;
45 #undef MAGIC
  /bionic/tests/headers/posix/
cpio_h.c 60 #if !defined(MAGIC)
61 #error MAGIC
  /bionic/libc/include/
cpio.h 55 #define MAGIC "070707"
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
cpio.h 47 #define MAGIC "070707"
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
checkpyc.py 18 MAGIC = imp.get_magic()
20 print 'Using MAGIC word', repr(MAGIC)
49 if magic_str <> MAGIC:
50 print 'Bad MAGIC word in ".pyc" file',
  /external/python/cpython2/Tools/scripts/
checkpyc.py 18 MAGIC = imp.get_magic()
20 print 'Using MAGIC word', repr(MAGIC)
49 if magic_str <> MAGIC:
50 print 'Bad MAGIC word in ".pyc" file',
  /external/python/cpython3/Tools/scripts/
checkpyc.py 21 MAGIC = importlib.util.MAGIC_NUMBER
23 print('Using MAGIC word', repr(MAGIC))
50 if magic_str != MAGIC:
51 print('Bad MAGIC word in ".pyc" file', end=' ')
  /test/vts/utils/python/coverage/
parser_test.py 25 MAGIC = 0x67636e6f
41 def __init__(self, magic=MAGIC, format='<'):
43 self.magic = magic
45 self.content = struct.pack(format + 'III', magic, version, 0)
62 s = MockStream(stream.magic, stream.format)
83 s = MockStream(stream.magic, stream.format)
110 s = MockStream(stream.magic, stream.format)
147 p = parser.GcovStreamParserUtil(self.stream, MAGIC)
    [all...]
gcda_parser.py 46 MAGIC = 0x67636461
62 super(GCDAParser, self).__init__(stream, self.MAGIC)
  /external/python/cpython2/Lib/
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
244 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sunaudio.py 8 MAGIC = '.snd'
21 if fp.read(4) != MAGIC:
22 raise error, 'gethdr: bad magic word'
  /prebuilts/gdb/linux-x86/lib/python2.7/
sunaudio.py 8 MAGIC = '.snd'
21 if fp.read(4) != MAGIC:
22 raise error, 'gethdr: bad magic word'
  /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'
  /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'
  /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));
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
JcopBackupImpl.java 33 final public static short MAGIC = (short)0xdeed;
77 if (Util.getShort(in, (short)3) != MAGIC) {
80 // Magic is good. Let's process all the tags. They should be
134 short length = (short) 5; // magic(TAG, SIZE, MAGIC)
149 // Set magic
154 Util.setShort(buffer, offset, MAGIC);
  /external/elfutils/libdwfl/
gzip.c 39 # define MAGIC "\xFD" "7zXZ\0" /* XZ file format. */
52 # define MAGIC "BZh"
64 # define MAGIC "\037\213"
209 #define NOMAGIC(magic) \
210 (state.mapped_size <= sizeof magic || \
211 memcmp (mapped, magic, sizeof magic - 1))
214 if (NOMAGIC (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);
  /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/
py_compile.py 13 MAGIC = imp.get_magic()
129 fc.write(MAGIC)
sre_constants.py 16 MAGIC = 20031017
242 f.write("#define SRE_MAGIC %d\n" % MAGIC)
  /external/python/cpython3/Lib/
sre_constants.py 16 MAGIC = 20140917
202 f.write("#define SRE_MAGIC %d\n" % MAGIC)

Completed in 848 milliseconds

1 2 3 4 5 6 7