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

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
wtouchln.c 48 * or untouched since the last call to wrefresh().
55 int first, last; local
61 last = bf ? w->_maxx : -1;
65 w->_last[y] = last;
  /onnv/onnv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
wtouchln.c 53 * or untouched since the last call to wrefresh().
58 int first, last; local
61 last = bf ? w->_maxx : -1;
65 w->_last[y] = (short) last;
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
basename.c 35 register char *first, *last; local
36 for(first=last=pathname; *last; last++);
38 if(last>first)
39 while(*--last=='/' && last > first);
40 if(last==first && *last=='/')
44 if(*++last=='/') /* keep leading // *
    [all...]
dirname.c 35 register char *last; local
37 for(last=pathname; *last; last++);
39 while(last>pathname && *--last=='/');
41 for(;last>pathname && *last!='/';last--);
42 if(last==pathname
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/db/os/
os_rpath.c 29 * Return the last path separator in the path or NULL if none found.
37 const char *s, *last; local
39 last = NULL;
43 last = s;
47 last = s;
48 return ((char *)last);
  /onnv/onnv-gate/usr/src/uts/i86pc/cpu/amd_opteron/
ao_poll.c 49 hrtime_t last = ao->ao_ms_shared->aos_nb_poll_timestamp; local
52 if (now - last > 2 * pintvl || last == 0) {
54 * If no last value has been recorded assume ownership.
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/dbutil/
strtok.c 46 * sets last to string
49 * last
61 static char *last; local
64 if (s == NULL && (s = last) == NULL)
79 last = NULL;
100 last = s;
  /onnv/onnv-gate/usr/src/cmd/oamuser/group/
gid.c 59 gid_t last, next; local
82 last = MAXUID; /* upper limit */
89 if (last != DEFRID + 1)
94 if ((gid = next + 1) != last) {
97 if (gid > 0 && gid < last)
102 last = next;
  /onnv/onnv-gate/usr/src/common/util/
bsearch.c 52 char *last; /* Last element in table */ local
59 last = base + width * (nel - 1);
61 while (last >= base) {
63 char *p = base + width * ((last - base)/two_width);
69 last = p - width;
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
bsearch.c 44 POINTER last = base + width * (nel - 1); /* Last element in table */ local
46 while (last >= base) {
48 register POINTER p = base + width * ((last - base)/two_width);
54 last = p - width;
  /onnv/onnv-gate/usr/src/lib/libpkg/common/
canonize.c 40 char *pt, *last; local
49 last = pt;
52 last += 2;
53 if (*last)
54 last++;
55 } while (isdotdot(last));
65 (void) strcpy(pt, last);
  /onnv/onnv-gate/usr/src/lib/libast/common/cdt/
dtflatten.c 37 reg Dtlink_t *t, *r, *list, *last, **s, **ends; local
43 list = last = NIL(Dtlink_t*);
47 { if(last)
48 last->right = t;
49 else list = last = t;
50 while(last->right)
51 last = last->right;
52 *s = last;
61 for(list = last = r, r = r->right; r; last = r, r = r->right
    [all...]
  /onnv/onnv-gate/usr/src/lib/libcmd/common/
basename.c 45 "all characters up to and including the last \b/\b are removed. "
64 register char *first, *last; local
66 for(first=last=pathname; *last; last++);
68 if(last>first)
69 while(*--last=='/' && last > first);
70 if(last==first && *last=='/'
    [all...]
dirname.c 37 "the last component from \astring\a.]"
45 "Otherwise, all characters following the last \b/\b are removed. "
68 register const char *last; local
70 for(last=pathname; *last; last++);
72 while(last>pathname && *--last=='/');
74 for(;last>pathname && *last!='/';last--)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/nscd/
nscd_biggest.c 51 int size, guess, base, last; local
62 last = size;
63 while (last >= base) {
64 guess = (last+base)/2;
68 last = guess - 1;
72 guess = last;
  /onnv/onnv-gate/usr/src/lib/libeti/form/common/
chg_page.c 39 #define last(f) (f->maxpage - 1) macro
47 if (++p > last(f))
59 p = last(f);
84 return (_set_form_page(f, last(f), (FIELD *) 0));
  /onnv/onnv-gate/usr/src/uts/common/krtld/
kobj_lm.c 72 struct modctl_list *last; local
74 for (last = *lpp; last->modl_next != NULL;
75 last = last->modl_next)
78 last->modl_next = lp;
  /onnv/onnv-gate/usr/src/lib/libast/common/string/
strelapsed.c 47 const char* last; local
53 if (!*(last = s))
60 last = s + 1;
74 last = s;
77 if (s == last + 1)
139 last = s - 1;
150 *e = (char*)last;
  /onnv/onnv-gate/usr/src/lib/libast/common/tm/
tmxduration.c 40 char* last; local
50 ns = tmxdate(s, &last, now) - now;
53 ns = strtod(s, &last) * TMX_RESOLUTION;
54 if (*last && (f = sfstropen()))
59 if ((i = x - t - 6) > (last - s))
61 last = (char*)s + i;
69 if ((i = x - t - 1) > (last - s))
71 last = (char*)s + i;
79 *e = last;
  /onnv/onnv-gate/usr/src/lib/libast/common/vmalloc/
vmclose.c 42 Vmalloc_t *v, *last; local
64 for(last = Vmheap, v = last->next; v; last = v, v = v->next)
66 { last->next = v->next;
  /onnv/onnv-gate/usr/src/uts/common/fs/zfs/
zle.c 48 uchar_t *last = src + (256 - n); local
49 while (src < MIN(last, s_end) && src[0] == 0)
53 uchar_t *last = src + n; local
56 while (src < MIN(last, s_end) - 1 && (src[0] | src[1]))
  /onnv/onnv-gate/usr/src/cmd/adbgen/common/
adbgen4.c 52 char *cur, *last, *cp1, *cp2, *ep, *t; local
56 last = buf1;
59 if (goodstart(cur) && goodstart(last)) {
96 * Move increment or decrement into last.
99 ep = last + strlen(last);
112 puts(last);
114 cur = last;
115 last = t;
117 puts(last);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/agents/snmp/agent/
subtree.c 66 Subtree *last = NULL; local
112 last = sp;
115 if(last == NULL)
122 new->next_subtree = last->next_subtree;
123 last->next_subtree = new;
146 Subtree *last; local
185 last = NULL;
213 last = sp;
222 if(last)
225 SSAOidString(&(last->name))
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ipf/lib/common/
printhash_live.c 28 int i, printed, last; local
51 last = 0;
54 while (!last && (ioctl(fd, SIOCLOOKUPITER, &obj) == 0)) {
56 last = 1;
printpool_live.c 28 int i, printed, last; local
51 last = 0;
54 while (!last && (ioctl(fd, SIOCLOOKUPITER, &obj) == 0)) {
56 last = 1;

Completed in 6710 milliseconds

1 2 3 4 5 6 7 8 91011>>