HomeSort by: relevance | last modified time | path
    Searched refs:hte (Results 1 - 6 of 6) sorted by relevancy

  /src/usr.bin/xlint/lint2/
hash.c 82 hte_t *hte; local
88 for (hte = table[h]; hte != NULL; hte = hte->h_link) {
89 if (strcmp(hte->h_name, s) == 0)
93 if (hte != NULL || !mknew)
94 return hte;
96 /* create a new hte */
97 hte = xmalloc(sizeof(*hte))
154 hte_t *hte; local
167 hte_t *hte; local
191 hte_t *hte, *nexthte; local
    [all...]
chk.c 84 hte_t *hte; local
86 if ((hte = htab_search("main", false)) != NULL)
87 hte->h_used = true;
94 check_name(const hte_t *hte)
99 check_used_not_defined(hte);
100 check_defined_not_used(hte);
102 check_declared_not_used_or_defined(hte);
104 check_multiple_definitions(hte);
108 for (sym = hte->h_syms; sym != NULL; sym = sym->s_next) {
124 chkvtui(hte, def, decl)
    [all...]
lint2.h 50 struct hte *_t_tag; /* hash table entry of tag if
52 struct hte *_t_tynam; /* hash table entry of typename if
166 typedef struct hte { struct
177 struct hte *h_link; /* next hte with same hash function */
178 struct hte *h_hte; /* pointer to other htes (for renames) */
read.c 318 hte_t *hte; local
376 hte = hash_search(renametab, name, false);
377 if (hte != NULL)
378 hte = hte->h_hte;
380 hte = htab_search(name, true);
381 hte->h_used = true;
385 *hte->h_lcall = fcall;
386 hte->h_lcall = &fcall->f_next;
471 hte_t *hte, *renamehte = NULL local
564 hte_t *hte; local
    [all...]
emit2.c 104 outdef(const hte_t *hte, const sym_t *sym)
135 outname(hte->h_name);
142 dumpname(const hte_t *hte)
147 if (hte->h_static || !hte->h_def)
156 for (sym = hte->h_syms; sym != NULL; sym = sym->s_next) {
165 errx(1, "internal error: dumpname %s", hte->h_name);
167 outdef(hte, def);
  /src/sys/external/bsd/ipf/netinet/
ip_htable.c 528 iphtent_t hte, *ent; local
531 if (op->iplo_size != sizeof(hte)) {
536 err = COPYIN(op->iplo_struct, &hte, sizeof(hte));
548 ent = ipf_htent_find(iph, &hte);
820 iphtent_t hte; local
823 if (op->iplo_size != sizeof(hte)) {
828 err = COPYIN(op->iplo_struct, &hte, sizeof(hte));
833 hte.ipe_uid = uid
    [all...]

Completed in 18 milliseconds