Searched refs:magic (Results 51 - 75 of 271) sorted by relevance

1234567891011

/external/grub/docs/
H A Dkernel.c.texi44 void cmain (unsigned long magic, unsigned long addr);
53 cmain (unsigned long magic, unsigned long addr)
61 if (magic != MULTIBOOT_BOOTLOADER_MAGIC)
63 printf ("Invalid magic number: 0x%x\n", (unsigned) magic);
/external/qemu/
H A Dtcpdump.c47 uint32_t magic; member in struct:__anon8767
58 h.magic = PCAP_MAGIC;
/external/valgrind/main/memcheck/tests/
H A Ddescribe-block.stderr.exp4 Address 0x........ is 0 bytes inside a magic foople zone of size 4,096 client-defined
/external/e2fsprogs/lib/ext2fs/
H A Dbadblocks.c42 bb->magic = EXT2_ET_MAGIC_BADBLOCKS_LIST;
166 if (bb->magic != EXT2_ET_MAGIC_BADBLOCKS_LIST)
248 iter->magic = EXT2_ET_MAGIC_BADBLOCKS_ITERATE;
267 if (iter->magic != EXT2_ET_MAGIC_BADBLOCKS_ITERATE)
272 if (bb->magic != EXT2_ET_MAGIC_BADBLOCKS_LIST)
292 if (!iter || (iter->magic != EXT2_ET_MAGIC_BADBLOCKS_ITERATE))
H A Dinode_io.c27 * For checking structure magic numbers...
31 if ((struct)->magic != (code)) return (code)
34 int magic; member in struct:inode_private_data
92 data->magic = EXT2_ET_MAGIC_INODE_IO_CHANNEL;
141 io->magic = EXT2_ET_MAGIC_IO_CHANNEL;
/external/qemu/android/
H A Dsnapshot.c265 /* read magic number and qcow version (2x4 bytes) */
266 uint32_t magic, version; local
267 read_or_die(fd, &magic, sizeof(magic));
269 be32_to_cpus(&magic);
272 if (magic != QCOW_MAGIC) {
273 derror("Not a valid Qcow snapshot file (expected magic value '%08x', got '%08x').",
274 QCOW_MAGIC, magic);
/external/emma/core/java12/com/vladium/jcd/parser/
H A DClassDefParser.java104 magic ();
135 void magic () throws IOException method in class:ClassDefParser.classParser
137 final long magic = m_bytes.readU4 ();
138 if (DEBUG) System.out.println ("magic: [" + Long.toHexString (magic) + ']');
140 m_table.setMagic (magic);
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebBasePluginPackage.mm371 uint32_t magic = *rawData.data();
373 if (magic == MH_MAGIC || magic == MH_CIGAM) {
378 if (magic == MH_CIGAM)
386 } else if (magic == MH_MAGIC_64 || magic == MH_CIGAM_64) {
391 if (magic == MH_CIGAM_64)
399 } else if (magic == FAT_MAGIC || magic == FAT_CIGAM) {
403 if (magic
[all...]
/external/qemu/block/
H A Dvmdk.c91 uint32_t magic; local
95 magic = be32_to_cpu(*(uint32_t *)buf);
96 if (magic == VMDK3_MAGIC ||
97 magic == VMDK4_MAGIC)
365 uint32_t magic; local
368 if (bdrv_pread(bs->file, 0, &magic, sizeof(magic)) != sizeof(magic))
371 magic = be32_to_cpu(magic);
671 uint32_t tmp, magic, grains, gd_size, gt_size, gt_count; local
[all...]
H A Dbochs.c43 char magic[32]; // "Bochs Virtual HD Image" member in struct:bochs_header_v1
63 char magic[32]; // "Bochs Virtual HD Image" member in struct:bochs_header
100 if (!strcmp(bochs->magic, HEADER_MAGIC) &&
123 if (strcmp(bochs.magic, HEADER_MAGIC) ||
H A Dcow.c36 uint32_t magic; member in struct:cow_header_v2
53 be32_to_cpu(cow_header->magic) == COW_MAGIC &&
73 if (be32_to_cpu(cow_header.magic) != COW_MAGIC ||
244 cow_header.magic = cpu_to_be32(COW_MAGIC);
/external/libpcap/
H A Dsavefile.c858 hdr.magic = TCPDUMP_MAGIC;
984 bpf_u_int32 magic; local
1009 magic = hdr.magic;
1010 if (magic != TCPDUMP_MAGIC && magic != KUZNETZOV_TCPDUMP_MAGIC) {
1011 magic = SWAPLONG(magic);
1012 if (magic != TCPDUMP_MAGIC && magic !
[all...]
/external/ppp/pppd/
H A DMakefile.sol211 OBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap-new.o eap.o md5.o \
/external/webkit/Source/WebCore/platform/network/win/
H A DDownloadBundleWin.cpp91 const UInt32& magic = magicNumber(); local
92 if (fwrite(&magic, 4, 1, bundle) != 1) {
93 LOG_ERROR("Failed to write footer magic number to the bundle - errno(%i)", errno);
126 // Check for the bundle magic number at the end of the file
136 LOG_ERROR("Failed to read footer magic number from the bundle - errno(%i)", errno);
141 LOG_ERROR("Footer's magic number does not match 0x%X - errno(%i)", magicNumber(), errno);
184 // Finally, make the resume data. Now, it is possible by some twist of fate the bundle magic number
/external/valgrind/main/coregrind/m_ume/
H A Dmacho.c465 if (mh.magic != MAGIC) {
466 print("bad executable (no Mach-O magic)\n");
704 vki_uint32_t magic; local
707 if (size < sizeof(magic)) {
708 print("bad executable (no Mach-O magic)\n");
711 res = VG_(pread)(fd, &magic, sizeof(magic), offset);
712 if (sr_isError(res) || sr_Res(res) != sizeof(magic)) {
713 print("bad executable (no Mach-O magic)\n");
717 if (magic
737 vki_uint32_t *magic = (vki_uint32_t *)hdr; local
[all...]
/external/openssl/crypto/pem/
H A Dpvkfmt.c129 /* The PVK file magic number: seems to spell out "bobsfile", who is Bob? */
251 unsigned int bitlen, magic; local
253 if (do_blob_header(&p, length, &magic, &bitlen, &isdss, &ispub) <= 0)
274 unsigned int bitlen, magic, length; local
283 if (do_blob_header(&p, 16, &magic, &bitlen, &isdss, &ispub) <= 0)
478 static int check_bitlen_rsa(RSA *rsa, int ispub, unsigned int *magic);
479 static int check_bitlen_dsa(DSA *dsa, int ispub, unsigned int *magic);
487 unsigned int bitlen, magic = 0, keyalg; local
491 bitlen = check_bitlen_dsa(pk->pkey.dsa, ispub, &magic);
496 bitlen = check_bitlen_rsa(pk->pkey.rsa, ispub, &magic);
728 unsigned int magic; local
[all...]
/external/freetype/src/pshinter/
H A Dpshrec.h135 FT_UInt32 magic; member in struct:PS_HintsRec_
/external/kernel-headers/original/asm-x86/
H A Dsigcontext.h48 unsigned short magic; /* 0xffff = regular FPU data only */ member in struct:_fpstate
H A Duser32.h63 __u32 magic; /* To uniquely identify a core file */ member in struct:user32
H A Duser_32.h112 unsigned long magic; /* To uniquely identify a core file */ member in struct:user
/external/kernel-headers/original/linux/
H A Dswap.h42 * what the swap magic looks like for the old (limited to 128MB)
47 * Having the magic at the end of the PAGE_SIZE makes detecting swap
49 * For 2.5 we'll probably want to move the magic to just beyond the
55 char magic[10]; /* SWAP-SPACE or SWAPSPACE2 */ member in struct:swap_header::__anon5956
56 } magic; member in union:swap_header
112 ((__swapoffset(magic.magic) - __swapoffset(info.badpages)) / sizeof(int))
/external/llvm/lib/Archive/
H A DArchive.cpp119 SmallString<4> magic; local
121 sys::fs::get_magic(path.str(), magic.capacity(), magic);
122 signature = magic.c_str();
/external/oprofile/libabi/
H A Dop_abi.c44 { "offsetof_header_magic", offsetof(struct opd_header, magic) },
/external/oprofile/libopagent/
H A Djitdump.h41 u32 magic; member in struct:jitheader
/external/qemu/android/utils/
H A Dintmap.h63 void* magic[4]; member in struct:AIntMapIterator

Completed in 387 milliseconds

1234567891011