Searched defs:first (Results 1 - 25 of 355) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dwtouchln.c55 int first, last; local
60 first = bf ? 0 : w->_maxx;
64 w->_first[y] = first;
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dclock.c40 static long first; variable
49 if (first == 0L)
50 first = TIMES(buffer);
51 return ((TIMES(buffer) - first) * (1000000L/HZ));
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dptree.h50 * first = 1 indicates the first in a list, first != 1 implies a later
56 int first; member in struct:plut_wlk_data
/illumos-gate/usr/src/lib/libbc/libc/sys/common/
H A Dexecle.c41 char **first; local
45 first = (char **)args;
53 return (execve(name, first, environmentp));
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dclock.c46 static clock_t first; local
54 first = TIMES(buffer);
57 return ((TIMES(buffer) - first) * (CLOCKS_PER_SEC/Hz));
/illumos-gate/usr/src/lib/libast/common/comp/
H A Dbasename.c35 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=='/')
43 if(*first=='/')
49 for(first=last++;first>pathname && *first!='/';first
[all...]
/illumos-gate/usr/src/lib/libeti/form/common/
H A Dchg_page.c38 #define first(f) (0) macro
48 p = first(f);
58 if (--p < first(f))
78 return (_set_form_page(f, first(f), (FIELD *) 0));
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwscrl.c71 int first; local
88 first = __m_cc_first(w, row + n,
90 save = w->_line[row + n][first];
92 first, row + n, first);
93 w->_line[row + n][first] = save;
H A Dwtouchln.c58 int first, last; local
60 first = bf ? 0 : w->_maxx;
64 w->_first[y] = (short) first;
/illumos-gate/usr/src/cmd/krb5/kwarn/
H A Dkwarnd_clnt_stubs.c55 boolean_t first = TRUE; local
87 if (ret == RPC_TIMEDOUT && first) {
89 first = FALSE;
106 boolean_t first = TRUE; local
137 if (ret == RPC_TIMEDOUT && first) {
139 first = FALSE;
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsffilbuf.c26 ** If n == 0, if the buffer is not empty, just return the first byte;
27 ** otherwise fill the buffer and return the first byte.
43 reg int first, local, rcrv, rc, justseek; local
56 for(first = 1;; first = 0, (f->mode &= ~SF_LOCK) )
64 { /* on first iteration, n is amount beyond current buffer;
66 if((first && n <= 0) || (!first && n <= r) ||
/illumos-gate/usr/src/lib/nsswitch/user/common/
H A Duser_common.c195 char *first; local
207 for (first = instr; isspace(*first); first++) {
210 if (*first == '\0') {
223 linelen = last - first + 1;
224 if (first != instr) {
225 instr = first;
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dnewkey.c91 short *first = &(cur_term->_first_macro); local
94 (*first * sizeof (_KEY_MAP *)));
95 (void) memcpy((char *) &(keys[*first + 1]),
96 (char *) &(prev_keys[*first]),
97 ((*numkeys - *first) * sizeof (_KEY_MAP *)));
98 keys[(*first)++] = key_info;
/illumos-gate/usr/src/lib/libnvpair/
H A Dnvpair_json.c120 boolean_t first = B_TRUE; local
128 if (!first)
131 first = B_FALSE;
/illumos-gate/usr/src/lib/libcmd/common/
H A Dbasename.c64 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=='/')
73 if(*first=='/')
79 for(first=last++;first>pathname && *first!='/';first
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.ripngd/
H A Dif.c89 boolean_t first; local
97 for (first = _B_TRUE, p = flagbits; p->t_bits > 0; p++) {
101 if (first) {
103 first = _B_FALSE;
106 if (first)
/illumos-gate/usr/src/cmd/sendmail/db/mp/
H A Dmp_fget.c43 int b_incr, first, ret; local
199 for (first = 1; F_ISSET(bhp, BH_LOCKED); first = 0) {
203 * Explicitly yield the processor if it's not the first
208 if (!first)
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dconfig.c47 static bool first = true; local
80 ** If this is our first time through, use malloc(), else realloc().
83 if (first)
89 first = false;
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dtrace.c73 unsigned int first, last; local
76 /* find first flag to set */
88 first = i;
113 if (first >= tTsize)
114 first = tTsize - 1;
119 while (first <= last)
120 tTvect[first++] = (unsigned char) i;
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzle.c45 uchar_t *first = src; local
51 *len = src - first - 1 + n;
60 *len = src - first - 1;
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/mech/
H A Dutil_set.c67 g_set_elt first; local
69 if ((first = (struct _g_set_elt *) MALLOC(sizeof(struct _g_set_elt))) == NULL)
72 first->key = key;
73 first->value = value;
74 first->next = *s;
76 *s = first;
/illumos-gate/usr/src/uts/common/io/mr_sas/
H A Dmr_sas_list.c101 * @head: the place to add it in the first list.
106 struct mlist_head *first = list->next; local
108 if (first != list) {
112 first->prev = head;
113 head->next = first;
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Derror_map.h31 struct gsserrmap__element *first; member in struct:gsserrmap__head
36 head->first = NULL;
44 for (e = head->first; e; e = e_next) {
52 head->first = NULL;
59 for (e = head->first; e; e = e->next)
109 e->next = head->first;
110 head->first = e;
/illumos-gate/usr/src/lib/libxcurses/src/libc/mks/
H A Dm_varian.c205 static int first = 1; local
207 if (!first)
209 first = 0;
/illumos-gate/usr/src/lib/cfgadm_plugins/sbd/common/
H A Dap_seq.c47 ap_suspend_check(apd_t *a, int cmd, int first, int last, int *suspend) argument
61 for (check = 0, c = first; c <= last; c++)
91 ap_seq_get(apd_t *a, int cmd, int *first, int *last) argument
204 *first = f;
208 rs, os, cmd, (void *)first, (void *)last, f, l);
214 DBG("Sequencing recovery: first = %s, last = %s\n", \
218 ap_seq_exec(apd_t *a, int cmd, int first, int last) argument
225 int recover_f = CMD_NONE; /* first recovery cmd */
245 rc = ap_platopts_check(a, first, last);
251 for (c = first;
415 int first, last; local
[all...]

Completed in 94 milliseconds

1234567891011>>