Searched refs:last (Results 226 - 250 of 601) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libcmd/common/
H A Ddate.c71 " an odd number of arguments then the last time argument is differenced"
157 "[L:last?List only the last time for multiple \adate\a operands.]"
290 int last = 0; /* display the last time arg */ local
330 last = 1;
460 if (!last)
H A Dtail.c78 "may be omitted from the last integer, in which case it is "
159 register Sfoff_t last; local
164 last = sfsize(fp);
166 return last || fstat(sffileno(fp), &st) || st.st_size || FIFO(st.st_mode) ? -1 : 0;
169 if ((offset = last - number) < first)
175 if ((offset = last - SF_BUFSIZE) < first)
178 n = last - offset;
191 last = offset;
/illumos-gate/usr/src/lib/libgss/
H A Dg_utils.c65 static int last = 0; local
70 if (stat(QOP_NUM_FILE, &stbuf) != 0 || stbuf.st_mtime < last) {
76 last = stbuf.st_mtime;
/illumos-gate/usr/src/cmd/sgs/rtld/sparc/
H A Dboot.s150 inc %l1 ! account for last element of 0
164 set EB_NULL, %l0 ! set up for the last pointer
185 mov %g0, %g4 ! but clear one last global in delay
/illumos-gate/usr/src/cmd/sh/
H A Dio.c397 restore(int last) argument
402 for (i = topfd - 1; i >= last; i--) {
408 topfd = last;
/illumos-gate/usr/src/cmd/split/
H A Dsplit.c73 char *last; local
201 last = strrchr(head, '/');
202 *++last = '\0';
/illumos-gate/usr/src/uts/common/os/
H A Dclock_highres.c236 hrtime_t last; local
242 last = atomic_cas_64((uint64_t *)addr, 0, 0);
270 * Now check to see if we've dealt with the last interval
273 if (now - diff > last) {
275 * The last interval hasn't fired; set it_value to 0.
282 * The last interval _has_ fired; we can return the amount
/illumos-gate/usr/src/cmd/mandoc/
H A Dmandoc.h255 struct tbl_cell *last; member in struct:tbl_row
293 struct tbl_dat *last; member in struct:tbl_span
354 struct eqn_box *last; /* last child node */ member in struct:eqn_box
403 ESCAPE_NOSPACE, /* suppress space if the last on a line */
H A Deqn.c541 * Allocate a box as the last child of the parent node.
555 parent->last->next = bp;
556 bp->prev = parent->last;
560 parent->last = bp;
565 * Reparent the current last node (of the current parent) under a new
576 assert(NULL != parent->last);
577 b = parent->last;
578 if (parent->last == parent->first)
581 parent->last = b->prev;
588 newb->first = newb->last
[all...]
/illumos-gate/usr/src/boot/lib/libz/
H A Dtrees.c100 * 3 .. 258, the last 256 values correspond to the top 8 bits of
324 # define SEPARATOR(i, last, width) \
325 ((i) == (last)? "\n};\n\n" : \
591 /* Check that the bit counts in bl_count are consistent. The last code
711 int prevlen = -1; /* last emitted length */
756 int prevlen = -1; /* last emitted length */
799 * bl_order of the last bit length code to send.
804 int max_blindex; /* index of last bit length code of non zero freq */
865 void ZLIB_INTERNAL _tr_stored_block(s, buf, stored_len, last)
869 int last; /* on
[all...]
/illumos-gate/usr/src/boot/sys/boot/uboot/lib/
H A Dglue.c503 ub_env_enum(const char *last) argument
509 * It's OK to pass only the name piece as last (and not the whole
514 if (!syscall(API_ENV_ENUM, NULL, last, &env))
517 if (env == NULL || last == env)
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dpriv_str_xlate.c81 char *last; local
101 last = base;
103 while ((offset = strtok_r(NULL, separators, &last)) != NULL) {
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_init.c34 prf_file_t new_file, last = 0; local
55 if (last)
56 last->next = new_file;
59 last = new_file;
62 * If last is still null after the loop, then all the files were
65 if (!last) {
/illumos-gate/usr/src/lib/libshell/common/bltins/
H A Dtrap.c239 char *last, *name; local
242 n = strtol(string,&last,10);
243 if(*last)
265 n = strtol(stakptr(o),&last,10);
266 if(!*last)
H A Dshiocmd_solaris.c60 char *last; local
73 t = tmdate(val, &last, (time_t*)0);
74 if(*last)
135 char *last; local
145 mode = strperm(val, &last,0);
146 if(*last)
253 nfp->last = "";
/illumos-gate/usr/src/lib/libresolv2/common/irs/
H A Dgen.c297 struct irs_rule **rules, *last, *tmp, *new; local
345 for (last = NULL, tmp = *rules;
347 last = tmp, tmp = tmp->next)
349 if (last == NULL)
352 last->next = new;
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dns_fnreaddir.c53 * that part of the name up to (and possibly including) the last slash
64 * Split a multi-component composite name into its last component and
68 split_cname(const FN_composite_name_t *name, FN_composite_name_t **last,
302 split_cname(const FN_composite_name_t *name, FN_composite_name_t **last, argument
308 *last = fn_composite_name_suffix(name, iter);
310 if (*last == NULL || *lead == NULL) {
312 fn_composite_name_destroy(*last);
H A Dauto_subr.c371 * Perhaps last char read was '\'. Reinsert it
862 * after '*last' and to the binary tree list.
863 * If '*last == NULL' then the list is walked till the end.
864 * *last is always set to the new element after successful completion.
865 * if entry already exists '*last' is only updated if not previously
869 add_dir_entry(char *name, struct dir_entry **list, struct dir_entry **last) argument
873 if ((*list != NULL) && (*last == NULL)) {
875 * walk the list to find last element
878 *last = l;
901 *list = *last
[all...]
H A Dns_ldap.c104 struct dir_entry *last; member in struct:dir_cbdata
847 readdir_cbdata.last = NULL;
903 struct dir_entry *last = temp->last; local
960 if (add_dir_entry(key, list, &last)) {
965 temp->last = last;
/illumos-gate/usr/src/uts/intel/dtrace/
H A Dsdt.c196 sdt_probe_t *sdp = parg, *old, *last, *hash; local
214 last = NULL;
219 last = hash;
223 if (last != NULL) {
224 last->sdp_hashnext = sdp->sdp_hashnext;
/illumos-gate/usr/src/lib/nsswitch/compat/common/
H A Dcompat_common.c76 char *last = NULL; local
83 au_user->au_name = _strtok_escape(buffer, sep, &last);
95 char *last = NULL; local
102 user->name = _strtok_escape(buffer, sep, &last);
204 * for the same-netgroup-as-last-time case
482 /* Line is last line in file, and has no newline */
591 char *last; local
593 if ((last = strchr(instr, '#')) == 0) {
594 last = instr + linelen;
596 *last
[all...]
/illumos-gate/usr/src/uts/common/io/i40e/
H A Di40e_gld.c44 int ret, i, last; local
86 last = i40e->i40e_resources.ifr_nmacfilt_used - 1;
87 if (i != last) {
88 i40e_uaddr_t *src = &i40e->i40e_uaddrs[last];
93 * Set the multicast bit in the last one to indicate to ourselves that
96 bzero(&i40e->i40e_uaddrs[last], sizeof (i40e_uaddr_t));
97 i40e->i40e_uaddrs[last].iua_mac[0] = 0x01;
343 int last; local
367 last = i40e->i40e_resources.ifr_nmcastfilt_used - 1;
368 if (i != last) {
[all...]
/illumos-gate/usr/src/lib/nsswitch/files/common/
H A Dgethostent.c346 char *first, *last, *buffer; local
406 if ((last = strchr(instr, '#')) == 0)
407 last = instr + linelen;
408 *last-- = '\0';
415 while (isspace(*last))
416 --last;
417 linelen = last - first + 1;
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dm_cc.c81 int last; local
91 /* In case of error, rewind string to the last character. */
92 last = string.used;
95 string.used = last;
214 int i, bytes, count, last; local
234 /* In case of error, rewind string to the last character. */
235 last = string.used;
240 string.used = last;
249 string.used = last;
487 * Return true if valid last colum
[all...]
/illumos-gate/usr/src/cmd/psrset/
H A Dpsrset.c336 do_range(psetid_t pset, processorid_t first, processorid_t last, int print) argument
343 for (cpu = first; cpu <= last; cpu++) {
350 warn(gettext("no processors in range %d-%d\n"), first, last);
856 processorid_t first, last; local
867 last = (processorid_t)
870 last < first || first < 0) {
877 if (do_range(pset, first, last, pflag))

Completed in 101 milliseconds

1234567891011>>