Searched defs:table (Results 51 - 75 of 87) sorted by relevance

1234

/osnet-11/usr/src/lib/libshell/common/sh/
H A Dparse.c165 static unsigned char *table; local
168 if(!table)
170 table = calloc(1,256);
172 table[c] = 1;
174 table[c] = 2;
176 table[c] = 3;
178 for(cp=(unsigned char*)str; c= *cp++; n=table[c])
180 if(table[c] < n)
H A Dname.c546 nr.table = shp->last_table;
1103 if(n && ap && !ap->table)
1104 ap->table = dtopen(&_Nvdisc,Dtoset);
1105 if(ap && ap->table && (nq=nv_search(sub,ap->table,n)))
3174 if(!ap->table)
3175 ap->table = dtopen(&_Nvdisc,Dtoset);
3176 if(ap->table)
3177 mp = nv_search(nv_getsub(np),ap->table,NV_ADD);
3305 np->nvalue.nrp->table
3456 register Namval_t *table; local
[all...]
/osnet-11/usr/src/lib/libshell/i386/include/ast/
H A Dnval.h105 Dt_t *table; /* for subscripts */ member in struct:Namarray
145 #define NV_TABLE 0x800 /* node is a dictionary table */
/osnet-11/usr/src/lib/libshell/sparc/include/ast/
H A Dnval.h105 Dt_t *table; /* for subscripts */ member in struct:Namarray
145 #define NV_TABLE 0x800 /* node is a dictionary table */
/osnet-11/usr/src/lib/libshell/sparcv9/include/ast/
H A Dnval.h105 Dt_t *table; /* for subscripts */ member in struct:Namarray
145 #define NV_TABLE 0x800 /* node is a dictionary table */
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceStoreInMemory.java917 private Hashtable attrLevel; // Sorted attribute table.
949 // table of registrations that do NOT have this
957 // Find the table of classes v.s. sorted value vectors.
989 // We know that the type table is fully initialized with
1178 * from the table.
1268 * A record for scopeTypeLangTable table,
1293 // (pointer-wise) regardless of where it is inserted into the table.
1298 // Keys for this table are scope/service type/lang tag. Values are
1301 // table are contained. This table i
2570 addRecordToAttrValueSort(Hashtable table, ServiceRecordInMemory rec, Vector listVec) argument
2650 addRecordToAttrSort(BtreeVector table, ServiceRecordInMemory rec, Vector listVec) argument
[all...]
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dmemcache.c108 /* Hash table callback function pointer definition */
116 /* Structure of a node in a hash table */
121 /* Structure of a hash table */
123 HashTableNode *table; member in struct:HashTable_struct
319 /* Create hash table for temporary cache */
330 /* Create hash table for primary cache */
552 /* Free hash table used for temporary cache */
559 /* Free hash table used for primary cache */
1704 /* Calculates size (# of entries) of hash table given the size limit for
1726 /* Returns the size in bytes of the given hash table
[all...]
/osnet-11/usr/src/lib/libnisdb/
H A Dnis_db.cc58 * 'tbl_prototype' is used to create a table that holds a directory.
119 * Given a FQ object name for a table or directory, return the (db *)
305 * Create new table using given table name and table descriptor.
315 * Destroys table named by 'table_name.' Returns DB_SUCCESS if successful,
316 * error code otherwise. Note that currently, the removed table is no
328 * Return a copy of the first entry in the specified table, that satisfies
361 * Return a copy of the next entry in the specified table as specified by
400 * Returns copies of entries that satisfy the given attributes from table
450 char *name, *table, *dir; local
496 char *name, *table = 0; local
614 char *table, tbuf[MAXPATHLEN + NIS_MAXNAMELEN + 1]; local
765 char *ent, *table; local
877 char *ent, *table, *objTable; local
[all...]
H A Ddb_dictionary.cc143 /* Create new table descriptor using given table name and table_object. */
151 "db_dictionary::add_table: could not allocate space for new table",
176 "db_dictionary::add_table: could not allocate space for table name",
210 /* delete table */
272 * Remove entry with the specified hashvalue and target table name.
380 /* Returns the next size to use for the hash table */
403 * Old table is deleted after the relocation.
417 FATAL("db_dictionary::grow: table size exceeds calloc limit",
508 * If successful, decrement count of number of entries in hash table
2232 defer(char *table) argument
2331 rollback(char *table) argument
2402 commit(char *table) argument
[all...]
/osnet-11/usr/src/lib/libpkg/common/
H A Ddstream.c445 /* read datastream table of contents */
811 * table and check it by comparing slot numbers to major numbers.
827 struct s3bc *table; local
872 table = (struct s3bc *)((char *)buffer + sizeof (int));
874 if (maj == (int)table->board) {
875 if (strncmp(table->name, "CTC", 3) == 0) {
878 } else if (strncmp(table->name, "TAPE", 4)
885 table++;
/osnet-11/usr/src/lib/libdtrace_jni/common/
H A Ddtj_jnitab.c37 * dtj_jnitab.c defines the JNI table of classes, methods, and fields belonging
38 * to the Java DTrace API. Another JNI table defining classes from the JDK is
224 * If you change this table, increment DTRACE_JNI_VERSION in
227 static const dtj_table_entry_t table[] = { local
482 return (dtj_cache_jni_classes(jenv, table));
H A Ddtj_util.c163 static const dtj_table_entry_t table[] = { local
257 status = dtj_cache_jni_classes(jenv, table);
436 dtj_cache_jni_classes(JNIEnv *jenv, const dtj_table_entry_t *table) argument
481 fieldpool, table);
522 * Converts JNI table entry desriptions into java_class_t descriptors.
527 uu_list_pool_t *fieldpool, const dtj_table_entry_t *table)
534 for (i = 0; table[i].djte_type != DTJ_TYPE_END; ++i) {
540 switch (table[i].djte_type) {
557 (jclass *)table[i].djte_addr, table[
525 dtj_get_jni_classes(JNIEnv *jenv, uu_list_t *classes, uu_list_pool_t *classpool, uu_list_pool_t *methodpool, uu_list_pool_t *fieldpool, const dtj_table_entry_t *table) argument
[all...]
/osnet-11/usr/src/lib/efcode/include/fcode/
H A Dengine.h94 * table contains the routines that will be called to augment the
175 fcode_token *table; /* token table */ member in struct:FCODE_ENV
232 #define MAX_FCODE 0xfff /* max no. of Fcode entries in table */
/osnet-11/usr/src/grub/grub2/grub-core/font/
H A Dfont.c671 struct char_index_entry *table; local
676 table = font->char_index;
683 return &table[font->bmp_idx[code]];
690 if (!table)
696 if (code < table[mid].code)
698 else if (code > table[mid].code)
701 return &table[mid];
/osnet-11/usr/src/lib/libbe/common/
H A Dbe_mount.c1724 struct mnttab *table = NULL; local
1735 /* Read in the mnttab into a table */
1745 table = (struct mnttab *)realloc(table,
1748 entp = &table[size++];
1751 * Copy over the current mnttab entry into our table,
1770 entp = &table[i - 1];
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_prop.c226 avl_node_t zpd_link; /* property table linkage */
338 zprop_lookup_impl(avl_tree_t *table, nvlist_t *default_sublists, argument
353 found = avl_find(table, &zpd, &index);
362 found = avl_find(table, &zpd, &index);
448 found = avl_find(table, &zpd, &index);
458 found = avl_find(table, &zpd, &index);
486 err = zprop_lookup_impl(table, default_sublists, buf, spec,
504 zprop_lookup_node_impl(zprop_table_t *table, const char *name, argument
515 while ((pair = nvlist_next_nvpair(table->zpt_default_sublists,
540 (void) no_memory(table
570 zprop_lookup_node(zprop_table_t *table, const char *name, zprop_spec_t spec, zpropdef_node_t **xpp) argument
613 zprop_lookup_spec(zprop_table_t *table, const char *name, zprop_spec_t spec, const zpropdef_t **xpp) argument
660 zprop_iter_impl(zprop_table_t *table, const char *sublist, boolean_t descend_sublists, zprop_func *func, void *arg) argument
703 zprop_id_lookup(zprop_table_t *table, int id) argument
712 zprop_id_to_name(zprop_table_t *table, int id) argument
721 zprop_name_to_id(zprop_table_t *table, const char *name) argument
732 zprop_append(zprop_table_t *table, const zpropdef_t *zpd) argument
792 zprop_load_one(zprop_table_t *table, const char *propname, const char *owner, nvpair_t *xprop, zprop_desc_t *pd) argument
985 load_zfs_properties(zprop_table_t *table) argument
1001 load_zpool_properties(zprop_table_t *table) argument
1019 zprop_desc_alloc(zprop_table_t *table, const char *owner, nvpair_t *xprop, int types, zprop_desc_t **pdp) argument
1063 load_xprops(zprop_table_t *table, const char *owner, nvlist_t *xprops, int types) argument
1094 unload_zprops(zprop_table_t *table, const char *owner) argument
1105 zprop_add_default_sublist(zprop_table_t *table, const char *owner, const char *name) argument
1127 zprop_remove_default_sublist(zprop_table_t *table, const char *name) argument
1133 load_default_sublists(zprop_table_t *table, const char *owner, nvlist_t *sublists) argument
1162 zprop_table_init(zprop_table_t *table, zfs_type_t type) argument
1183 zprop_table_fini(zprop_table_t *table) argument
1217 zprop_table_t *table = zprop_get_table(hdl, type); local
1256 zprop_table_t *table; local
1267 zprop_table_t *table = &hdl->libzfs_props; local
1275 zprop_table_t *table = &hdl->libzfs_props; local
1299 zprop_table_t *table = zprop_get_table(hdl, type); local
1307 zprop_table_t *table = zprop_get_table(hdl, type); local
1314 zprop_table_t *table = zprop_get_table(hdl, type); local
[all...]
H A Dlibzfs_util.c2290 zfs_command_t *table; member in struct:cmd_print
2307 (void) fprintf(fp, "%-*s ", width, cpp->table[cpp->entry].name);
2460 zfs_command_list(FILE *fp, const char *progname, zfs_command_t *table) argument
2467 for (i = 0; table[i].func != NULL; i++) {
2468 int cmd_len = strlen(table[i].name);
2476 qsort(table, count, sizeof (zfs_command_t), command_compare);
2483 cp.table = table;
2489 zfs_command_find(const char *command, zfs_command_t *table, int *idx) argument
2491 for (int i = 0; table[
[all...]
/osnet-11/usr/src/lib/libparted/common/libparted/labels/
H A Drdb.c498 /* Remove all partitions in the former in memory table */
516 /* Let's look for loops in the partition table */
560 _amiga_find_free_blocks(const PedDisk *disk, uint32_t *table, argument
569 if (table[next] != IDNAME_FREE) {
601 table[next] = type;
603 if (_amiga_find_free_blocks(disk, table, block,
611 _amiga_next_free_block(uint32_t *table, uint32_t start, uint32_t type) { argument
614 for (i = start; table[i] != type && table[i] != IDNAME_FREE; i++);
635 uint32_t * table; local
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Dpreauth2.c101 * easily, and copying over the relevant parts of the module's table. */
107 struct krb5plugin_preauth_client_ftable_v1 *table; local
141 table = tables[n_tables];
142 if ((table->pa_type_list != NULL) && (table->process != NULL)) {
143 for (j = 0; table->pa_type_list[j] > 0; j++) {
166 table = tables[i];
167 if ((table->pa_type_list != NULL) && (table->process != NULL)) {
169 if ((table
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dregcomp.c126 /* This table gives an error message for each of the error codes listed
376 const int32_t *table = (const int32_t *)
379 if (table[i] < 0)
949 /* Initialize WORD_CHAR table, which indicate which character is
2724 /* Build the table for single byte characters. */
2744 /* Build the table for single byte characters. */
2966 /* Build the table for single byte characters. */
3449 const int32_t *table, *indirect;
3459 table = (const int32_t *) _NL_CURRENT (LC_COLLATE, _NL_COLLATE_TABLEMB);
3471 /* Build single byte matcing table fo
374 const int32_t *table = (const int32_t *) local
3440 const int32_t *table, *indirect; local
[all...]
/osnet-11/usr/src/lib/cfgadm_plugins/pci/common/
H A Dcfga.c386 * the rcm_info_t data in the form of a table to the given character pointer.
389 pci_rcm_info_table(rcm_info_t *rinfo, char **table) argument
406 if (rinfo == NULL || table == NULL)
409 /* Set localized table header strings */
444 /* Allocate space for the table */
446 if (*table == NULL) {
448 *table = calloc(table_size, sizeof (char));
449 if (*table == NULL)
452 newtable = realloc(*table, strlen(*table)
[all...]
/osnet-11/usr/src/lib/cfgadm_plugins/shp/common/
H A Dshp.c371 char **table; member in struct:error_sum_cb_arg
377 * message to he table.
383 char **table = sumarg->table; local
390 (void) strcat(*table, "\n");
391 (void) sprintf(&((*table)[strlen(*table)]),
399 * the rcm_info_t data in the form of a table to the given character pointer.
402 pci_rcm_info_table(hp_node_t node, char **table) argument
419 if (table
[all...]
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dfsys_zfs.c527 static uint64_t table[256]; local
532 if (table[128] == 0) {
536 for (ct = table + i, *ct = i, j = 8; j > 0; j--)
542 if (crc == 0 || table[128] != ZFS_CRC64_POLY) {
548 crc = (crc >> 8) ^ table[(crc ^ c) & 0xFF];
/osnet-11/usr/src/cmd/parted/
H A Dparted.c29 #include "table.h"
583 /* update the partition table, close disks */
769 partition table, since it makes the "mkpart" command
1390 Table* table; local
1567 table = table_new (str_list_length(row1));
1569 table_add_row_from_strlist (table, row1);
1628 table_add_row_from_strlist (table, row);
1636 table_rendered = table_render (table);
1643 table_destroy (table);
1783 "Do you want to add it to the partition table
[all...]
/osnet-11/usr/src/lib/libc/port/threads/
H A Dsynch.c462 * Allocate the sleep queue hash table.
481 thr_panic("cannot allocate thread queue_head table");
1964 robust_t **table; local
1966 if ((table = udp->robustlocks) == NULL) {
1968 if ((table = udp->robustlocks) == NULL) {
1969 table = lmalloc(LOCKHASHSZ * sizeof (robust_t *));
1971 udp->robustlocks = table;
1978 * First search the registered table with no locks held.
1979 * This is safe because the table never shrinks
1982 for (rlp = table[has
2045 robust_t **table; local
[all...]

Completed in 120 milliseconds

1234