HomeSort by relevance Sort by last modified time
    Searched refs:magic (Results 76 - 100 of 1625) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
coda_psdev.h 4 #include <linux/magic.h>
flat.h 28 char magic[4]; member in struct:flat_hdr
cramfs_fs.h 5 #include <linux/magic.h>
55 __u32 magic; /* 0x28cd3d45 - random number */ member in struct:cramfs_super
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
spirv_definition.h 25 uint32_t magic; member in struct:spv_header_t
  /external/e2fsprogs/lib/ext2fs/
bmap64.h 41 errcode_t magic; member in struct:ext2fs_struct_generic_bitmap
57 (((bmap)->magic == EXT2_ET_MAGIC_GENERIC_BITMAP) || \
58 ((bmap)->magic == EXT2_ET_MAGIC_BLOCK_BITMAP) || \
59 ((bmap)->magic == EXT2_ET_MAGIC_INODE_BITMAP))
62 (((bmap)->magic == EXT2_ET_MAGIC_GENERIC_BITMAP64) || \
63 ((bmap)->magic == EXT2_ET_MAGIC_BLOCK_BITMAP64) || \
64 ((bmap)->magic == EXT2_ET_MAGIC_INODE_BITMAP64))
freefs.c 24 if (!fs || (fs->magic != EXT2_ET_MAGIC_EXT2FS_FILSYS))
66 fs->magic = 0;
77 if (bb->magic != EXT2_ET_MAGIC_BADBLOCKS_LIST)
97 if (!dblist || (dblist->magic != EXT2_ET_MAGIC_DBLIST))
105 dblist->magic = 0;
gen_bitmap.c 32 errcode_t magic; member in struct:ext2fs_struct_generic_bitmap
43 (((bmap)->magic == EXT2_ET_MAGIC_GENERIC_BITMAP) || \
44 ((bmap)->magic == EXT2_ET_MAGIC_BLOCK_BITMAP) || \
45 ((bmap)->magic == EXT2_ET_MAGIC_INODE_BITMAP))
48 (((bmap)->magic == EXT2_ET_MAGIC_GENERIC_BITMAP64) || \
49 ((bmap)->magic == EXT2_ET_MAGIC_BLOCK_BITMAP64) || \
50 ((bmap)->magic == EXT2_ET_MAGIC_INODE_BITMAP64))
70 if (!bitmap || !((bitmap->magic == EXT2_ET_MAGIC_GENERIC_BITMAP) ||
71 (bitmap->magic == EXT2_ET_MAGIC_INODE_BITMAP) ||
72 (bitmap->magic == EXT2_ET_MAGIC_BLOCK_BITMAP))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
whichdb.py 78 # Read the start of the file -- the magic number
89 (magic,) = struct.unpack("=l", s)
94 if magic == 0x13579ace:
98 if magic in (0x00061561, 0x61150600):
104 (magic,) = struct.unpack("=l", s16[-4:])
109 if magic in (0x00061561, 0x61150600):
  /external/python/cpython2/Lib/
whichdb.py 78 # Read the start of the file -- the magic number
89 (magic,) = struct.unpack("=l", s)
94 if magic in (0x13579ace, 0x13579acd, 0x13579acf):
98 if magic in (0x00061561, 0x61150600):
104 (magic,) = struct.unpack("=l", s16[-4:])
109 if magic in (0x00061561, 0x61150600):
  /external/valgrind/helgrind/
hg_lock_n_thread.c 49 return thr != NULL && thr->magic == Thread_MAGIC;
68 || (lock->magic != LockN_MAGIC && lock->magic != LockP_MAGIC))
104 && lock->magic == LockP_MAGIC
111 && lock->magic == LockN_MAGIC
  /prebuilts/gdb/darwin-x86/lib/python2.7/
whichdb.py 78 # Read the start of the file -- the magic number
89 (magic,) = struct.unpack("=l", s)
94 if magic in (0x13579ace, 0x13579acd, 0x13579acf):
98 if magic in (0x00061561, 0x61150600):
104 (magic,) = struct.unpack("=l", s16[-4:])
109 if magic in (0x00061561, 0x61150600):
  /prebuilts/gdb/linux-x86/lib/python2.7/
