Home
last modified time | relevance | path

Searched refs:sets (Results 1 – 25 of 95) sorted by relevance

1234

/titanic_41/usr/src/cmd/cpc/common/
H A Dsetgrp.c57 } *sets; /* array of events and names */ member
130 if ((new = realloc(sgrp->sets, (1 + sgrp->nelem) * sizeof (*new))) in cpc_setgrp_newset()
137 sgrp->sets = new; in cpc_setgrp_newset()
138 sgrp->sets[sgrp->nelem].set = set; in cpc_setgrp_newset()
144 sgrp->sets[sgrp->nelem].nreqs = 0; in cpc_setgrp_newset()
145 sgrp->sets[sgrp->nelem].sysonly = 1; in cpc_setgrp_newset()
146 cpc_walk_requests(sgrp->cpc, set, &(sgrp->sets[sgrp->nelem]), in cpc_setgrp_newset()
149 if (sgrp->sets[sgrp->nelem].sysonly == 1) in cpc_setgrp_newset()
152 sgrp->sets[sgrp->nelem].picnums = emalloc(sgrp->sets[sgrp->nelem].nreqs in cpc_setgrp_newset()
155 sgrp->sets[sgrp->nelem].hdr = emalloc((sgrp->sets[sgrp->nelem].nreqs * in cpc_setgrp_newset()
[all …]
/titanic_41/usr/src/uts/i86pc/io/dr/
H A Dsbdgenerr.pl45 my @sets;
58 push(@sets, { base => $base, bnd => $bnd });
65 push(@sets, { base => $base, bnd => $bnd });
72 my $set = $sets[$s];
80 } while (++$s <= $#sets);
85 my $set = $sets[$s];
88 } while (++$s <= $#sets);
/titanic_41/usr/src/lib/cfgadm_plugins/sbd/
H A Dsbdgenerr.pl48 my @sets;
61 push(@sets, { base => $base, bnd => $bnd });
68 push(@sets, { base => $base, bnd => $bnd });
75 my $set = $sets[$s];
83 } while (++$s <= $#sets);
88 my $set = $sets[$s];
91 } while (++$s <= $#sets);
/titanic_41/usr/src/uts/sun4u/ngdr/io/
H A Dsbdgenerr.pl48 my @sets;
61 push(@sets, { base => $base, bnd => $bnd });
68 push(@sets, { base => $base, bnd => $bnd });
75 my $set = $sets[$s];
83 } while (++$s <= $#sets);
88 my $set = $sets[$s];
91 } while (++$s <= $#sets);
/titanic_41/usr/src/lib/libc/port/locale/
H A Dregfree.c73 if (g->sets != NULL) { in regfree()
75 free(g->sets[i].ranges); in regfree()
76 free(g->sets[i].wides); in regfree()
77 free(g->sets[i].types); in regfree()
79 free((char *)g->sets); in regfree()
H A Dregcomp.c216 g->sets = NULL; in regcomp()
717 EMIT(OANYOF, (int)(cs - p->g->sets)); in p_bracket()
953 EMIT(OANYOF, (int)(cs - p->g->sets)); in ordinary()
1096 ncs = realloc(p->g->sets, (p->g->ncsets + 1) * sizeof (*ncs)); in allocset()
1101 p->g->sets = ncs; in allocset()
1102 cs = &p->g->sets[p->g->ncsets++]; in allocset()
1114 cset *top = &p->g->sets[p->g->ncsets]; in freeset()
H A Dregex2.h169 cset *sets; /* -> cset [ncsets] */ member
/titanic_41/usr/src/cmd/ptools/ppriv/
H A Dppriv.c367 static char *sets; variable
382 sets = malloc(pri->priv_nsets + 1); in loadprivinfo()
383 if (sets == NULL) in loadprivinfo()
387 sets[i] = *priv_getsetbynum(i); in loadprivinfo()
388 if (islower(sets[i])) in loadprivinfo()
389 sets[i] = toupper(sets[i]); in loadprivinfo()
392 sets[pri->priv_nsets] = '\0'; in loadprivinfo()
440 q = sets; in parsespec()
445 int ind = strindex(q[i], sets); in parsespec()
478 if (sets != NULL) { in privupdate()
[all …]
/titanic_41/usr/src/uts/common/os/
H A Dprivs.awk135 sets[nset] = toupper(substr($2, 6, 1)) tolower(substr($2, 7));
264 if (len + length(sets[i]) > 80) {
268 printf sep sets[i] > cfile
269 len += length(sets[i]) + length(sep);
389 print sdef[i] cast "\"" sets[i] "\")\n" > pubhfile
/titanic_41/usr/src/cmd/login/
H A Dlogin.dfl29 # ULIMIT sets the file size limit for the login. Units are disk blocks.
49 # PATH sets the initial shell PATH variable
53 # SUPATH sets the initial shell PATH variable for root
57 # TIMEOUT sets the number of seconds (between 0 and 900) to wait before
62 # UMASK sets the initial shell file creation mode mask. See umask(1).
/titanic_41/usr/src/lib/libc/amd64/gen/
H A Dproc64_id.c61 int line_size, partitions, ways, sets; in get_intel_cache_info() local
91 sets = cpuid_info.ecx + 1; in get_intel_cache_info()
92 cache_size = ways * partitions * line_size * sets; in get_intel_cache_info()
/titanic_41/usr/src/lib/libslp/etc/
H A Dslp.conf.example45 # This example simply sets the property to the default:
48 # This example sets the property to a site-specific list:
87 # This example sets it to 7200 seconds (two hours):
96 # registration refreshes. This example sets the minimum interval
104 # sets the attribute "special-features" to "none":
146 # This example sets it to an aggressively short value; this may be useful
206 # This sets the type hint to service:foo and service:bar:
/titanic_41/usr/src/tools/ctf/cvt/
H A Dctfmerge.c684 sigset_t sets; in start_threads() local
687 sigemptyset(&sets); in start_threads()
688 sigaddset(&sets, SIGINT); in start_threads()
689 sigaddset(&sets, SIGQUIT); in start_threads()
690 sigaddset(&sets, SIGTERM); in start_threads()
691 pthread_sigmask(SIG_BLOCK, &sets, NULL); in start_threads()
701 pthread_sigmask(SIG_UNBLOCK, &sets, NULL); in start_threads()
/titanic_41/usr/src/cmd/avs/rdc/
H A Dsndrsyncd.c350 int sets = 0; in rdc_sync() local
436 (void) strncpy(rdc_set[sets].secondary.intf, buf, in rdc_sync()
445 (void) strncpy(rdc_set[sets].primary.intf, buf, in rdc_sync()
452 (void) strncpy(rdc_set[sets].primary.file, buf, NSC_MAXPATH); in rdc_sync()
458 (void) strncpy(rdc_set[sets].secondary.file, buf, NSC_MAXPATH); in rdc_sync()
461 bcopy((void *)(&rdc_set[sets]), (void *)(&parms.rdc_set[0]), in rdc_sync()
488 sets++; in rdc_sync()
497 if (sets == 0) { in rdc_sync()
519 for (i = 0; i < sets; i++) { in rdc_sync()
563 for (i = 0; i < sets; i++) { in rdc_sync()
[all …]
/titanic_41/usr/src/cmd/su/
H A Dsu.dfl36 # PATH sets the initial shell PATH variable
40 # SUPATH sets the initial shell PATH variable for root
/titanic_41/usr/src/cmd/cmd-inet/etc/default/
H A Dipsec.dfl34 # IKE_DEBUG sets the initial debug level within the IKE daemon; by default,
43 # IKE_ADM_PRIV sets the ikeadm "privilege level", which determines how
H A Dinetinit.dfl26 # TCP_STRONG_ISS sets the TCP initial sequence number generation parameters.
34 # ACCEPT6TO4RELAY sets the policy for 6to4 tunnels communicating with 6to4
/titanic_41/usr/src/lib/libc/i386/crt/
H A Dcerror.s29 / C return sequence which sets errno, returns -1.
H A Dcerror64.s29 / C return sequence which sets errno, returns -1.
/titanic_41/usr/src/lib/libc/amd64/crt/
H A Dcerror.s29 / C return sequence which sets errno, returns -1.
/titanic_41/usr/src/lib/pyzfs/common/
H A Dallow.py56 self.sets = dict()
70 self.sets.setdefault(nwho, set()).update(perms)
123 s = self.__ldstr(self.sets, _("Permission sets:\n"))
/titanic_41/usr/src/cmd/lp/lib/printers/
H A Dllib-llpprt41 char **char_sets; /* list of okay char-sets/print-wheels */
57 short daisy; /* 1/0 - printwheels/character-sets */
/titanic_41/usr/src/uts/sun4u/ml/
H A Dmach_copy.s349 ! sets a lofault handler. It ors LOFAULT_SET into %o5
351 ! is otherwise zero. bzero() sets a lofault handler *only*
/titanic_41/usr/src/cmd/tnf/prex/
H A Dprexlex.l96 sets { yylval.intval = SETS; return (SETS); }
/titanic_41/usr/src/uts/common/inet/sctp/
H A Dsctp_output.c1401 sctp_make_ftsn_chunk(sctp_t *sctp, sctp_faddr_t *fp, sctp_ftsn_set_t *sets, in sctp_make_ftsn_chunk() argument
1438 ftsn_entry->ftsn_sid = sets->ftsn_entries.ftsn_sid; in sctp_make_ftsn_chunk()
1439 ftsn_entry->ftsn_ssn = sets->ftsn_entries.ftsn_ssn; in sctp_make_ftsn_chunk()
1441 sets = sets->next; in sctp_make_ftsn_chunk()
1464 sctp_ftsn_set_t *sets = NULL; in sctp_make_ftsns() local
1485 !sctp_add_ftsn_set(&sets, fp, meta, &nsets, seglen)) { in sctp_make_ftsns()
1510 *nmp = sctp_make_ftsn_chunk(sctp, fp, sets, nsets, *seglen); in sctp_make_ftsns()
1511 sctp_free_ftsn_set(sets); in sctp_make_ftsns()

1234