Searched refs:chains (Results 1 - 23 of 23) sorted by relevance

/freebsd-11-stable/contrib/openpam/lib/libpam/
H A Dopenpam_impl.h70 * Module chains
88 pam_chain_t *chains[PAM_NUM_FACILITIES]; member in struct:pam_policy
110 /* chains */
111 pam_chain_t *chains[PAM_NUM_FACILITIES]; member in struct:pam_handle
H A Dopenpam_dispatch.c87 chain = pamh->chains[PAM_AUTH];
90 chain = pamh->chains[PAM_ACCOUNT];
94 chain = pamh->chains[PAM_SESSION];
97 chain = pamh->chains[PAM_PASSWORD];
H A Dpam_end.c82 /* clear chains */
83 openpam_clear_chains(pamh->chains);
H A Dopenpam_configure.c147 * Extracts given chains from a policy file.
289 for (next = &pamh->chains[fclt]; *next != NULL;
331 * Read the specified chains from the specified file.
378 * Locates the policy file for a given service and reads the given chains
468 if (pamh->chains[fclt] != NULL)
478 openpam_clear_chains(pamh->chains);
/freebsd-11-stable/contrib/openpam/bin/openpam_dump_policy/
H A Dopenpam_dump_policy.c132 if (pamh->chains[fclt] != NULL) {
135 ret = openpam_dump_chain(name, pamh->chains[fclt]);
143 printf("\t.chains = {\n");
149 if (pamh->chains[fclt] != NULL) {
/freebsd-11-stable/lib/libc/locale/
H A Dcollate.c112 int i, chains, z; local
162 ((chains = info->chain_count) < 0)) {
169 (sizeof (collate_chain_t) * chains) +
193 if (chains > 0) {
195 TMP += chains * sizeof (collate_chain_t);
325 * single element (aka chains or collating-elements).
/freebsd-11-stable/sbin/fsck_msdosfs/
H A Dfat.c74 * We use head bitmap to identify lost chains: a head cluster that was
78 * Handle of lost chains
957 * node as the next node, but we do not know if these chains
1244 * Check a complete in-memory FAT for lost cluster chains
1252 size_t chains, chainlength; local
1261 * chains.
1263 chains = fat_get_head_count(fat);
1265 chains > 0 && head < boot->NumClusters;
1291 chains--;
/freebsd-11-stable/libexec/rtld-elf/
H A Drtld.h203 const Elf_Hashelt *chains; /* Hash table chain array */ member in struct:Struct_Obj_Entry
H A Drtld.c1160 obj->chains = obj->buckets + obj->nbuckets;
4538 symnum != STN_UNDEF; symnum = obj->chains[symnum]) {
/freebsd-11-stable/contrib/gcc/
H A Dregrename.c763 chains. We perform the following steps with the register
772 (4) For any REG_DEAD note we find, close open chains that
774 (5) For any write we find, close open chains that overlap it.
776 (7) For any REG_UNUSED, close any chains we just opened. */
801 /* Step 1: Close chains for which we have overlapping reads. */
807 /* Step 2: Close chains for which we have reads outside operands.
863 /* Step 3: Append to chains for reads inside operands. */
893 /* Step 4: Close chains for registers that die here. */
908 /* Step 5: Close open chains that overlap writes. Similar to
910 close these chains
997 dump_def_use_chain(struct du_chain *chains) argument
[all...]
/freebsd-11-stable/stand/common/
H A Dload_elf.c62 Elf_Hashelt *chains; member in struct:elf_file
826 ef->chains = ef->buckets + ef->nbuckets;
1164 COPYOUT(&ef->chains[symnum], &symnum, sizeof(symnum));
/freebsd-11-stable/sys/kern/
H A Dsubr_turnstile.c89 * Constants for the hash table of turnstile chains. TC_SHIFT is a magic
144 static SYSCTL_NODE(_debug_turnstile, OID_AUTO, chains, CTLFLAG_RD, 0,
1159 DB_SHOW_ALL_COMMAND(chains, db_show_allchains)
H A Dlink_elf.c87 const Elf_Hashelt *chains; member in struct:elf_file
538 ef->chains = ef->buckets + ef->nbuckets;
1325 symnum = ef->chains[symnum];
H A Dsubr_sleepqueue.c92 * Constants for the hash table of sleep queue chains.
144 static SYSCTL_NODE(_debug_sleepq, OID_AUTO, chains, CTLFLAG_RD, 0,
H A Dkern_umtx.c258 static SYSCTL_NODE(_debug_umtx, OID_AUTO, chains, CTLFLAG_RD, 0, "umtx chain stats");
416 sysctl_debug_umtx_chains_clear, "I", "Clear umtx chains statistics");
419 sysctl_debug_umtx_chains_peaks, "A", "Highest peaks in chains max length");
/freebsd-11-stable/sys/dev/mpr/
H A Dmpr.c677 if (sc->chains != NULL)
678 free(sc->chains, M_MPR);
1295 sc->chains = malloc(sizeof(struct mpr_chain) * sc->max_chains, M_MPR,
1297 if (!sc->chains) {
1303 chain = &sc->chains[i];
2863 * shouldn't be requesting chains).
2877 * only IEEE commands should be requesting chains. Return some error
2973 * MPI SGL's don't have chains, otherwise something is wrong.
H A Dmprvar.h307 struct mpr_chain *chains; member in struct:mpr_softc
/freebsd-11-stable/sys/dev/mps/
H A Dmps.c662 if (sc->chains != NULL)
663 free(sc->chains, M_MPT2);
1247 sc->chains = malloc(sizeof(struct mps_chain) * sc->max_chains, M_MPT2,
1249 if(!sc->chains) {
1251 "Cannot allocate chains memory %s %d\n",
1256 chain = &sc->chains[i];
H A Dmpsvar.h295 struct mps_chain *chains; member in struct:mps_softc
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h518 ArrayRef<Elf_Word> chains() const {
/freebsd-11-stable/contrib/binutils/binutils/
H A Dreadelf.c7045 bfd_vma *chains = NULL;
7084 error (_("Failed to read in number of chains\n"));
7092 chains = get_dynamic_data (file, nchains, hash_ent_size);
7094 if (buckets == NULL || chains == NULL)
7115 for (si = buckets[hn]; si < nchains && si > 0; si = chains[si])
7386 for (si = buckets[hn]; si > 0 && si < nchains; si = chains[si])
7425 free (chains);
7042 bfd_vma *chains = NULL; local
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp2337 // Write a hash value. It represents a sequence of chains that share the
2435 uint32_t *chains = p + numSymbols; local
2442 chains[i] = buckets[hash];
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp2488 W.printList("Chains", HashTable->chains());
3727 auto Chains = SysVHash->chains();
4237 // lengths of chains as absolute number and percentage of the total buckets.
4246 ArrayRef<Elf_Word> Chains = HashTable->chains();
4248 // If hash table is correct, we have at least chains with 0 length

Completed in 481 milliseconds