Home
last modified time | relevance | path

Searched refs:tab (Results 1 – 25 of 445) sorted by relevance

12345678910>>...18

/titanic_52/usr/src/contrib/ast/src/lib/libast/hash/
H A Dhashlook.c37 hashlook(register Hash_table_t* tab, const char* name, long flags, const char* value) in hashlook() argument
62 HASHMOD(tab, n); in hashlook()
63 for (b = tab->table[n]; b; b = b->next) in hashlook()
70 if (!(tab = tab->scope) || (flags & HASH_NOSCOPE)) in hashlook()
75 tab->root->accesses++; in hashlook()
76 top = tab; in hashlook()
77 last = &tab->root->last; in hashlook()
80 last->table = tab; in hashlook()
89 else if (tab in hashlook()
[all...]
H A Dhashalloc.c43 register Hash_table_t* tab; in hashalloc() local
65 if (!(tab = (Hash_table_t*)(*region)(handle, NiL, sizeof(Hash_table_t), 0))) in hashalloc()
67 memset(tab, 0, sizeof(Hash_table_t)); in hashalloc()
69 else if (!(tab = newof(0, Hash_table_t, 1, 0))) in hashalloc()
71 tab->bucketsize = (sizeof(Hash_header_t) + sizeof(char*) - 1) / sizeof(char*); in hashalloc()
74 tab->flags = ref->flags & ~HASH_RESET; in hashalloc()
75 tab->root = ref->root; in hashalloc()
82 if (!(tab->root = (Hash_root_t*)(*region)(handle, NiL, sizeof(Hash_root_t), 0))) in hashalloc()
84 memset(tab->root, 0, sizeof(Hash_root_t)); in hashalloc()
86 else if (!(tab in hashalloc()
[all...]
H A Dhashfree.c40 hashfree(register Hash_table_t* tab) in hashfree() argument
53 if (!tab) return(0); in hashfree()
54 if (tab->table) in hashfree()
58 if (tab->root->local->free) in hashfree()
60 if (tab->root->flags & HASH_BUCKET) freebucket = tab->root->local->free; in hashfree()
61 else freevalue = tab->root->local->free; in hashfree()
63 if (region = tab->root->local->region) in hashfree()
64 handle = tab->root->local->handle; in hashfree()
65 sx = &tab in hashfree()
[all...]
H A Dhashscan.c37 * pos = hashscan(tab, flags);
47 hashscan(register Hash_table_t* tab, register int flags) in hashscan() argument
54 pos->tab = tab->root->last.table = tab; in hashscan()
56 pos->slot = tab->table - 1; in hashscan()
57 pos->limit = tab->table + tab->size; in hashscan()
58 if (tab->scope && !(flags & HASH_NOSCOPE)) in hashscan()
65 if (tab in hashscan()
[all...]
H A Dhashdump.c53 dumpbucket(register Hash_table_t* tab, int flags) in dumpbucket() argument
62 sx = tab->table + tab->size; in dumpbucket()
63 for (sp = tab->table; sp < sx; sp++) in dumpbucket()
67 if (!(b->hash & HASH_DELETED) && (!(tab->flags & HASH_VALUE) || b->value)) in dumpbucket()
71 sfprintf(sfstderr, "%5d %2d :", sp - tab->table, n); in dumpbucket()
73 if (!(b->hash & HASH_DELETED) && (!(tab->flags & HASH_VALUE) || b->value)) in dumpbucket()
75 if (n = tab->root->namesize) in dumpbucket()
91 if (tab->flags & HASH_VALUE) sfprintf(sfstderr, "=0x%08lx", (long)b->value); in dumpbucket()
104 dumptable(register Hash_table_t* tab, registe argument
136 register Hash_table_t* tab; dumproot() local
164 hashdump(register Hash_table_t * tab,int flags) hashdump() argument
[all...]
H A Dhashsize.c38 hashsize(register Hash_table_t* tab, int size) in hashsize() argument
49 if (size > 0 && size != tab->size && !(size & (size - 1))) in hashsize()
51 if (region = tab->root->local->region) in hashsize()
53 handle = tab->root->local->handle; in hashsize()
57 if (!new_s) tab->flags |= HASH_FIXED; in hashsize()
60 old_sx = (old_s = tab->table) + tab->size; in hashsize()
61 tab->size = size; in hashsize()
70 HASHMOD(tab, index); in hashsize()
75 if ((tab in hashsize()
[all...]
/titanic_52/usr/src/cmd/troff/nroff.d/terms.d/
H A DMakefile14 FILES1 = tab.2631 tab.2631-c tab.2631-e tab.lp
15 FILES2 = tab.300 tab.300-12 tab.300s tab.300s-12 tab.382 \
16 tab
[all...]
/titanic_52/usr/src/cmd/isns/isnsd/
H A Dhtable.c52 * tab - the hash table.
60 const htab_t *tab, in avl_search() argument
64 htab_itemx_t *x = tab->avlt; in avl_search()
85 * tab - the hash table.
93 const htab_t *tab, in avl_search_next() argument
98 htab_itemx_t *x = tab->avlt; in avl_search_next()
269 * tab - the hash table.
276 htab_t *tab, in avl_insert() argument
288 if (tab->avlt == NULL) { in avl_insert()
289 tab in avl_insert()
387 new_uid(htab_t * tab,uint32_t uid) new_uid() argument
460 uid_insert(htab_t * tab,uint32_t * const uid_p,const uint32_t hval) uid_insert() argument
534 enlarge_htab(htab_t * tab) enlarge_htab() argument
620 htab_t *tab = NULL; htab_create() local
695 htab_add(htab_t * tab,void * p,int flag,uint32_t * uid_p,int * update_p) htab_add() argument
836 htab_remove(htab_t * tab,void * p,uint32_t uid,int clone_flag) htab_remove() argument
961 htab_lookup(htab_t * tab,void * p,uint32_t uid,uint32_t * uid_p,int (* callback)(void *,void *),int rekey) htab_lookup() argument
1056 htab_get_next(htab_t * tab,uint32_t uid) htab_get_next() argument
1090 htab_dump(htab_t * tab) htab_dump() argument
[all...]
/titanic_52/usr/src/lib/libnisdb/
H A Ddb_index.cc58 tab = NULL; in db_index()
84 if (tab != NULL) { in reset()
86 curr = tab[i]; in reset()
95 delete tab; // get rid of table itself in reset()
97 tab = NULL; in reset()
145 db_index_entry_p * oldtab = tab; in grow()
163 if ((tab = (db_index_entry_p*) in grow()
166 tab = oldtab; // restore previous table info in grow()
175 oldtab[i]->relocate(tab, table_size); in grow()
197 if (index_value == NULL || table_size == 0 || tab in lookup()
[all...]
H A Ddb_table.cc316 tab = NULL; in db_table()
350 if (tab != NULL) { in reset()
354 if (tab[i]) { in reset()
355 free_entry(tab[i]); in reset()
361 delete tab; in reset()
363 tab = NULL; in reset()
416 (void) memcpy(&newEnumArray[oldSize], &tab[oldSize], in allocateEnumArray()
432 entry_object_p *oldtab = tab; in grow()
448 // if ((tab = new entry_object_p[table_size]) == NULL) in grow()
449 if ((tab in grow()
[all...]
/titanic_52/usr/src/common/mpi/
H A Dmp_gf2m.c68 mp_digit tab[8], top2b = a >> 30; in s_bmul_1x1() local
73 tab[0] = 0; tab[1] = a1; tab[2] = a2; tab[3] = a1^a2; in s_bmul_1x1()
74 tab[4] = a4; tab[5] = a1^a4; tab[6] = a2^a4; tab[7] = a1^a2^a4; in s_bmul_1x1()
76 s = tab[ in s_bmul_1x1()
100 mp_digit tab[16], top3b = a >> 61; s_bmul_1x1() local
[all...]
/titanic_52/usr/src/contrib/ast/src/lib/libast/tm/
H A Dtmlex.c35 * return the tab table index that matches s ignoring case and .'s
38 * ntab and nsuf are the number of elements in tab and suf,
48 tmlex(register const char* s, char** e, char** tab, int ntab, char** suf, int nsuf) in tmlex() argument
54 for (p = tab, n = ntab; n-- && (x = *p); p++) in tmlex()
56 return p - tab; in tmlex()
57 if (tm_info.format != tm_data.format && tab >= tm_info.format && tab < tm_info.format + TM_NFORM) in tmlex()
59 tab = tm_data.format + (tab - tm_info.format); in tmlex()
60 if (suf && tab > in tmlex()
[all...]
/titanic_52/usr/src/lib/libfru/
H A DMakefile.targ47 pics/y.tab.cc pics/y.tab.h: ../libfru/nameSyntaxYacc.y
49 $(SED) -f ../libfru/yy-sed y.tab.c > pics/y.tab.cc
50 $(SED) -f ../libfru/yy-sed y.tab.h > pics/y.tab.h
51 $(RM) y.tab.c y.tab.h
53 pics/nameSyntaxYacc.o: pics/y.tab.cc
54 $(COMPILE.cc) -I../libfru -Ipics -o $@ pics/y.tab
[all...]
/titanic_52/usr/src/lib/fm/topo/modules/common/pcibus/
H A Ddid_hash.c132 did_hash_t *tab = (did_hash_t *)topo_mod_getspecific(mp); in did_hash_insert() local
134 int idx = did_dnhash(key) % tab->dph_hashlen; in did_hash_insert()
136 tab->dph_nelems++; in did_hash_insert()
138 topo_mod_dprintf(tab->dph_mod, "Insert [key=%p] into %p, bucket %d\n", in did_hash_insert()
139 key, (void *)tab, idx); in did_hash_insert()
140 if (tab->dph_hash[idx] == NULL) { in did_hash_insert()
141 tab->dph_hash[idx] = new; in did_hash_insert()
142 topo_mod_dprintf(tab->dph_mod, "first entry.\n"); in did_hash_insert()
147 for (assertchk = tab->dph_hash[idx]; in did_hash_insert()
151 new->dp_next = tab in did_hash_insert()
160 did_hash_t *tab = (did_hash_t *)topo_mod_getspecific(mp); did_hash_lookup() local
[all...]
/titanic_52/usr/src/cmd/oamuser/user/
H A Duserdefs.c84 static const parsent_t tab[] = { variable
109 #define NDEF (sizeof (tab) / sizeof (parsent_t))
132 if (strncmp(cur_p, tab[ind].name, tab[ind].nmsz) == 0) { in scan()
133 *start_p = cur_p + tab[ind].nmsz; in scan()
134 return (&tab[ind]); in scan()
325 * #<tab>Default values for adduser. Changed mm/dd/yy hh:mm:ss. in putusrdef()
375 if (tab[i].off == skip) in putusrdef()
378 switch (tab[i].type) { in putusrdef()
380 res = fprintf(defptr, "%s%d\n", tab[ in putusrdef()
[all...]
/titanic_52/usr/src/lib/nsswitch/ldap/common/
H A Dgetnetgrent.c70 netgroup_table_t tab; member
78 netgroup_table_t tab; member
105 add_netgroup_name(const char *name, netgroup_table_t *tab) in add_netgroup_name() argument
111 if (tab == NULL) { in add_netgroup_name()
124 ng = tab->hash_list[h]; in add_netgroup_name()
142 ng_new->next_hash = tab->hash_list[h]; in add_netgroup_name()
143 tab->hash_list[h] = ng_new; in add_netgroup_name()
144 ng_new->next = tab->to_do; in add_netgroup_name()
145 tab->to_do = ng_new; in add_netgroup_name()
151 get_next_netgroup(netgroup_table_t *tab) in get_next_netgroup() argument
168 free_netgroup_table(netgroup_table_t * tab) free_netgroup_table() argument
512 add_netgroup_member_entry(ns_ldap_entry_t * entry,netgroup_table_t * tab) add_netgroup_member_entry() argument
532 add_netgroup_member(ns_ldap_result_t * result,netgroup_table_t * tab) add_netgroup_member() argument
559 netgroup_table_t tab; top_down_search() local
[all...]
/titanic_52/usr/src/tools/ndrgen/
H A DMakefile40 CLEANFILES += $(OBJS) y.tab.c y.tab.h
57 $(OBJS): y.tab.h
59 y.tab.c y.tab.h: ndr_parse.y
62 ndr_parse.o : y.tab.c
63 $(COMPILE.c) -o $@ y.tab.c
/titanic_52/usr/src/cmd/awk_xpg4/
H A DMakefile49 CLEANFILES= awk.c y.tab.h
81 awk.c + y.tab.h: awk.y
83 awk.o: awk.c y.tab.h
85 awk0.c: awk.c y.tab.h
87 awk1.c: awk.c y.tab.h
89 awk2.c: awk.c y.tab.h
91 awk3.c: awk.c y.tab.h
93 awk4.c: awk.c y.tab.h
/titanic_52/usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/
H A DMakefile29 OBJS= nwamcfg.o nwamcfg_lex.o nwamcfg_grammar.tab.o
37 CLEANFILES += nwamcfg_lex.c nwamcfg_grammar.tab.c nwamcfg_grammar.tab.h
56 nwamcfg_lex.c: nwamcfg_lex.l nwamcfg_grammar.tab.h nwamcfg.h
59 nwamcfg_grammar.tab.h nwamcfg_grammar.tab.c: nwamcfg_grammar.y nwamcfg.h
62 nwamcfg_lex.o nwamcfg_grammar.tab.o := CCVERBOSE =
/titanic_52/usr/src/cmd/zonecfg/
H A DMakefile27 OBJS= zonecfg.o zonecfg_lex.o zonecfg_grammar.tab.o
42 CLEANFILES += zonecfg_lex.c zonecfg_grammar.tab.c zonecfg_grammar.tab.h
61 zonecfg_lex.c: zonecfg_lex.l zonecfg_grammar.tab.h zonecfg.h
64 zonecfg_grammar.tab.h zonecfg_grammar.tab.c: zonecfg_grammar.y zonecfg.h
67 zonecfg_lex.o zonecfg_grammar.tab.o := CCVERBOSE =
/titanic_52/usr/src/data/zoneinfo/
H A DREADME.illumos33 Next you need to copy the country tab and the zone tab files. These have
36 $ cp iso3166.tab $CODEMGR_WS/usr/src/data/zoneinfo/country.tab
37 $ cp zone.tab $CODEMGR_WS/usr/src/data/zoneinfo/zone.tab.txt
39 Now, you need to manually fix up the zone_sun.tab. zone_sun.tab has
42 in zone_sun.tab. The simplest way known to deal with it today is
46 $ vimdiff zone.tab
[all...]
/titanic_52/usr/src/cmd/mdb/common/modules/crypto/
H A Dimpl.c204 kcf_provider_desc_t **tab; in prov_tab() local
224 tab = mdb_zalloc(prov_tab_max * sizeof (kcf_provider_desc_t *), in prov_tab()
228 mdb_printf("DEBUG: tab = %p, prov_tab_max = %d\n", tab, prov_tab_max); in prov_tab()
231 if (mdb_vread(tab, prov_tab_max * sizeof (kcf_provider_desc_t *), in prov_tab()
237 mdb_printf("DEBUG: got past mdb_vread of tab\n"); in prov_tab()
238 mdb_printf("DEBUG: *tab = %p\n", *tab); in prov_tab()
242 if (tab[i] == NULL) { in prov_tab()
257 mdb_printf("prov_tab[%d] = %p ", i, tab[ in prov_tab()
287 kcf_policy_desc_t **tab; policy_tab() local
[all...]
/titanic_52/usr/src/grub/grub-0.97/
H A Dmissing81 bison create \`y.tab.[ch]', if possible, from existing .[ch]
87 yacc create \`y.tab.[ch]', if possible, from existing .[ch]
216 rm -f y.tab.c y.tab.h
223 cp "$SRCFILE" y.tab.c
227 cp "$SRCFILE" y.tab.h
232 if [ ! -f y.tab.h ]; then
233 echo >y.tab.h
235 if [ ! -f y.tab.c ]; then
236 echo 'main() { return 0; }' >y.tab
[all...]
/titanic_52/usr/src/cmd/ipf/tools/
H A DMakefile.tools123 sed -e 's/yy/ipf_yy/g' -e 's/y.tab.h/ipf_y.c/' \
124 ipf.tab.c > ../ipf_y.c
125 sed -e 's/yy/ipf_yy/g' -e 's/y.tab.h/ipf_y.h/' \
126 ipf.tab.h > ../ipf_y.h
128 CLEANFILES += ipf.tab.c ipf.tab.h
136 sed -e 's/yy/ipf_yy/g' -e 's/y.tab.h/ipf_y.h/' \
165 ipmon.tab.c > ../ipmon_y.c
166 sed -e 's/yy/ipmon_yy/g' -e 's/y.tab.h/ipmon_y.h/' \
167 ipmon.tab
[all...]
/titanic_52/usr/src/contrib/ast/src/cmd/ksh93/features/
H A Dmath.sh21 : include math.tab
140 tab=
201 tab="$tab$nl$ht\"\\0${R}${a}${name}\",$ht(Math_f)(uintptr_t)${F},"
233 tab="$tab$nl$ht\"\\0${R}${a}${name}\",$ht(Math_f)(uintptr_t)${F},"
294 tab="$tab$nl$ht\"\\0${R}${a}${x}\",$ht(Math_f)(uintptr_t)$f,"
297 tab="$tab
[all...]

12345678910>>...18