Home
last modified time | relevance | path

Searched refs:memcmp (Results 1 – 25 of 70) sorted by relevance

123

/xen-4.10.0-shim-comet/xen/common/
A Ddecompress.c15 (!memcmp(inbuf, "\037\213", 2) || !memcmp(inbuf, "\037\236", 2)) ) in decompress()
19 if ( len >= 3 && !memcmp(inbuf, "\x42\x5a\x68", 3) ) in decompress()
22 if ( len >= 6 && !memcmp(inbuf, "\3757zXZ", 6) ) in decompress()
25 if ( len >= 2 && !memcmp(inbuf, "\135\000", 2) ) in decompress()
28 if ( len >= 5 && !memcmp(inbuf, "\x89LZO", 5) ) in decompress()
31 if ( len >= 2 && !memcmp(inbuf, "\x02\x21", 2) ) in decompress()
A Dstring.c370 int (memcmp)(const void *cs, const void *ct, size_t count)
422 if (!memcmp(s1,s2,l2))
A Dearlycpio.c131 !memcmp(p, path, mypathsize)) { in find_cpio_data()
A Dunxz.c137 #define memeq(p1, p2, sz) (memcmp(p1, p2, sz) == 0)
/xen-4.10.0-shim-comet/xen/arch/x86/pv/
A Demul-inv-op.c56 if ( memcmp(opcode, "\xf\x1\xf9", sizeof(opcode)) ) in emulate_invalid_rdtscp()
79 if ( memcmp(sig, "\xf\xbxen", sizeof(sig)) ) in emulate_forced_invalid_op()
89 if ( memcmp(instr, "\xf\xa2", sizeof(instr)) ) in emulate_forced_invalid_op()
/xen-4.10.0-shim-comet/xen/arch/x86/
A Ddmi_scan.c214 if (eps3 && memcmp(eps3->anchor, "_SM3_", 5) == 0 && in dmi_efi_get_table()
222 if (eps && memcmp(eps->anchor, "_SM_", 4) == 0 && in dmi_efi_get_table()
228 if (memcmp(eps->dmi.anchor, "_DMI_", 5) == 0 && in dmi_efi_get_table()
269 memcmp(eps.dmi.anchor, "_DMI_", 5) == 0 && in dmi_get_table()
283 if (!memcmp(eps.smbios3.anchor, "_SM3_", 5) && in dmi_get_table()
351 if (memcmp(dmi.anchor, "_DMI_", 5) || in dmi_iterate()
358 if (memcmp(smbios3.anchor, "_SM3_", 5) || in dmi_iterate()
387 if (memcmp(eps.anchor, "_SM3_", 5) || in dmi_efi_iterate()
410 if (memcmp(eps.anchor, "_SM_", 4) || in dmi_efi_iterate()
418 memcmp(eps.dmi.anchor, "_DMI_", 5) == 0 && in dmi_efi_iterate()
/xen-4.10.0-shim-comet/xen/arch/x86/efi/
A Dmkreloc.c331 if ( memcmp(sec1[i].name, sec2[i].name, sizeof(sec1[i].name)) || in main()
349 if ( memcmp(sec1[i].name, ".initcal", sizeof(sec1[i].name)) == 0 || in main()
350 memcmp(sec1[i].name, ".init.se", sizeof(sec1[i].name)) == 0 || in main()
351 memcmp(sec1[i].name, ".buildid", sizeof(sec1[i].name)) == 0 || in main()
352 memcmp(sec1[i].name, ".lockpro", sizeof(sec1[i].name)) == 0 ) in main()
/xen-4.10.0-shim-comet/xen/include/xen/
A Dstring.h104 int memcmp(const void *, const void *, size_t);
105 #define memcmp(s1, s2, n) __builtin_memcmp(s1, s2, n) macro
A Dcper.h35 return memcmp(&u1, &u2, sizeof(uuid_le)); in uuid_le_cmp()
/xen-4.10.0-shim-comet/stubdom/vtpmmgr/
A Dtpmrsa.c109 if (memcmp(tmp + 220, rsa_der_header, sizeof(rsa_der_header))) in tpmrsa_sigcheck()
111 if (memcmp(tmp + 236, sha1, 20)) in tpmrsa_sigcheck()
A Ddisk_read.c90 if (memcmp(&buf, &cfg->digest_release, 20)) in find_group_key()
101 if (memcmp(&sealed.magic, DISK_GROUP_BOUND_MAGIC, 4)) in find_group_key()
103 if (memcmp(sealed.tpm_manager_uuid, parent->uuid, 16)) in find_group_key()
134 if (memcmp(&sealed.magic, DISK_ROOT_BOUND_MAGIC, 4)) in parse_root_key()
167 if (memcmp(seal->hdr.magic, TPM_MGR_MAGIC, 12)) in find_root_key()
185 if (memcmp(&buf, &src->digest_release, 20)) in find_root_key()
/xen-4.10.0-shim-comet/tools/tests/x86_emulator/
A Dtest_x86_emulator.c1716 memcmp(res, res + 6, 8) ) in main()
1763 memcmp(res, res + 6, 8) ) in main()
2016 memcmp(res, res + 9, 28) || in main()
2017 memcmp(res, res + 6, 8) ) in main()
2067 memcmp(res, res + 9, 28) || in main()
2068 memcmp(res, res + 6, 8) ) in main()
2119 memcmp(res, res + 9, 28) || in main()
2120 memcmp(res, res + 6, 8) ) in main()
2339 memcmp(res, res + 6, 8) ) in main()
2363 memcmp(res, res + 6, 8) ) in main()
[all …]
/xen-4.10.0-shim-comet/xen/arch/arm/arm64/lib/
A DMakefile1 obj-y += memcpy.o memcmp.o memmove.o memset.o memchr.o
A Dmemcmp.S60 ENTRY(memcmp)
257 ENDPROC(memcmp)
/xen-4.10.0-shim-comet/xen/common/libfdt/
A Dfdt_ro.c65 if (memcmp(p, s, len) != 0) in _fdt_nodename_eq()
86 return (strlen(p) == len) && (memcmp(p, s, len) == 0); in _fdt_string_eq()
484 && (memcmp(val, propval, len) == 0)) in fdt_node_offset_by_prop_value()
522 if (memcmp(str, strlist, len+1) == 0) in fdt_stringlist_contains()
/xen-4.10.0-shim-comet/xen/include/asm-arm/
A Dstring.h35 int memcmp(const void *, const void *, size_t);
/xen-4.10.0-shim-comet/tools/blktap2/vhd/lib/
A Dvhd-util-check.c81 if (memcmp(footer->cookie, HD_COOKIE, size)) in vhd_util_check_validate_footer()
154 if (memcmp(header->cookie, DD_COOKIE, size)) in vhd_util_check_validate_header()
239 if (memcmp(batmap->header.cookie, VHD_BATMAP_COOKIE, size)) in vhd_util_check_validate_batmap()
422 if (memcmp(&primary, &backup, sizeof(primary))) { in vhd_util_check_footer()
434 cmp = memcmp(&primary, &backup, sizeof(primary)); in vhd_util_check_footer()
/xen-4.10.0-shim-comet/tools/firmware/rombios/32bit/
A Dutil.h23 int memcmp(const void *s1, const void *s2, unsigned n);
/xen-4.10.0-shim-comet/tools/memshr/
A Dbidir-hash.h103 return ( !memcmp(&h1, &h2, sizeof(share_tuple_t)) ); in blockshr_shrhnd_cmp()
/xen-4.10.0-shim-comet/tools/libxl/
A Dlibxl_genid.c51 return memcmp(id->bytes, zero.bytes, LIBXL_MS_VM_GENID_LEN) == 0; in libxl_ms_vm_genid_is_zero()
A Dlibxl_uuid.c136 return memcmp(uuid1->uuid, uuid2->uuid, sizeof(uuid1->uuid)); in libxl_uuid_compare()
/xen-4.10.0-shim-comet/xen/arch/arm/
A DREADME.LinuxPrimitives35 linux/arch/arm64/lib/memcmp.S xen/arch/arm/arm64/lib/memcmp.S
40 for i in memchr.S memcmp.S memcpy.S memmove.S memset.S ; do
/xen-4.10.0-shim-comet/stubdom/vtpm/
A Dvtpmblk.c302 if(!memcmp(hash0, hashkey, HASHSZ)) in read_vtpmblk()
316 if(!memcmp(hash1, hashkey, HASHSZ)) in read_vtpmblk()
/xen-4.10.0-shim-comet/tools/libxc/
A Dxc_dom_bzimageloader.c432 if ( left < 16 || memcmp(cur, magic, 9) ) in xc_try_lzo1x_decode()
647 return (memcmp(dom->kernel_blob, magic, len) == 0); in check_magic()
671 if ( memcmp(&hdr->header, HDR_MAGIC, HDR_MAGIC_SZ) != 0 ) in xc_dom_probe_bzimage_kernel()
/xen-4.10.0-shim-comet/tools/libfsimage/iso9660/
A Dfsys_iso9660.c129 && !memcmp(PRIMDESC->id, ISO_STANDARD_ID, sizeof(PRIMDESC->id))) in iso9660_mount()
355 && !memcmp(name, dirname, pathlen)) in iso9660_dir()

Completed in 31 milliseconds

123