Searched refs:last (Results 426 - 450 of 695) sorted by relevance

<<11121314151617181920>>

/opensolaris-onvv-gate/usr/src/lib/libast/common/port/
H A Dmnt.c156 struct statfs* last;
266 mp->last = mp->next + n;
278 if (mp->next < mp->last)
/opensolaris-onvv-gate/usr/src/lib/libnwam/common/
H A Dlibnwam_values.c424 nvpair_t *last = NULL, *next; local
428 if ((nverr = nvlist_lookup_nvpair(parentlist, lastname, &last))
432 if ((next = nvlist_next_nvpair(parentlist, last)) == NULL)
496 nvpair_t *last = NULL, *next; local
500 if ((nverr = nvlist_lookup_nvpair(list, lastname, &last)) != 0)
503 if ((next = nvlist_next_nvpair(list, last)) == NULL)
/opensolaris-onvv-gate/usr/src/uts/common/io/fibre-channel/fca/emlxs/
H A Demlxs_event.c208 eventq->last = NULL;
219 if (eventq->last == entry) {
220 eventq->last = entry->prev;
296 /* Set last event table */
310 eventq->last = entry;
312 entry->prev = eventq->last;
314 eventq->last = entry;
842 /* A new event has occurred since last acquisition */
1034 /* If so, then just return the last event id */
1056 /* Update last_id to the last know
[all...]
/opensolaris-onvv-gate/usr/src/cmd/dc/
H A Ddc.c878 if (under) { /* undershot last - adjust */
2137 hdr->last = ptr + size;
2191 hdr->last = ptr + size;
2194 while (ptr < hdr->last)
2205 printf("%s %o rd %o wt %o beg %o last %o\n", s1, hptr,
2206 hptr->rd, hptr->wt, hptr->beg, hptr->last);
2221 if (nn > hptr->last) {
2222 nbytes += nn - hptr->last;
2225 lbytes += nn - hptr->last;
2231 (unsigned)(hptr->last
[all...]
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
H A Dextensions.c852 lreply(code, " it was last modified on %.24s - Today",
857 " it was last modified on %.24s - %d day%s ago",
908 static time_t last = 0, shut, deny, disc; local
967 /* if last == 0, then is_shutdown() only called with quiet == 1 so far */
968 if (last == 0 && !quiet) {
971 last = curtime;
985 last = curtime;
989 if ((curtime - last) > (60 * 5) && !quiet) {
992 last = curtime;
997 if ((curtime - last) > (6
[all...]
/opensolaris-onvv-gate/usr/src/cmd/egrep/
H A Degrep.y1027 int x1, x2, length, current, last, cclcnt;
1030 last = genrange(type);
1034 while(current <= last && (isascii(c = lower[current]) || c <= 0377 && iscntrl(c))) {
1055 while(current <= last) {
1134 int current, nel, i, last, length;
1160 last = current - 1;
1163 for(i = 0; i < last; i++)
/opensolaris-onvv-gate/usr/src/uts/common/inet/ip/
H A Dipclassifier.c2687 * Trace of the last NBUF refhold/refrele
2692 int last; local
2696 last = connp->conn_trace_last;
2697 last++;
2698 if (last == CONN_TRACE_MAX)
2699 last = 0;
2701 ctb = &connp->conn_trace_buf[last];
2703 connp->conn_trace_last = last;
2710 int last; local
2714 last
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/
H A Dpp_sort.c149 ** or it may be equal to ``last'', the first element beyond list1.
185 register gptr c, *last, *r; local
190 last = PINDEX(b, nmemb);
192 for (p2 = list2; b < last; ) {
196 for (p = b+2, t = p; ++p < last; t = ++p) {
222 ((t + 1) == last) &&
224 savep = r = p = q = last;
241 if (((b = p) == t) && ((t+1) == last)) {
/opensolaris-onvv-gate/usr/src/lib/libast/common/tm/
H A Dtmxdate.c170 char* last; local
194 fix = tmxscan(s, &last, NiL, &t, now, 0);
195 if (t && !*last)
198 *e = last;
250 if (!*(last = (char*)s))
516 s = last;
1210 * disambiguate english "last ... in"
1326 * disambiguate "last" vs. { "previous" "final" }
1650 last = t;
1724 last
[all...]
/opensolaris-onvv-gate/usr/src/cmd/ipf/tools/
H A Dip_fil.c1033 static u_int last = 0xa5a5a5a5; local
1064 number = last;
1065 last *= calls;
1066 last++;
1067 number ^= last;
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A Dxsubpp48 default typemaps. This option may be used multiple times, with the last
411 last if /^\s*NOT_IMPLEMENTED_YET/;
491 # deal with RETVAL last
788 last unless /^\s*$/ ;
935 last if ($Module, $Package, $Prefix) =
973 last if ($lastline =~ /^=cut\s*$/);
988 last if $lastline =~ /^\S/ && @line && $line[-1] eq "";
994 last unless defined($lastline = <$FH>);
1053 ." (maybe last function was ended by a blank line "
1132 last;
[all...]
/opensolaris-onvv-gate/usr/src/cmd/sendmail/aux/
H A Dvacation.c322 struct entry *first = NULL, *last = NULL, *new_entry, *curr; local
338 if (first == NULL) { /* => so is last */
342 last = new_entry;
348 last->next = new_entry;
349 new_entry->prev = last;
351 last = new_entry;
633 * Make sure the last part of from is the domain line
/opensolaris-onvv-gate/usr/src/cmd/ttymon/
H A Dstty.c744 int i, last; local
750 * than NCCS control chars are printed because the last control slot
760 last = MAX_CC;
762 last = NCC;
766 (void) printf(":%x", (i >= last) ? 0 : cb.c_cc[i]);
789 for (i = 0; i < last; i++)
H A Dsttyparse.c506 int last, i; local
538 last = i - NUM_MODES;
539 for (i = 0; i < last; i++)
/opensolaris-onvv-gate/usr/src/cmd/zonecfg/
H A Dzonecfg_grammar.y42 static list_property_ptr_t new_list = NULL, tmp_list, last,
83 last = tmp_list;
84 last->lp_next = new_list;
1092 last = tmp_list;
1093 last->lp_next = new_list;
/opensolaris-onvv-gate/usr/src/lib/cfgadm_plugins/sbd/common/
H A Dap_sbd.c490 ap_platopts_check(apd_t *a, int first, int last) argument
513 for (c = first; c <= last; c++)
1330 int last; local
1349 * the last one, since printing the last cpuid is a
1357 /* Print the last cpuid, if necessary */
1359 last = (dst->ps_ncores == 2) ? PI_CPUID_PAIR : PI_CPUID_LAST;
1361 dgettext(TEXT_DOMAIN, p[last]), dst->ps_cpuid[i]);
/opensolaris-onvv-gate/usr/src/lib/libast/common/vmalloc/
H A Dvmdebug.c222 reg Dbfile_t *last, *db; local
230 { for(last = NIL(Dbfile_t*), db = Dbfile; db; last = db, db = db->next)
241 else if(last) /* move-to-front heuristic */
242 { last->next = db->next;
/opensolaris-onvv-gate/usr/src/lib/libexacct/common/
H A Dexacct_ops.c1011 * set the large backskip of the header group to 0 (last 4 bytes).
1301 ea_object_t *ret_obj, *dst, *last; local
1303 for (ret_obj = last = NULL; src != NULL;
1304 last = dst, src = src->eo_next) {
1329 if (last != NULL) {
1330 last->eo_next = dst;
/opensolaris-onvv-gate/usr/src/ucbcmd/stty/
H A Dstty.c776 int i, last; local
785 /* last control slot is unused */
786 last = NCCS - 2;
788 last = NCC - 1;
789 for (i = 0; i < last; i++)
791 (void) printf("%x\n", cb.c_cc[last]);
/opensolaris-onvv-gate/usr/src/uts/i86pc/os/
H A Dpmem.c581 * the splp linked list with *last as the heuristic pointer. Return NULL if
585 pmem_lpg_get(pmem_lpg_t *splp, page_t *pp, pmem_lpg_t **last) argument
595 /* Try last winner first. */
596 if (*last && root_pfn == page_pptonum((*last)->pl_pp))
609 *last = plp;
612 return (*last);
778 * Break the last r small pages from the large page list *lppp (with totally n
793 /* The residual should reside in the last large page. */
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/bin/
H A Denc2xs375 last if /^\s*CHARMAP\s*$/i;
408 last if /^\s*END\s+CHARMAP\s*$/i;
467 last if $type !~ /^\s*#/;
584 # When $pos was -1 we were at the last input character.
655 # Reset the last thing we saw, plus set 5 lexicals to save some derefs.
667 # encengine.c rules say that last entry must be for 255
723 # append the last bit on the end.
725 last OPTIMISER;
731 # well, the last $sublength characters of the accumulator match.
739 last OPTIMISE
[all...]
/opensolaris-onvv-gate/usr/src/lib/libkmf/libkmf/common/
H A Dclient.c935 char *last; local
937 strtok_r(policy->VAL_OCSP_BASIC.proxy, ":", &last);
938 proxy_port_s = strtok_r(NULL, "\0", &last);
/opensolaris-onvv-gate/usr/src/lib/libparted/common/libparted/fs/fat/
H A Dresize.c803 PedSector last; local
811 last = PED_MIN (old_fs_info->fat_offset, new_fs_info->fat_offset) - 1;
812 count = last - first + 1;
/opensolaris-onvv-gate/usr/src/lib/libshell/common/bltins/
H A Dtest.c421 char *last; local
422 op = strtol(arg,&last, 10);
423 return(*last?0:tty_check(op));
/opensolaris-onvv-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/
H A DkernelObjectUtil.c387 /* Object is the last one in the list. */
796 /* Object is the last one in the list. */
1065 obj_delay_freed.last = objp;
1068 obj_delay_freed.last->next = objp;
1069 obj_delay_freed.last = objp;

Completed in 271 milliseconds

<<11121314151617181920>>