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

/freebsd-10.1-release/lib/libkvm/
H A Dkvm_minidump_arm.c80 uint32_t fnv = FNV1_32_INIT; local
82 fnv = fnv_32_buf(&pa, sizeof(pa), fnv);
83 fnv &= (HPT_SIZE - 1);
87 hpte->next = kd->vmst->hpt_head[fnv];
88 kd->vmst->hpt_head[fnv] = hpte;
95 uint32_t fnv = FNV1_32_INIT; local
97 fnv = fnv_32_buf(&pa, sizeof(pa), fnv);
98 fnv
[all...]
H A Dkvm_minidump_mips.c81 uint32_t fnv = FNV1_32_INIT; local
83 fnv = fnv_32_buf(&pa, sizeof(pa), fnv);
84 fnv &= (HPT_SIZE - 1);
88 hpte->next = kd->vmst->hpt_head[fnv];
89 kd->vmst->hpt_head[fnv] = hpte;
96 uint32_t fnv = FNV1_32_INIT; local
98 fnv = fnv_32_buf(&pa, sizeof(pa), fnv);
99 fnv
[all...]
H A Dkvm_minidump_amd64.c77 uint32_t fnv = FNV1_32_INIT; local
79 fnv = fnv_32_buf(&pa, sizeof(pa), fnv);
80 fnv &= (HPT_SIZE - 1);
84 hpte->next = kd->vmst->hpt_head[fnv];
85 kd->vmst->hpt_head[fnv] = hpte;
92 uint32_t fnv = FNV1_32_INIT; local
94 fnv = fnv_32_buf(&pa, sizeof(pa), fnv);
95 fnv
[all...]
H A Dkvm_minidump_i386.c79 uint32_t fnv = FNV1_32_INIT; local
81 fnv = fnv_32_buf(&pa, sizeof(pa), fnv);
82 fnv &= (HPT_SIZE - 1);
86 hpte->next = kd->vmst->hpt_head[fnv];
87 kd->vmst->hpt_head[fnv] = hpte;
94 uint32_t fnv = FNV1_32_INIT; local
96 fnv = fnv_32_buf(&pa, sizeof(pa), fnv);
97 fnv
[all...]
/freebsd-10.1-release/sys/kern/
H A Duipc_sem.c103 #define KSEM_HASH(fnv) (&ksem_dictionary[(fnv) & ksem_hash])
122 static void ksem_insert(char *path, Fnv32_t fnv, struct ksem *ks);
123 static struct ksem *ksem_lookup(char *path, Fnv32_t fnv);
126 static int ksem_remove(char *path, Fnv32_t fnv, struct ucred *ucred);
387 ksem_lookup(char *path, Fnv32_t fnv) argument
391 LIST_FOREACH(map, KSEM_HASH(fnv), km_link) {
392 if (map->km_fnv != fnv)
402 ksem_insert(char *path, Fnv32_t fnv, struct ksem *ks) argument
408 map->km_fnv = fnv;
415 ksem_remove(char *path, Fnv32_t fnv, struct ucred *ucred) argument
496 Fnv32_t fnv; local
671 Fnv32_t fnv; local
[all...]
H A Duipc_shm.c108 #define SHM_HASH(fnv) (&shm_dictionary[(fnv) & shm_hash])
115 static void shm_insert(char *path, Fnv32_t fnv, struct shmfd *shmfd);
116 static struct shmfd *shm_lookup(char *path, Fnv32_t fnv);
117 static int shm_remove(char *path, Fnv32_t fnv, struct ucred *ucred);
647 shm_lookup(char *path, Fnv32_t fnv) argument
651 LIST_FOREACH(map, SHM_HASH(fnv), sm_link) {
652 if (map->sm_fnv != fnv)
662 shm_insert(char *path, Fnv32_t fnv, struct shmfd *shmfd) argument
668 map->sm_fnv = fnv;
675 shm_remove(char *path, Fnv32_t fnv, struct ucred *ucred) argument
713 Fnv32_t fnv; local
843 Fnv32_t fnv; local
[all...]
/freebsd-10.1-release/contrib/tcsh/
H A Dsh.glob.c298 Char ***fnv, **vl, **el; local
302 fnv = xmalloc(sizeof(Char ***));
303 *fnv = vl = xmalloc(sizeof(Char *) * size);
305 cleanup_push(fnv, blk_indirect_cleanup);
318 if (vl == &(*fnv)[size]) {
320 *fnv = xrealloc(*fnv, size * sizeof(Char *));
321 vl = &(*fnv)[size - GLOBSPACE];
328 if (vl == &(*fnv)[size]) {
330 *fnv
[all...]

Completed in 59 milliseconds