HomeSort by relevance Sort by last modified time
    Searched defs:tab (Results 1 - 25 of 50) sorted by null

1 2

  /onnv/onnv-gate/usr/src/cmd/nscd/
nscd_nischeck.c 59 nis_result *tab; local
69 tab = nis_lookup(namebuf, EXPAND_NAME);
70 if (tab->status != NIS_SUCCESS) {
71 nis_perror(tab->status, namebuf);
75 obj = tab->objects.objects_val;
  /onnv/onnv-gate/usr/src/cmd/zonecfg/
Makefile 27 OBJS= zonecfg.o zonecfg_lex.o zonecfg_grammar.tab.o
42 CLEANFILES += zonecfg_lex.c zonecfg_grammar.tab.c zonecfg_grammar.tab.h
54 zonecfg_lex.c: zonecfg_lex.l zonecfg_grammar.tab.h zonecfg.h
57 zonecfg_grammar.tab.h zonecfg_grammar.tab.c: zonecfg_grammar.y zonecfg.h
60 zonecfg_lex.o zonecfg_grammar.tab.o := CCVERBOSE =
  /onnv/onnv-gate/usr/src/common/openssl/crypto/bn/
bn_kron.c 69 /* In 'tab', only odd-indexed entries are relevant:
71 * tab[BN_lsw(n) & 7]
75 static const int tab[8] = {0, 1, 0, -1, 0, -1, 0, 1}; local
124 ret = tab[BN_lsw(A) & 7];
164 ret = ret * tab[BN_lsw(B) & 7];
  /onnv/onnv-gate/usr/src/cmd/sh/
mac.h 43 #define TAB '\t'
49 #define tab() prc(TAB) macro
  /onnv/onnv-gate/usr/src/lib/fm/topo/modules/common/pcibus/
did_hash.c 132 did_hash_t *tab = (did_hash_t *)topo_mod_getspecific(mp); local
134 int idx = did_dnhash(key) % tab->dph_hashlen;
136 tab->dph_nelems++;
138 topo_mod_dprintf(tab->dph_mod, "Insert [key=%p] into %p, bucket %d\n",
139 key, (void *)tab, idx);
140 if (tab->dph_hash[idx] == NULL) {
141 tab->dph_hash[idx] = new;
142 topo_mod_dprintf(tab->dph_mod, "first entry.\n");
147 for (assertchk = tab->dph_hash[idx];
151 new->dp_next = tab->dph_hash[idx]
160 did_hash_t *tab = (did_hash_t *)topo_mod_getspecific(mp); local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libast/common/hash/
hashalloc.c 43 register Hash_table_t* tab; local
65 if (!(tab = (Hash_table_t*)(*region)(handle, NiL, sizeof(Hash_table_t), 0)))
67 memset(tab, 0, sizeof(Hash_table_t));
69 else if (!(tab = newof(0, Hash_table_t, 1, 0)))
71 tab->bucketsize = (sizeof(Hash_header_t) + sizeof(char*) - 1) / sizeof(char*);
74 tab->flags = ref->flags & ~HASH_RESET;
75 tab->root = ref->root;
82 if (!(tab->root = (Hash_root_t*)(*region)(handle, NiL, sizeof(Hash_root_t), 0)))
84 memset(tab->root, 0, sizeof(Hash_root_t));
86 else if (!(tab->root = newof(0, Hash_root_t, 1, 0))
    [all...]
hashdump.c 53 dumpbucket(register Hash_table_t* tab, int flags)
62 sx = tab->table + tab->size;
63 for (sp = tab->table; sp < sx; sp++)
67 if (!(b->hash & HASH_DELETED) && (!(tab->flags & HASH_VALUE) || b->value))
71 sfprintf(sfstderr, "%5d %2d :", sp - tab->table, n);
73 if (!(b->hash & HASH_DELETED) && (!(tab->flags & HASH_VALUE) || b->value))
75 if (n = tab->root->namesize)
91 if (tab->flags & HASH_VALUE) sfprintf(sfstderr, "=0x%08lx", (long)b->value);
104 dumptable(register Hash_table_t* tab, register int flags
136 register Hash_table_t* tab; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/look/
look.c 26 int tab; variable
53 tab = argv[1][1];
54 if(tab)
80 if (tab != NULL) {
81 if ((ptr = strchr(wstring, tab)) != NULL) {
  /onnv/onnv-gate/usr/src/lib/libast/common/string/
ccmap.c 43 static const unsigned char tab[] = variable
609 #define MAPS (sizeof(tab)/MAP)
637 return (unsigned char*)tab;
658 return (unsigned char*)tab + MAP * (2 * (o - 1));
660 return (unsigned char*)tab + MAP * (2 * (i - 1) + 1);
668 a = (unsigned char*)tab + MAP * (2 * (o - 1));
669 z = (unsigned char*)tab + MAP * (2 * (i - 1) + 1);
  /onnv/onnv-gate/usr/src/lib/fm/topo/modules/i86pc/x86pi/
x86pi_hostbridge.c 71 did_hash_t *tab = (did_hash_t *)topo_mod_getspecific(mod); local
74 if (tab == NULL && did_hash_init(mod) < 0) {
  /onnv/onnv-gate/usr/src/cmd/bnu/
uucheck.c 64 struct tab struct
68 } tab[] = variable in typeref:struct:tab
106 struct tab *tabptr;
139 for (tabptr = tab; tabptr->name != NULL; tabptr++) {
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/
UnivCharsetDesc.h 36 tab = 9, enumerator in enum:SP_NAMESPACE::UnivCharsetDesc::__anon833
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/x2p/
walk.c 34 static void tab ( STR *str, int lvl );
137 tab(str,++level);
142 tab(str,level);
158 tab(str,level);
194 tab(str,level);
199 tab(str,level);
283 tab(str,++level);
288 tab(str,level);
772 tab(str,level);
776 tab(str,++level)
1557 tab(register STR *str, register int lvl) function
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/crypto/
impl.c 203 kcf_provider_desc_t **tab; local
223 tab = mdb_zalloc(prov_tab_max * sizeof (kcf_provider_desc_t *),
227 mdb_printf("DEBUG: tab = %p, prov_tab_max = %d\n", tab, prov_tab_max);
230 if (mdb_vread(tab, prov_tab_max * sizeof (kcf_provider_desc_t *),
236 mdb_printf("DEBUG: got past mdb_vread of tab\n");
237 mdb_printf("DEBUG: *tab = %p\n", *tab);
241 if (tab[i] == NULL) {
256 mdb_printf("prov_tab[%d] = %p ", i, tab[i])
286 kcf_policy_desc_t **tab; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsum/common/
sum-crc.c 51 const Crcnum_t *tab; /* use |const| to give the compiler a hint that the data won't change */ member in struct:Crc_s
57 #define CRC(p,s,c) (s = (s >> 8) ^ (p)->tab[(s ^ (c)) & 0xff])
58 #define CRCROTATE(p,s,c) (s = (s << 8) ^ (p)->tab[((s >> 24) ^ (c)) & 0xff])
143 sum->tab=posix_cksum_tab;
204 sum->tab=sum->tabdata;
  /onnv/onnv-gate/usr/src/cmd/csh/
printf.c 164 char *tab; local
388 tab = "0123456789ABCDEF";
390 tab = "0123456789abcdef";
398 *--bp = tab[val % hradix * 2 + lowbit];
  /onnv/onnv-gate/usr/src/cmd/fmli/oh/
if_dir.c 307 struct ott_tab *tab = MYODPTR(rec)->ott; local
310 if (array_len(tab->parents) == 0)
313 entry = &(tab->ott[tab->parents[line]]);
  /onnv/onnv-gate/usr/src/cmd/isns/isnsd/
htable.c 52 * tab - the hash table.
60 const htab_t *tab,
64 htab_itemx_t *x = tab->avlt;
85 * tab - the hash table.
93 const htab_t *tab,
98 htab_itemx_t *x = tab->avlt;
269 * tab - the hash table.
276 htab_t *tab,
288 if (tab->avlt == NULL) {
289 tab->avlt = x
620 htab_t *tab = NULL; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/oamuser/user/
userdefs.c 83 static const parsent_t tab[] = { variable
108 #define NDEF (sizeof (tab) / sizeof (parsent_t))
131 if (strncmp(cur_p, tab[ind].name, tab[ind].nmsz) == 0) {
132 *start_p = cur_p + tab[ind].nmsz;
133 return (&tab[ind]);
324 * #<tab>Default values for adduser. Changed mm/dd/yy hh:mm:ss.
374 if (tab[i].off == skip)
377 switch (tab[i].type) {
379 res = fprintf(defptr, "%s%d\n", tab[i].name
    [all...]
  /onnv/onnv-gate/usr/src/cmd/tbl/
t0.c 24 int tab = '\t'; variable
  /onnv/onnv-gate/usr/src/lib/libbc/libc/stdio/common/
doscan.c 56 * 4.2BSD "scanf" definition - namely, SP, TAB, and NL are the only
85 char tab[NCHARS]; local
141 ch == '[' && (fmt = setup(fmt, tab)) == NULL)
167 if ((size = string(stow,ch,len,tab,iop,&va_alist)) < 0)
414 string(int stow, int type, int len, char *tab, FILE *iop, va_list *listp)
453 while ( (ch = locgetc()) != EOF && !tab[ch])
477 setup(unsigned char *fmt, char *tab)
486 (void) memset(tab, !t, NCHARS);
489 tab[c] = t;
498 (void) memset(&tab[b], t, d - b + 1)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsqlite/src/
trigger.c 56 Table *tab; local
77 tab = sqliteSrcListLookup(pParse, pTableName);
78 if( !tab ){
81 iDb = isTemp ? 1 : tab->iDb;
84 "database %s", db->aDb[tab->iDb].zName);
94 if( sqliteStrNICmp(tab->zName, "sqlite_", 7)==0 ){
99 if( tab->pSelect && tr_tm != TK_INSTEAD ){
104 if( !tab->pSelect && tr_tm == TK_INSTEAD ){
112 const char *zDb = db->aDb[tab->iDb].zName;
114 if( tab->iDb==1 || isTemp ) code = SQLITE_CREATE_TEMP_TRIGGER
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
stermio.h 62 char tab; member in struct:stio
  /onnv/onnv-gate/usr/src/lib/libpp/common/
ppop.c 66 inithash(register Hash_table_t* tab, register struct ppkeyword* key)
74 hashput(tab, s, key->value);
1499 Hash_table_t* tab; local
1502 tab = pp.symtab;
1503 pp.symtab = hashalloc(NiL, HASH_set, tab ? HASH_ALLOCATE : 0, HASH_compare, trunccomp, HASH_hash, trunchash, HASH_name, "tru (…)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/rpcsvc/nis/rpc.nisd/
nis_multival.c 82 tab_item *tab; member in struct:col_item
126 release_table(tab_item *tab, int release_dir) {
130 if (tab != 0 && (dir = tab->dir) != 0) {
131 (void) __nis_release_item(tab, &dir->tables,
132 __nis_item_access(tab));
141 tab_item *tab; local
143 if (col != 0 && (tab = col->tab) != 0) {
144 (void) __nis_release_item(col, &tab->columns
433 tab_item *tab; local
456 tab_item *tab; local
472 tab_item *tab; local
648 tab_item *tab; local
    [all...]

Completed in 1200 milliseconds

1 2