whichdb.py 78 # Read the start of the file -- the magic number
89 (magic,) = struct.unpack("=l", s)
94 if magic in (0x13579ace, 0x13579acd, 0x13579acf):
98 if magic in (0x00061561, 0x61150600):
104 (magic,) = struct.unpack("=l", s16[-4:])
109 if magic in (0x00061561, 0x61150600):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
whichdb.py 78 # Read the start of the file -- the magic number
89 (magic,) = struct.unpack("=l", s)
94 if magic in (0x13579ace, 0x13579acd, 0x13579acf):
98 if magic in (0x00061561, 0x61150600):
104 (magic,) = struct.unpack("=l", s16[-4:])
109 if magic in (0x00061561, 0x61150600):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
whichdb.py 78 # Read the start of the file -- the magic number
89 (magic,) = struct.unpack("=l", s)
94 if magic in (0x13579ace, 0x13579acd, 0x13579acf):
98 if magic in (0x00061561, 0x61150600):
104 (magic,) = struct.unpack("=l", s16[-4:])
109 if magic in (0x00061561, 0x61150600):
  /prebuilts/go/darwin-x86/src/image/
format.go 16 // A format holds an image format's name, magic header and how to decode it.
18 name, magic string
28 // Magic is the magic prefix that identifies the format's encoding. The magic
32 func RegisterFormat(name, magic string, decode func(io.Reader) (Image, error), decodeConfig func(io.Reader) (Config, error)) {
33 formats = append(formats, format{name, magic, decode, decodeConfig})
50 // Match reports whether magic matches b. Magic may contain "?" wildcards.
51 func match(magic string, b []byte) bool
    [all...]
  /prebuilts/go/linux-x86/src/image/
format.go 16 // A format holds an image format's name, magic header and how to decode it.
18 name, magic string
28 // Magic is the magic prefix that identifies the format's encoding. The magic
32 func RegisterFormat(name, magic string, decode func(io.Reader) (Image, error), decodeConfig func(io.Reader) (Config, error)) {
33 formats = append(formats, format{name, magic, decode, decodeConfig})
50 // Match reports whether magic matches b. Magic may contain "?" wildcards.
51 func match(magic string, b []byte) bool
    [all...]
  /test/vts/drivers/hal/libcodecoverage/
GcdaFile.cpp 130 int GcdaFile::Magic(unsigned magic, unsigned expected) {
131 if (magic == expected) return 1;
132 magic = (magic >> 16) | (magic << 16);
133 magic = ((magic & 0xff00ff) << 8) | ((magic >> 8) & 0xff00ff);
134 if (magic == expected)
    [all...]
  /external/google-breakpad/src/common/mac/
macho_walker.cc 134 // Read the magic bytes that's common amongst all mach-o files
135 uint32_t magic; local
136 if (!ReadBytes(&magic, sizeof(magic), 0))
139 offset = sizeof(magic);
143 if (magic == FAT_MAGIC || magic == FAT_CIGAM) {
146 else if (magic != MH_MAGIC && magic != MH_CIGAM && magic != MH_MAGIC_64 &
    [all...]
  /system/extras/boot_control_copy/
bootinfo.cpp 166 if (info->magic[0] != 'B' ||
167 info->magic[1] != 'C' ||
168 info->magic[2] != 'c')
178 info->magic[0] = 'B';
179 info->magic[1] = 'C';
180 info->magic[2] = 'c';
  /bionic/libc/kernel/uapi/linux/
nbd.h 51 __be32 magic; member in struct:nbd_request
58 __be32 magic; member in struct:nbd_reply
  /bionic/libc/kernel/uapi/scsi/
scsi_netlink.h 29 uint16_t magic; member in struct:scsi_nl_hdr
50 #define INIT_SCSI_NL_HDR(hdr,t,mtype,mlen) { (hdr)->version = SCSI_NL_VERSION; (hdr)->transport = t; (hdr)->magic = SCSI_NL_MAGIC; (hdr)->msgtype = mtype; (hdr)->msglen = mlen; }
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regfree.c 115 if (g == NULL || g->magic != MAGIC2) /* oops again */
118 g->magic = 0; /* mark it invalid */
  /external/kernel-headers/original/uapi/linux/
nbd.h 59 /* These are sent over the network in the request/reply magic fields */
70 __be32 magic; member in struct:nbd_request
82 __be32 magic; member in struct:nbd_reply
  /external/kernel-headers/original/uapi/scsi/
scsi_netlink.h 46 uint16_t magic; member in struct:scsi_nl_hdr
54 /* scsi_nl_hdr->magic value */
118 (hdr)->magic = SCSI_NL_MAGIC; \
  /external/toolchain-utils/
image_chromeos.py 414 magic = 'abcdefghijklmnopqrstuvwxyz'
415 command = 'echo %s' % magic

Completed in 843 milliseconds

1 2 34 5 6 7 8 91011>>