Searched refs:fnv (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/sys/kern/
H A Duipc_sem.c112 #define KSEM_HASH(fnv) (&ksem_dictionary[(fnv) & ksem_hash])
131 static void ksem_insert(char *path, Fnv32_t fnv, struct ksem *ks);
132 static struct ksem *ksem_lookup(char *path, Fnv32_t fnv);
135 static int ksem_remove(char *path, Fnv32_t fnv, struct ucred *ucred);
377 ksem_lookup(char *path, Fnv32_t fnv) argument
381 LIST_FOREACH(map, KSEM_HASH(fnv), km_link) {
382 if (map->km_fnv != fnv)
392 ksem_insert(char *path, Fnv32_t fnv, struct ksem *ks) argument
398 map->km_fnv = fnv;
405 ksem_remove(char *path, Fnv32_t fnv, struct ucred *ucred) argument
474 Fnv32_t fnv; local
662 Fnv32_t fnv; local
[all...]
H A Duipc_shm.c122 #define SHM_HASH(fnv) (&shm_dictionary[(fnv) & shm_hash])
125 static void shm_insert(char *path, Fnv32_t fnv, struct shmfd *shmfd);
126 static struct shmfd *shm_lookup(char *path, Fnv32_t fnv);
127 static int shm_remove(char *path, Fnv32_t fnv, struct ucred *ucred);
972 shm_lookup(char *path, Fnv32_t fnv) argument
976 LIST_FOREACH(map, SHM_HASH(fnv), sm_link) {
977 if (map->sm_fnv != fnv)
987 shm_insert(char *path, Fnv32_t fnv, struct shmfd *shmfd) argument
993 map->sm_fnv = fnv;
1000 shm_remove(char *path, Fnv32_t fnv, struct ucred *ucred) argument
1039 Fnv32_t fnv; local
1250 Fnv32_t fnv; local
[all...]
/freebsd-13-stable/contrib/tcsh/
H A Dsh.glob.c299 Char ***fnv, **vl, **el; local
303 fnv = xmalloc(sizeof(Char ***));
304 *fnv = vl = xmalloc(sizeof(Char *) * size);
306 cleanup_push(fnv, blk_indirect_cleanup);
319 if (vl == &(*fnv)[size]) {
321 *fnv = xrealloc(*fnv, size * sizeof(Char *));
322 vl = &(*fnv)[size - GLOBSPACE];
329 if (vl == &(*fnv)[size]) {
331 *fnv
[all...]

Completed in 68 milliseconds