Searched refs:signature (Results 26 - 50 of 371) sorted by relevance

1234567891011>>

/linux-master/include/uapi/linux/
H A Dcycx_cfm.h79 * @signature - CFM file signature
88 char signature[80]; member in struct:cycx_firmware
/linux-master/drivers/acpi/acpica/
H A Dtbxface.c165 table_desc->signature.ascii));
203 * PARAMETERS: signature - ACPI signature of needed table
216 acpi_get_table_header(char *signature,
225 if (!signature || !out_table_header) {
234 (&(acpi_gbl_root_table_list.tables[i].signature),
235 signature)) {
281 * PARAMETERS: signature - ACPI signature of needed table
297 acpi_get_table(char *signature,
[all...]
H A Dutmisc.c62 if (ACPI_COMPARE_NAMESEG(table->signature, ACPI_SIG_DSDT) ||
63 ACPI_COMPARE_NAMESEG(table->signature, ACPI_SIG_PSDT) ||
64 ACPI_COMPARE_NAMESEG(table->signature, ACPI_SIG_SSDT) ||
65 ACPI_COMPARE_NAMESEG(table->signature, ACPI_SIG_OSDT) ||
66 ACPI_IS_OEM_SIG(table->signature)) {
H A Dtbxfload.c121 !ACPI_COMPARE_NAMESEG(table->signature.ascii, ACPI_SIG_DSDT) ||
174 (table->signature.ascii, ACPI_SIG_SSDT)
175 && !ACPI_COMPARE_NAMESEG(table->signature.ascii,
177 && !ACPI_COMPARE_NAMESEG(table->signature.ascii,
191 table->signature.ascii,
198 table->signature.ascii,
406 (acpi_gbl_root_table_list.tables[i].signature.ascii,
H A Dtbdata.c99 ACPI_MOVE_32_TO_32(table_desc->signature.ascii, table->signature);
482 * signature - Table signature to verify
496 char *signature, u32 *table_index)
509 /* If a particular signature is expected (DSDT/FACS), it must match */
511 if (signature &&
512 !ACPI_COMPARE_NAMESEG(&table_desc->signature, signature)) {
514 "Invalid signature
495 acpi_tb_verify_temp_table(struct acpi_table_desc *table_desc, char *signature, u32 *table_index) argument
[all...]
H A Dtbinstal.c127 ACPI_COMPARE_NAMESEG(&new_table_desc.signature, ACPI_SIG_SSDT)) {
129 new_table_desc.signature.ascii,
249 old_table_desc->signature.ascii,
/linux-master/arch/x86/boot/compressed/
H A Dpgtable_64.c38 char *signature; local
52 signature = (char *)&boot_params_ptr->efi_info.efi_loader_signature;
53 if (strncmp(signature, EFI32_LOADER_SIGNATURE, 4) &&
54 strncmp(signature, EFI64_LOADER_SIGNATURE, 4)) {
/linux-master/kernel/module/
H A Ddecompress.c59 * Calculate length of the header which consists of signature, header
65 const u8 signature[] = { 0x1f, 0x8b, 0x08 }; local
68 if (size < len || memcmp(buf, signature, sizeof(signature)))
152 static const u8 signature[] = { 0xfd, '7', 'z', 'X', 'Z', 0 }; local
159 if (size < sizeof(signature) ||
160 memcmp(buf, signature, sizeof(signature))) {
210 static const u8 signature[] = { 0x28, 0xb5, 0x2f, 0xfd }; local
221 if (size < sizeof(signature) ||
[all...]
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dcudbg_lib_common.h21 u32 signature; member in struct:cudbg_hdr
50 u32 signature; member in struct:cudbg_ver_hdr
/linux-master/sound/soc/intel/skylake/
H A Dskl-i2s.h22 #define is_legacy_blob(x) (x.signature != 0xEE)
56 u32 signature : 8; member in struct:skl_i2s_config_blob_signature
/linux-master/fs/verity/
H A Dsignature.c11 * signatures with fs-verity, and the alternatives (such as userspace signature
25 * If 1, all verity files must have a valid builtin signature.
38 * fsverity_verify_signature() - check a verity file's signature
40 * @signature: the file's built-in signature
41 * @sig_size: size of signature in bytes, or 0 if no signature
43 * If the file includes a signature of its fs-verity file digest, verify it
46 * Return: 0 on success (signature valid or not required); -errno on failure
49 const u8 *signature, size_
48 fsverity_verify_signature(const struct fsverity_info *vi, const u8 *signature, size_t sig_size) argument
[all...]
/linux-master/drivers/scsi/
H A Dfdomain_isa.c40 * The following BIOS signature signatures are for boards which do *NOT*
59 static struct signature { struct
60 const char *signature; member in struct:signature
91 struct signature *sig = NULL;
93 static struct signature *saved_sig;
102 signatures[i].signature,
105 if (i == SIGNATURE_COUNT) /* no signature found */
119 /* save BIOS signature for later use in port probing */
126 /* use saved BIOS signature if present */
/linux-master/arch/x86/include/asm/
H A Dcpuid.h194 uint32_t base, eax, signature[3]; local
197 cpuid(base, &eax, &signature[0], &signature[1], &signature[2]);
199 if (!memcmp(sig, signature, 12) &&
/linux-master/drivers/acpi/
H A Dacpi_fpdt.c35 u32 signature; member in struct:fpdt_subtable_header
167 char *signature = (subtable_type == SUBTABLE_FBPT ? "FBPT" : "S3PT"); local
180 if (strncmp((char *)&subtable_header->signature, signature, 4)) {
181 pr_info(FW_BUG "subtable signature and type mismatch!\n");
207 record_header->type, signature);
223 record_header->type, signature);
238 record_header->type, signature);
/linux-master/arch/x86/pci/
H A Dpcbios.c19 /* BIOS32 signature: "_32_" */
22 /* PCI signature: "PCI " */
25 /* PCI service signature: "$PCI" */
78 unsigned long signature; /* _32_ */ member in struct:bios32::__anon179
148 u32 signature, eax, ebx, ecx; local
161 : "=d" (signature),
178 if (status || signature != PCI_SIGNATURE) {
180 status, signature);
318 if (get_kernel_nofault(sig, &check->fields.signature))
321 if (check->fields.signature !
[all...]
/linux-master/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_mip.c22 __le32 signature; member in struct:nfp_mip
53 if (mip->signature != NFP_MIP_SIGNATURE) {
54 nfp_warn(cpp, "Incorrect MIP signature (0x%08x)\n",
55 le32_to_cpu(mip->signature));
/linux-master/drivers/firmware/google/
H A Dmemconsole-x86-legacy.c23 u32 signature; member in struct:biosmemcon_ebda
99 * note: signature is not necessarily dword-aligned
105 if (hdr->signature == BIOS_MEMCONSOLE_V1_MAGIC) {
111 if (hdr->signature == BIOS_MEMCONSOLE_V2_MAGIC) {
/linux-master/tools/power/acpi/tools/acpidump/
H A Dapfiles.c100 * filename from the table signature.
116 /* Construct lower-case filename from the table local signature */
118 if (ACPI_VALIDATE_RSDP_SIG(table->signature)) {
121 ACPI_COPY_NAMESEG(filename, table->signature);
142 table->signature, filename, table->length,
/linux-master/block/partitions/
H A Dmac.c50 if (be16_to_cpu(md->signature) != MAC_DRIVER_MAGIC) {
64 if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC) {
85 if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC)
/linux-master/drivers/block/
H A Drbd_types.h83 char signature[4]; member in struct:rbd_image_header_ondisk
/linux-master/include/linux/
H A Decryptfs.h26 /* The original signature size is only for what is stored on disk; all
77 u8 signature[ECRYPTFS_PASSWORD_SIG_SIZE + 1]; member in struct:ecryptfs_password
87 u8 signature[ECRYPTFS_PASSWORD_SIG_SIZE + 1]; member in struct:ecryptfs_private_key
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/acr/
H A Dgp108.c52 .signature = gm200_flcn_fw_signature,
70 .signature = gm200_flcn_fw_signature,
/linux-master/tools/perf/util/
H A DPERF-VERSION-GEN22 CID=$(git log -1 --abbrev=12 --pretty=format:"%h" --no-show-signature 2>/dev/null) && CID="-g$CID"
/linux-master/drivers/gpu/drm/i915/gvt/
H A Dopregion.c46 u8 signature[16]; member in struct:opregion_header
142 v->header.signature[0] = '$';
143 v->header.signature[1] = 'V';
144 v->header.signature[2] = 'B';
145 v->header.signature[3] = 'T';
153 strcpy(&v->bdb_header.signature[0], "BIOS_DATA_BLOCK");
239 memcpy(header->signature, opregion_signature,
/linux-master/include/acpi/
H A Dactbl.h29 * the wrong signature.
40 #define ACPI_RSDP_NAME "RSDP" /* Short name for RSDP, not signature */
41 #define ACPI_OEM_NAME "OEM" /* Short name for OEM, not signature */
69 char signature[ACPI_NAMESEG_SIZE]; /* ASCII table signature */ member in struct:acpi_table_header
106 char signature[8]; /* ACPI signature, contains "RSD PTR " */ member in struct:acpi_table_rsdp
120 char signature[8]; member in struct:acpi_rsdp_common
163 char signature[4]; /* ASCII table signature */ member in struct:acpi_table_facs
339 union acpi_name_union signature; member in struct:acpi_table_desc
[all...]

Completed in 188 milliseconds

1234567891011>>