/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | DXILResource.cpp | 69 ResourceInfo RI(ResourceClass::SRV, Kind, Symbol, Name, Binding, UniqueID); in SRV() local 70 assert(RI.isTyped() && !(RI.isStruct() || RI.isMultiSample()) && in SRV() 72 RI.Typed.ElementTy = ElementTy; in SRV() 73 RI.Typed.ElementCount = ElementCount; in SRV() 74 return RI; in SRV() 80 ResourceInfo RI(ResourceClass::SRV, ResourceKind::RawBuffer, Symbol, Name, in RawBuffer() local 82 return RI; in RawBuffer() 89 ResourceInfo RI(ResourceClass::SRV, ResourceKind::StructuredBuffer, Symbol, in StructuredBuffer() local 91 RI.Struct.Stride = Stride; in StructuredBuffer() 92 RI.Struct.Alignment = Alignment; in StructuredBuffer() [all …]
|
/freebsd/sys/dev/hwpmc/ |
H A D | hwpmc_uncore.c | 185 ucf_allocate_pmc(int cpu, int ri, struct pmc *pm, in ucf_allocate_pmc() argument 193 PMCDBG2(MDP,ALL,1, "ucf-allocate ri=%d reqcaps=0x%x", ri, pm->pm_caps); in ucf_allocate_pmc() 195 if (ri < 0 || ri > uncore_ucf_npmc) in ucf_allocate_pmc() 206 pm->pm_md.pm_ucf.pm_ucf_ctrl = (flags << (ri * 4)); in ucf_allocate_pmc() 215 ucf_config_pmc(int cpu, int ri, struct pmc *pm) in ucf_config_pmc() argument 220 KASSERT(ri >= 0 && ri < uncore_ucf_npmc, in ucf_config_pmc() 221 ("[uncore,%d] illegal row-index %d", __LINE__, ri)); in ucf_config_pmc() 223 PMCDBG3(MDP,CFG,1, "ucf-config cpu=%d ri=%d pm=%p", cpu, ri, pm); in ucf_config_pmc() 228 uncore_pcpu[cpu]->pc_uncorepmcs[ri + uncore_ucf_ri].phw_pmc = pm; in ucf_config_pmc() 234 ucf_describe(int cpu, int ri, struct pmc_info *pi, struct pmc **ppmc) in ucf_describe() argument [all …]
|
H A D | hwpmc_core.c | 57 #define IAF_RI_TO_MSR(RI) ((RI) + (1 << 30)) argument 222 iaf_allocate_pmc(int cpu, int ri, struct pmc *pm, in iaf_allocate_pmc() argument 233 PMCDBG2(MDP,ALL,1, "iaf-allocate ri=%d reqcaps=0x%x", ri, pm->pm_caps); in iaf_allocate_pmc() 235 if (ri < 0 || ri > core_iaf_npmc) in iaf_allocate_pmc() 250 if (umask != ri + 1) in iaf_allocate_pmc() 253 switch (ri) { in iaf_allocate_pmc() 303 pm->pm_md.pm_iaf.pm_iaf_ctrl = (flags << (ri * 4)); in iaf_allocate_pmc() 312 iaf_config_pmc(int cpu, int ri, struct pmc *pm) in iaf_config_pmc() argument 317 KASSERT(ri >= 0 && ri < core_iaf_npmc, in iaf_config_pmc() 318 ("[core,%d] illegal row-index %d", __LINE__, ri)); in iaf_config_pmc() [all …]
|
H A D | hwpmc_soft.c | 95 soft_allocate_pmc(int cpu, int ri, struct pmc *pm, in soft_allocate_pmc() argument 105 KASSERT(ri >= 0 && ri < SOFT_NPMCS, in soft_allocate_pmc() 106 ("[soft,%d] illegal row-index %d", __LINE__, ri)); in soft_allocate_pmc() 134 soft_config_pmc(int cpu, int ri, struct pmc *pm) in soft_config_pmc() argument 138 PMCDBG3(MDP,CFG,1, "cpu=%d ri=%d pm=%p", cpu, ri, pm); in soft_config_pmc() 142 KASSERT(ri >= 0 && ri < SOFT_NPMCS, in soft_config_pmc() 143 ("[soft,%d] illegal row-index %d", __LINE__, ri)); in soft_config_pmc() 145 phw = &soft_pcpu[cpu]->soft_hw[ri]; in soft_config_pmc() 157 soft_describe(int cpu, int ri, struct pmc_info *pi, struct pmc **ppmc) in soft_describe() argument 164 KASSERT(ri >= 0 && ri < SOFT_NPMCS, in soft_describe() [all …]
|
H A D | hwpmc_armv7.c | 135 armv7_allocate_pmc(int cpu, int ri, struct pmc *pm, in armv7_allocate_pmc() argument 143 KASSERT(ri >= 0 && ri < armv7_npmcs, in armv7_allocate_pmc() 144 ("[armv7,%d] illegal row index %d", __LINE__, ri)); in armv7_allocate_pmc() 153 PMCDBG2(MDP, ALL, 2, "armv7-allocate ri=%d -> config=0x%x", ri, config); in armv7_allocate_pmc() 160 armv7_read_pmc(int cpu, int ri, struct pmc *pm, pmc_value_t *v) in armv7_read_pmc() argument 168 KASSERT(ri >= 0 && ri < armv7_npmcs, in armv7_read_pmc() 169 ("[armv7,%d] illegal row index %d", __LINE__, ri)); in armv7_read_pmc() 172 tmp = armv7_pmcn_read(ri, pm->pm_md.pm_armv7.pm_armv7_evsel); in armv7_read_pmc() 178 reg = (1u << ri); in armv7_read_pmc() 186 tmp = armv7_pmcn_read(ri, pm->pm_md.pm_armv7.pm_armv7_evsel); in armv7_read_pmc() [all …]
|
H A D | hwpmc_tsc.c | 70 tsc_allocate_pmc(int cpu __diagused, int ri __diagused, struct pmc *pm __unused, in tsc_allocate_pmc() 76 KASSERT(ri >= 0 && ri < TSC_NPMCS, in tsc_allocate_pmc() 77 ("[tsc,%d] illegal row index %d", __LINE__, ri)); in tsc_allocate_pmc() 90 tsc_config_pmc(int cpu, int ri, struct pmc *pm) in tsc_config_pmc() argument 94 PMCDBG3(MDP,CFG,1, "cpu=%d ri=%d pm=%p", cpu, ri, pm); in tsc_config_pmc() 98 KASSERT(ri == 0, ("[tsc,%d] illegal row-index %d", __LINE__, ri)); in tsc_config_pmc() 112 tsc_describe(int cpu, int ri, struct pmc_info *pi, struct pmc **ppmc) in tsc_describe() argument 119 KASSERT(ri == 0, ("[tsc,%d] illegal row-index %d", __LINE__, ri)); in tsc_describe() 122 pd = &tsc_pmcdesc[ri]; in tsc_describe() 139 tsc_get_config(int cpu, int ri __diagused, struct pmc **ppm) in tsc_get_config() [all …]
|
H A D | hwpmc_arm64.c | 164 arm64_allocate_pmc(int cpu, int ri, struct pmc *pm, in arm64_allocate_pmc() 172 KASSERT(ri >= 0 && ri < arm64_npmcs, in arm64_allocate_pmc() 173 ("[arm64,%d] illegal row index %d", __LINE__, ri)); in arm64_allocate_pmc() 217 PMCDBG2(MDP, ALL, 2, "arm64-allocate ri=%d -> config=0x%lx", ri, in arm64_read_pmc() 225 arm64_read_pmc(int cpu, int ri, struct pmc *pm, pmc_value_t *v) in arm64_read_pmc() 233 KASSERT(ri >= 0 && ri < arm64_npmcs, in arm64_read_pmc() 234 ("[arm64,%d] illegal row index %d", __LINE__, ri)); in arm64_read_pmc() 163 arm64_allocate_pmc(int cpu,int ri,struct pmc * pm,const struct pmc_op_pmcallocate * a) arm64_allocate_pmc() argument 211 arm64_read_pmc(int cpu,int ri,struct pmc * pm,pmc_value_t * v) arm64_read_pmc() argument 257 arm64_write_pmc(int cpu,int ri,struct pmc * pm,pmc_value_t v) arm64_write_pmc() argument 277 arm64_config_pmc(int cpu,int ri,struct pmc * pm) arm64_config_pmc() argument 300 arm64_start_pmc(int cpu,int ri,struct pmc * pm) arm64_start_pmc() argument 324 arm64_stop_pmc(int cpu,int ri,struct pmc * pm __unused) arm64_stop_pmc() argument 336 arm64_release_pmc(int cpu,int ri,struct pmc * pmc) arm64_release_pmc() argument 355 int retval, ri; arm64_intr() local 404 arm64_describe(int cpu,int ri,struct pmc_info * pi,struct pmc ** ppmc) arm64_describe() argument 430 arm64_get_config(int cpu,int ri,struct pmc ** ppm) arm64_get_config() argument [all...] |
H A D | hwpmc_dmc620.c | 140 dmc620desc(int class, int cpu, int ri) in dmc620desc() argument 148 return (dmc620_pmcdesc[c][ri]); in dmc620desc() 152 cntr(int class, int ri) in cntr() argument 161 return (ri % DMC620_CLKDIV2_COUNTERS_N); in cntr() 162 return ((ri % DMC620_CLK_COUNTERS_N) + DMC620_CLKDIV2_COUNTERS_N); in cntr() 179 class_ri2unit(int class, int ri) in class_ri2unit() argument 183 return (ri / DMC620_CLKDIV2_COUNTERS_N); in class_ri2unit() 185 return (ri / DMC620_CLK_COUNTERS_N); in class_ri2unit() 192 CLASSDEP_FN4(dmc620_read_pmc, int, cpu, int, ri, struct pmc *, pm, in CLASSDEP_FN4() argument 199 KASSERT(ri >= 0, ("[dmc620,%d] row-index %d out of range", __LINE__, in CLASSDEP_FN4() [all …]
|
H A D | hwpmc_powerpc.c | 61 void (*powerpc_set_pmc)(int cpu, int ri, int config); 106 powerpc_describe(int cpu, int ri, struct pmc_info *pi, struct pmc **ppmc) in powerpc_describe() argument 113 phw = &powerpc_pcpu[cpu]->pc_ppcpmcs[ri]; in powerpc_describe() 115 snprintf(pi->pm_name, sizeof(pi->pm_name), "POWERPC-%d", ri); in powerpc_describe() 130 powerpc_get_config(int cpu, int ri, struct pmc **ppm) in powerpc_get_config() argument 133 *ppm = powerpc_pcpu[cpu]->pc_ppcpmcs[ri].phw_pmc; in powerpc_get_config() 181 powerpc_allocate_pmc(int cpu, int ri, struct pmc *pm, in powerpc_allocate_pmc() argument 190 KASSERT(ri >= 0 && ri < ppc_max_pmcs, in powerpc_allocate_pmc() 191 ("[powerpc,%d] illegal row index %d", __LINE__, ri)); in powerpc_allocate_pmc() 213 if ((counter & (1 << ri)) == 0) in powerpc_allocate_pmc() [all …]
|
H A D | hwpmc_amd.c | 214 amd_read_pmc(int cpu, int ri, struct pmc *pm, pmc_value_t *v) in amd_read_pmc() argument 222 KASSERT(ri >= 0 && ri < AMD_NPMCS, in amd_read_pmc() 223 ("[amd,%d] illegal row-index %d", __LINE__, ri)); in amd_read_pmc() 227 pd = &amd_pmcdesc[ri]; in amd_read_pmc() 230 PMCDBG2(MDP, REA, 1, "amd-read id=%d class=%d", ri, in amd_read_pmc() 234 PMCDBG2(MDP, REA, 2, "amd-read (pre-munge) id=%d -> %jd", ri, tmp); in amd_read_pmc() 251 PMCDBG2(MDP, REA, 2, "amd-read (post-munge) id=%d -> %jd", ri, *v); in amd_read_pmc() 260 amd_write_pmc(int cpu, int ri, struct pmc *pm, pmc_value_t v) in amd_write_pmc() argument 267 KASSERT(ri >= 0 && ri < AMD_NPMCS, in amd_write_pmc() 268 ("[amd,%d] illegal row-index %d", __LINE__, ri)); in amd_write_pmc() [all …]
|
H A D | hwpmc_cmn600.c | 63 cmn600desc(int ri) in cmn600desc() argument 66 return (cmn600_pmcdesc[ri]); in cmn600desc() 70 class_ri2unit(int ri) in class_ri2unit() argument 73 return (ri / CMN600_COUNTERS_N); in class_ri2unit() 141 cmn600_read_pmc(int cpu, int ri, struct pmc *pm, pmc_value_t *v) in cmn600_read_pmc() argument 149 KASSERT(ri >= 0, ("[cmn600,%d] row-index %d out of range", __LINE__, in cmn600_read_pmc() 150 ri)); in cmn600_read_pmc() 152 counter = ri % CMN600_COUNTERS_N; in cmn600_read_pmc() 153 desc = cmn600desc(ri); in cmn600_read_pmc() 159 PMCDBG3(MDP, REA, 2, "%s id=%d -> %jd", __func__, ri, *v); in cmn600_read_pmc() [all …]
|
H A D | hwpmc_power8.c | 50 power8_set_pmc(int cpu, int ri, int config) in power8_set_pmc() argument 55 switch (ri) { in power8_set_pmc() 61 mmcr &= ~SPR_MMCR1_P8_PMCNSEL_MASK(ri); in power8_set_pmc() 62 mmcr |= SPR_MMCR1_P8_PMCNSEL(ri, config & ~POWERPC_PMC_ENABLE); in power8_set_pmc() 71 mmcr = mfspr(SPR_MMCR2) | SPR_MMCR2_FCNHSP(ri); in power8_set_pmc() 74 mmcr &= ~(SPR_MMCR2_FCNP0(ri) | in power8_set_pmc() 75 SPR_MMCR2_FCNP1(ri)); in power8_set_pmc() 77 mmcr &= ~(SPR_MMCR2_FCNH(ri) | in power8_set_pmc() 78 SPR_MMCR2_FCNS(ri)); in power8_set_pmc() 153 power8_allocate_pmc(int cpu, int ri, struct pmc *pm, in power8_allocate_pmc() argument [all …]
|
/freebsd/sys/dev/bnxt/bnxt_en/ |
H A D | bnxt_txrx.c | 61 static int bnxt_isc_rxd_pkt_get(void *sc, if_rxd_info_t ri); 410 bnxt_set_rsstype(if_rxd_info_t ri, uint8_t rss_hash_type) in bnxt_set_rsstype() argument 417 ri->iri_rsstype = M_HASHTYPE_RSS_TCP_IPV4; in bnxt_set_rsstype() 420 ri->iri_rsstype = M_HASHTYPE_RSS_UDP_IPV4; in bnxt_set_rsstype() 423 ri->iri_rsstype = M_HASHTYPE_RSS_IPV4; in bnxt_set_rsstype() 426 ri->iri_rsstype = M_HASHTYPE_RSS_TCP_IPV6; in bnxt_set_rsstype() 429 ri->iri_rsstype = M_HASHTYPE_RSS_UDP_IPV6; in bnxt_set_rsstype() 432 ri->iri_rsstype = M_HASHTYPE_RSS_IPV6; in bnxt_set_rsstype() 435 ri->iri_rsstype = M_HASHTYPE_OPAQUE_HASH; in bnxt_set_rsstype() 441 bnxt_pkt_get_l2(struct bnxt_softc *softc, if_rxd_info_t ri, in bnxt_pkt_get_l2() argument [all …]
|
/freebsd/crypto/openssl/crypto/cms/ |
H A D | cms_env.c | 119 int ossl_cms_env_asn1_ctrl(CMS_RecipientInfo *ri, int cmd) in ossl_cms_env_asn1_ctrl() argument 123 if (ri->type == CMS_RECIPINFO_TRANS) in ossl_cms_env_asn1_ctrl() 124 pkey = ri->d.ktri->pkey; in ossl_cms_env_asn1_ctrl() 125 else if (ri->type == CMS_RECIPINFO_AGREE) { in ossl_cms_env_asn1_ctrl() 126 EVP_PKEY_CTX *pctx = ri->d.kari->pctx; in ossl_cms_env_asn1_ctrl() 137 return ossl_cms_dh_envelope(ri, cmd); in ossl_cms_env_asn1_ctrl() 139 return ossl_cms_ecdh_envelope(ri, cmd); in ossl_cms_env_asn1_ctrl() 141 return ossl_cms_rsa_envelope(ri, cmd); in ossl_cms_env_asn1_ctrl() 146 i = pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_CMS_ENVELOPE, cmd, ri); in ossl_cms_env_asn1_ctrl() 191 CMS_RecipientInfo *ri; in ossl_cms_RecipientInfos_set_cmsctx() local [all …]
|
H A D | cms_kari.c | 28 int CMS_RecipientInfo_kari_get0_alg(CMS_RecipientInfo *ri, in CMS_RecipientInfo_kari_get0_alg() argument 32 if (ri->type != CMS_RECIPINFO_AGREE) { in CMS_RecipientInfo_kari_get0_alg() 37 *palg = ri->d.kari->keyEncryptionAlgorithm; in CMS_RecipientInfo_kari_get0_alg() 39 *pukm = ri->d.kari->ukm; in CMS_RecipientInfo_kari_get0_alg() 46 *CMS_RecipientInfo_kari_get0_reks(CMS_RecipientInfo *ri) in STACK_OF() 48 if (ri->type != CMS_RECIPINFO_AGREE) { in STACK_OF() 52 return ri->d.kari->recipientEncryptedKeys; in STACK_OF() 55 int CMS_RecipientInfo_kari_get0_orig_id(CMS_RecipientInfo *ri, in CMS_RecipientInfo_kari_get0_orig_id() argument 64 if (ri->type != CMS_RECIPINFO_AGREE) { in CMS_RecipientInfo_kari_get0_orig_id() 68 oik = ri->d.kari->originator; in CMS_RecipientInfo_kari_get0_orig_id() [all …]
|
/freebsd/crypto/openssl/crypto/bn/ |
H A D | bn_mont.c | 197 BN_mask_bits(t1, mont->ri); in bn_from_mont_fixed_top() 201 BN_mask_bits(t2, mont->ri); in bn_from_mont_fixed_top() 207 if (!BN_rshift(ret, t2, mont->ri)) in bn_from_mont_fixed_top() 244 ctx->ri = 0; in BN_MONT_CTX_init() 266 BIGNUM *Ri, *R; in BN_MONT_CTX_set() local 272 if ((Ri = BN_CTX_get(ctx)) == NULL) in BN_MONT_CTX_set() 294 mont->ri = (BN_num_bits(mod) + (BN_BITS2 - 1)) / BN_BITS2 * BN_BITS2; in BN_MONT_CTX_set() 315 BN_zero(Ri); in BN_MONT_CTX_set() 316 else if ((BN_mod_inverse(Ri, R, &tmod, ctx)) == NULL) in BN_MONT_CTX_set() 318 if (!BN_lshift(Ri, Ri, 2 * BN_BITS2)) in BN_MONT_CTX_set() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | MachO_x86_64.cpp | 56 getRelocKind(const MachO::relocation_info &RI) { in getRelocKind() argument 57 switch (RI.r_type) { in getRelocKind() 59 if (!RI.r_pcrel) { in getRelocKind() 60 if (RI.r_length == 3) in getRelocKind() 61 return RI.r_extern ? MachOPointer64 : MachOPointer64Anon; in getRelocKind() 62 else if (RI.r_extern && RI.r_length == 2) in getRelocKind() 67 if (RI.r_pcrel && RI.r_length == 2) in getRelocKind() 68 return RI.r_extern ? MachOPCRel32 : MachOPCRel32Anon; in getRelocKind() 71 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocKind() 75 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocKind() [all …]
|
H A D | MachO_arm64.cpp | 57 getRelocationKind(const MachO::relocation_info &RI) { in getRelocationKind() argument 58 switch (RI.r_type) { in getRelocationKind() 60 if (!RI.r_pcrel) { in getRelocationKind() 61 if (RI.r_length == 3) in getRelocationKind() 62 return RI.r_extern ? MachOPointer64 : MachOPointer64Anon; in getRelocationKind() 63 else if (RI.r_length == 2) in getRelocationKind() 71 if (!RI.r_pcrel && RI.r_extern) { in getRelocationKind() 72 if (RI.r_length == 2) in getRelocationKind() 74 else if (RI.r_length == 3) in getRelocationKind() 79 if (RI.r_pcrel && RI.r_extern && RI.r_length == 2) in getRelocationKind() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | SparcRegisterInfo.td | 37 // Ri - 32-bit integer registers 38 class Ri<bits<16> Enc, string n> : SparcReg<Enc, n>; 140 def G0 : Ri< 0, "g0">, DwarfRegNum<[0]> { 143 def G1 : Ri< 1, "g1">, DwarfRegNum<[1]>; 144 def G2 : Ri< 2, "g2">, DwarfRegNum<[2]>; 145 def G3 : Ri< 3, "g3">, DwarfRegNum<[3]>; 146 def G4 : Ri< 4, "g4">, DwarfRegNum<[4]>; 147 def G5 : Ri< 5, "g5">, DwarfRegNum<[5]>; 148 def G6 : Ri< 6, "g6">, DwarfRegNum<[6]>; 149 def G7 : Ri< [all...] |
/freebsd/crypto/openssl/doc/man3/ |
H A D | CMS_get0_RecipientInfos.pod | 19 int CMS_RecipientInfo_type(CMS_RecipientInfo *ri); 21 int CMS_RecipientInfo_ktri_get0_signer_id(CMS_RecipientInfo *ri, 25 int CMS_RecipientInfo_ktri_cert_cmp(CMS_RecipientInfo *ri, X509 *cert); 26 int CMS_RecipientInfo_set0_pkey(CMS_RecipientInfo *ri, EVP_PKEY *pkey); 27 int CMS_RecipientInfo_kari_set0_pkey_and_peer(CMS_RecipientInfo *ri, 29 int CMS_RecipientInfo_kari_set0_pkey(CMS_RecipientInfo *ri, EVP_PKEY *pk); 30 int CMS_RecipientInfo_kekri_get0_id(CMS_RecipientInfo *ri, X509_ALGOR **palg, 35 int CMS_RecipientInfo_kekri_id_cmp(CMS_RecipientInfo *ri, 37 int CMS_RecipientInfo_set0_key(CMS_RecipientInfo *ri, 40 int CMS_RecipientInfo_decrypt(CMS_ContentInfo *cms, CMS_RecipientInfo *ri); [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
H A D | XCoreRegisterInfo.td | 19 // Ri - 32-bit integer registers 20 class Ri<bits<4> num, string n> : XCoreReg<n> { 25 def R0 : Ri< 0, "r0">, DwarfRegNum<[0]>; 26 def R1 : Ri< 1, "r1">, DwarfRegNum<[1]>; 27 def R2 : Ri< 2, "r2">, DwarfRegNum<[2]>; 28 def R3 : Ri< 3, "r3">, DwarfRegNum<[3]>; 29 def R4 : Ri< 4, "r4">, DwarfRegNum<[4]>; 30 def R5 : Ri< 5, "r5">, DwarfRegNum<[5]>; 31 def R6 : Ri< 6, "r6">, DwarfRegNum<[6]>; 32 def R7 : Ri< 7, "r7">, DwarfRegNum<[7]>; [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineRegionInfo.h | 64 MachineRegionInfo *RI, MachineDominatorTree *DT, 86 MachineRegionInfo RI; 94 MachineRegionInfo &getRegionInfo() { return RI; } 96 const MachineRegionInfo &getRegionInfo() const { return RI; } 142 static NodeRef getEntryNode(MachineRegionInfo *RI) { 144 RI->getTopLevelRegion()); 147 static nodes_iterator nodes_begin(MachineRegionInfo *RI) { 148 return nodes_iterator::begin(getEntryNode(RI)); 151 static nodes_iterator nodes_end(MachineRegionInfo *RI) { 152 return nodes_iterator::end(getEntryNode(RI)); [all …]
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | CMS_get0_RecipientInfos.3 | 154 \& int CMS_RecipientInfo_type(CMS_RecipientInfo *ri); 156 \& int CMS_RecipientInfo_ktri_get0_signer_id(CMS_RecipientInfo *ri, 160 \& int CMS_RecipientInfo_ktri_cert_cmp(CMS_RecipientInfo *ri, X509 *cert); 161 \& int CMS_RecipientInfo_set0_pkey(CMS_RecipientInfo *ri, EVP_PKEY *pkey); 162 \& int CMS_RecipientInfo_kari_set0_pkey_and_peer(CMS_RecipientInfo *ri, 164 \& int CMS_RecipientInfo_kari_set0_pkey(CMS_RecipientInfo *ri, EVP_PKEY *pk); 165 \& int CMS_RecipientInfo_kekri_get0_id(CMS_RecipientInfo *ri, X509_ALGOR **palg, 170 \& int CMS_RecipientInfo_kekri_id_cmp(CMS_RecipientInfo *ri, 172 \& int CMS_RecipientInfo_set0_key(CMS_RecipientInfo *ri, 175 \& int CMS_RecipientInfo_decrypt(CMS_ContentInfo *cms, CMS_RecipientInfo *ri); [all …]
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | zcp.c | 172 zcp_run_info_t *ri = zcp_run_info(state); in zcp_register_cleanup() local 177 list_insert_head(&ri->zri_cleanup_handlers, zch); in zcp_register_cleanup() 185 zcp_run_info_t *ri = zcp_run_info(state); in zcp_deregister_cleanup() local 186 list_remove(&ri->zri_cleanup_handlers, zch); in zcp_deregister_cleanup() 197 zcp_run_info_t *ri = zcp_run_info(state); in zcp_cleanup() local 200 list_remove_head(&ri->zri_cleanup_handlers); zch != NULL; in zcp_cleanup() 201 zch = list_remove_head(&ri->zri_cleanup_handlers)) { in zcp_cleanup() 650 zcp_run_info_t *ri = zcp_run_info(state); in zcp_debug() local 657 zfs_dbgmsg("txg %lld ZCP: %s", (longlong_t)ri->zri_tx->tx_txg, in zcp_debug() 679 zcp_run_info_t *ri = zcp_run_info(state); in zcp_exists() local [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/ |
H A D | DifferenceEngine.cpp | 305 BasicBlock::const_iterator RI = R->begin(); in diff() local 308 assert(LI != LE && RI != R->end()); in diff() 309 const Instruction *LeftI = &*LI, *RightI = &*RI; in diff() 328 ++RI; in diff() 334 for (LI = L->begin(), RI = R->begin(); LI != LE; ++LI, ++RI) in diff() 335 unify(&*LI, &*RI); in diff() 340 BasicBlock::const_iterator RI); 390 const PHINode &RI = cast<PHINode>(*R); in diff() local 393 if (LI.getType() != RI.getType()) { in diff() 394 if (!LI.getType()->isPointerTy() || !RI.getType()->isPointerTy()) { in diff() [all …]
|