Searched refs:signature (Results 151 - 175 of 219) sorted by relevance

123456789

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h281 virtual Status GenerateFunction(const char *signature, argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp702 CodeGenTypes::arrangeCall(const CGFunctionInfo &signature, argument
704 assert(signature.arg_size() <= args.size());
705 if (signature.arg_size() == args.size())
706 return signature;
709 auto sigParamInfos = signature.getExtParameterInfos();
717 assert(signature.getRequiredArgs().allowsOptionalArgs());
718 return arrangeLLVMFunctionInfo(signature.getReturnType(),
719 signature.isInstanceMethod(),
720 signature.isChainCall(),
722 signature
[all...]
/freebsd-11-stable/contrib/elftoolchain/common/
H A Duthash.h158 (head)->hh.tbl->signature = HASH_SIGNATURE; \
871 /* random signature used only to find hash tables in external analysis */
899 uint32_t signature; /* used only to find hash tables in external analysis */ member in struct:UT_hash_table
/freebsd-11-stable/contrib/libucl/uthash/
H A Duthash.h158 (head)->hh.tbl->signature = HASH_SIGNATURE; \
672 /* random signature used only to find hash tables in external analysis */
700 uint32_t signature; /* used only to find hash tables in external analysis */ member in struct:UT_hash_table
/freebsd-11-stable/sys/dev/aic7xxx/
H A Daic79xx.h914 uint16_t signature; /* BIOS Signature */ member in struct:seeprom_config
947 uint16_t signature; member in struct:vpd_config
/freebsd-11-stable/sys/dev/nand/
H A Dnandsim_chip.c121 bcopy("onfi", &chip_param->signature, 4);
644 nandchip_set_data(chip, (uint8_t *)&params->signature,
/freebsd-11-stable/crypto/openssl/apps/
H A Dx509.c990 x->signature->data[x->signature->length - 1] ^= 0x1;
H A Docsp.c556 "-no_signature_verify don't check signature on response\n");
1112 bs->signature->data[bs->signature->length - 1] ^= 0x1;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc9 * This is the master file that defines all the data structure, signature,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc9 * This is the master file that defines all the data structure, signature,
/freebsd-11-stable/sys/arm/nvidia/
H A Dtegra_pcie.c469 uint32_t code, signature; local
472 signature = bus_read_4(sc->afi_mem_res, AFI_INTR_SIGNATURE);
477 printf("tegra_pci_intr: code %x sig %x\n", code, signature);
/freebsd-11-stable/sys/dev/ata/chipsets/
H A Data-promise.c794 u_int32_t signature = ch->hw.softreset(dev, ATA_PM); local
797 device_printf(dev, "SIGNATURE: %08x\n", signature);
799 switch (signature >> 16) {
813 "No signature, assuming disk device\n");
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp676 StringRef signature = file->getShtGroupSignature(objSections, elfSec);
678 symtab->comdatGroups.lookup(CachedHashStringRef(signature)))
679 msg += "\n>>> section group signature: " + signature.str() +
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DPDB.cpp148 /// Adds a precompiled headers object signature -> TPI mapping.
150 registerPrecompiledHeaders(uint32_t signature);
355 fatal("No signature found for the precompiled headers OBJ (" +
366 "A precompiled headers OBJ with the same signature was already "
576 PDBLinker::registerPrecompiledHeaders(uint32_t signature) { argument
577 auto insertion = precompTypeIndexMappings.insert({signature, CVIndexMap()});
591 // signature. Return the type index mapping if we've already seen it.
/freebsd-11-stable/sys/dev/ciss/
H A Dcissreg.h397 char signature[4]; /* "CISS" */ member in struct:ciss_config_table
H A Dciss.c692 if (strncmp(sc->ciss_cfg->signature, "CISS", 4)) {
693 ciss_printf(sc, "config signature mismatch (got '%c%c%c%c')\n",
694 sc->ciss_cfg->signature[0], sc->ciss_cfg->signature[1],
695 sc->ciss_cfg->signature[2], sc->ciss_cfg->signature[3]);
1263 ciss_printf(sc, " signature '%.4s'\n", sc->ciss_cfg->signature);
/freebsd-11-stable/sys/dev/bktr/
H A Dbktr_reg.h712 u_char signature[Bt848_MAX_SIGN]; member in struct:bt848_card_sig
/freebsd-11-stable/crypto/openssl/crypto/cms/
H A Dcms_asn1.c112 ASN1_SIMPLE(CMS_SignerInfo, signature, ASN1_OCTET_STRING),
/freebsd-11-stable/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsampicmd.c1693 /* set up signature */
1694 OSSA_WRITE_LE_32(agRoot, &payload, OSSA_OFFSET_OF(agsaSetNVMDataCmd_t, Data.indirectData.signature), NVMDInfo->signature);
1706 /* set up signature */
1707 OSSA_WRITE_LE_32(agRoot, &payload, OSSA_OFFSET_OF(agsaSetNVMDataCmd_t, Data.indirectData.signature), NVMDInfo->signature);
/freebsd-11-stable/sys/i386/i386/
H A Dbios.c90 /* look for the signature */
193 * Search some or all of the BIOS region for a signature string.
200 * (sig) is a pointer to the byte(s) of the signature.
201 * (siglen) number of bytes in the signature.
202 * (paralen) signature paragraph (alignment) size.
203 * (sigofs) offset of the signature within the paragraph.
205 * Returns the _physical_ address of the found signature, 0 if the
206 * signature was not found.
494 sig = oem->signature;
/freebsd-11-stable/sys/dev/qlxge/
H A Dqls_hw.c75 static int qls_flash_validate(qla_host_t *ha, const char *signature);
1832 qls_flash_validate(qla_host_t *ha, const char *signature) argument
1838 if (bcmp(ha->flash.id, signature, 4)) {
1839 QL_DPRINT1((ha->pci_dev, "%s: invalid signature "
1842 signature));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1385 Status ScriptInterpreterPythonImpl::GenerateFunction(const char *signature, argument
1394 if (!signature || *signature == 0) {
1401 auto_generated_function.AppendString(signature);
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Decore_dbg_fw_funcs.c391 /* extra lines include a signature line + optional latency events line */
1939 /* Returns OSAL_NULL for signature line, latency line and non-existing lines */
4535 u32 spad_trace_offsize, signature; local
4543 /* Read signature from MCP trace section */
4544 signature = ecore_rd(p_hwfn, p_ptt, *trace_data_grc_addr + OFFSETOF(struct mcp_trace, signature));
4546 if (signature != MFW_TRACE_SIGNATURE)
4593 u32 signature; local
4600 /* Extract and check first signature */
4601 signature
[all...]
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Drevoke.c232 "OCSP signer signature invalid");
246 &ocsp->ocsp.signature);
249 "OCSP signature invalid");
515 "CRL signature invalid");
588 /* check signature is aligned */
707 /* verify signature in ocsp if not already done */
795 /* verify signature in crl if not already done */
957 * default signature algorithm,
1169 * expired. Doesn't verify signature the OCSP reply or it's done by a
1454 ret = copy_AlgorithmIdentifier(sigalg, &c.tbsCertList.signature);
[all...]
/freebsd-11-stable/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dtdport.c7614 * \param Signature Pointer to SATA signature
7699 /* saving signature */
7706 oneDeviceData->satDevData.satDeviceType = tdssSATADeviceTypeDecode(agSATADeviceInfo->signature);
7710 /* print device signature - Word8 */
7711 TI_DBG3(("tdssNewAddSATAToSharedcontext: Word8 %x signature: %x %x %x %x %x %x %x %x\n",
7713 agSATADeviceInfo->signature[0], agSATADeviceInfo->signature[1],
7714 agSATADeviceInfo->signature[2], agSATADeviceInfo->signature[3],
7715 agSATADeviceInfo->signature[
[all...]

Completed in 334 milliseconds

123456789