Searched defs:end (Results 51 - 75 of 633) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/boot/sys/boot/uboot/fdt/
H A Duboot_fdt.c94 char *end, *ethstr; local
130 i = strtol(env + 3, &end, 10);
131 if (end == (env + 3))
/illumos-gate/usr/src/common/zfs/
H A Dzfs_namecheck.c138 const char *start, *end; local
167 /* Find the end of this component */
168 end = start;
169 while (*end != '/' && *end != '@' && *end != '#' &&
170 *end != '\0')
171 end++;
173 if (*end == '\0' && end[
256 const char *start, *end; local
[all...]
/illumos-gate/usr/src/lib/nsswitch/files/common/
H A Dgetprojent.c62 const char *linep, *limit, *end; local
76 end = linep;
77 id = (uint_t)strtol(linep, (char **)&end, 10);
78 if (linep == end)
100 const char *linep, *limit, *end; local
113 end = linep;
114 projid = (projid_t)strtol(linep, (char **)&end, 10);
117 if (linep == end)
/illumos-gate/usr/src/lib/print/libhttp-core/common/
H A Dhttp-support.c335 *end; /* End of buffer */ local
341 * or the end of the string.
344 for (ptr = dst, end = dst + dstsize - 1; *src && !strchr(term, *src); src ++)
345 if (ptr < end)
/illumos-gate/usr/src/lib/print/libpapi-common/common/
H A Duri.c70 char *end = NULL, *user = NULL, *host = NULL, *path = NULL; local
74 if ((path = end = strchr(string, '/')) == NULL)
75 for (end = string; *end != '\0'; end++)
78 u->host_part = strndup(string, end - string);
80 for (host = string; host < end; host ++)
84 /* host+1 to end is the host part */
86 end - (host+1));
130 end
[all...]
/illumos-gate/usr/src/lib/libsocket/inet/
H A Dinet6_opt.c216 uint8_t *end; local
225 end = (uint8_t *)extbuf + extlen;
239 if (p + 2 + *(p + 1) >= end)
247 if ((p + 2 >= end) || (p + 2 + *(p + 1) > end)) {
/illumos-gate/usr/src/lib/libbsm/
H A DxmlHandlers.pm102 sub end { subroutine
181 # print "end tag $element\n" if $main::debug;
185 &$functionRef($currentObj, 'end');
188 # print "no end callback for $element\n";
/illumos-gate/usr/src/lib/libilb/common/
H A Dilb_nat.c51 * end: The caller sets it to B_TRUE if it only wants at most num entries to
57 * On return, end is set to B_TRUE if end of table is reached; B_FALSE
62 boolean_t *end)
64 return (ilb_show_info(h, (char *)buf, num, end, show_nat));
73 * end: The caller sets it to B_TRUE if it only wants at most num entries to
79 * On return, end is set to B_TRUE if end of table is reached; B_FALSE
84 boolean_t *end)
86 return (ilb_show_info(h, (char *)buf, num, end, show_persis
61 ilb_show_nat(ilb_handle_t h, ilb_nat_info_t buf[], size_t *num, boolean_t *end) argument
83 ilb_show_persist(ilb_handle_t h, ilb_persist_info_t buf[], size_t *num, boolean_t *end) argument
94 ilb_show_info(ilb_handle_t h, char *buf, size_t *num, boolean_t *end, enum which_tbl tbl) argument
[all...]
/illumos-gate/usr/src/lib/libmail/inc/
H A Ds_string.h43 char *end; /* end of allocated space+1 */ member in struct:string
49 * Some macros have an integer at the end, which has null effect according
58 #define s_putc(s,c) (((s)->ptr < (s)->end) ? (*((s)->ptr)++ = (char)(c)) : s_grow((s),(c)))
62 #define s_space(s) ((s)->end - (s)->base)
63 #define s_terminate(s) (((s)->ptr < (s)->end) ? (*(s)->ptr = 0) : (s_grow((s),0), (s)->ptr--, 0))
/illumos-gate/usr/src/common/net/dhcp/
H A Dscan.c45 field_scan(uint8_t *start, uint8_t *end, DHCP_OPT **options, argument
50 while (start < end) {
58 if (++start < end)
64 if (++start < end)
68 if ((current + 1) >= end)
76 /* verify that len won't go beyond end */
77 if ((current + options[*current]->len + 1) >= end) {
91 uint8_t *start, *end, len; local
98 /* verify that len won't go beyond the end of the packet */
102 end
[all...]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dterminfo.c55 ti_unescape_memory (const char *in, const char *end) argument
145 while (in <= end);
160 ti_escape_memory (const char *in, const char *end) argument
203 while (in < end);
/illumos-gate/usr/src/cmd/oawk/
H A Dawk.g.y81 begin pa_stats end {
95 end: label
97 | end NL
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DStatistic.java52 * Return the end of the sample period for which the
100 * end dates lie within the supplied ranges. If either start
101 * or end is null, then that bound is not applied. i.e. if no
105 * @param end The end date for qualification in the snapshot.
109 Date start, Date end) throws IllegalArgumentException;
131 * The end of the interval during which the statistic was
134 private final Date end; field in class:AbstractStatistic
159 * @param end The end o
108 getSnapshotForInterval(Iterator it, Date start, Date end) argument
162 AbstractStatistic(Object value, Date start, Date end) argument
244 DoubleStatistic(Double value, Date start, Date end) argument
285 getSnapshotForInterval(Iterator it, Date start, Date end) argument
332 LongStatistic(Long value, Date start, Date end) argument
373 getSnapshotForInterval(Iterator it, Date start, Date end) argument
419 UnsignedInt64Statistic(UnsignedInt64 value, Date start, Date end) argument
460 getSnapshotForInterval(Iterator it, Date start, Date end) argument
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ilbadm/
H A Dilbadm_nat.c133 boolean_t end; local
139 * end to B_FALSE. Otherwise, set end to B_TRUE;
145 end = B_FALSE;
153 end = B_TRUE;
179 rclib = ilb_show_nat(h, buf.nbuf, &num, &end);
181 rclib = ilb_show_persist(h, buf.pbuf, &num, &end);
197 } while (!end);
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Ddist.c37 * number of buckets, adding one bucket at the end that is one past the end of
42 dist_linear(int buckets, int beg, int end) argument
46 int dist = end - beg + 1;
50 out[buckets] = end + 1;
60 * b_buckets = end + 1;
65 * beg * r = end
70 * r = -------/ ((end + 1) / beg)
72 * log ((end + 1) / beg)
76 * (log ((end
81 dist_geometric(int buckets, int beg, int end, int minbucketsize) argument
[all...]
H A Dlist.c46 * begin and end optionally specify objects other than the first and last
58 list_walk_init_range(mdb_walk_state_t *wsp, uintptr_t begin, uintptr_t end, argument
88 lwd->lw_end = (end == NULL ? NULL : end + lwd->lw_offset);
/illumos-gate/usr/src/cmd/sgs/libelf/common/
H A Dar.c90 * Convert a string starting at 'p' and ending at 'end' into
97 _elf_number(char *p, char *end, int base) argument
102 while (p < end) {
105 if (p >= end)
254 * be confused with the string table found at the end of the symbol
271 register char *end = base + elf->ed_fsz; local
283 if (((end - hdr) < sizeof (struct ar_hdr)) ||
291 if ((end - mem < n) || (a->ar_name[0] != '/') ||
/illumos-gate/usr/src/cmd/avs/dsstat/
H A Dcommon.c75 char *end; local
95 end = (char *)(knp + ksp->ks_ndata);
104 (void) strncpy(end, KSTAT_NAMED_STR_PTR(knp),
106 KSTAT_NAMED_STR_PTR(knp) = end;
107 end += KSTAT_NAMED_STR_BUFLEN(knp);
112 bzero(end, KSTAT_NAMED_STR_BUFLEN(knp));
113 KSTAT_NAMED_STR_PTR(knp) = end;
114 end += KSTAT_NAMED_STR_BUFLEN(knp);
/illumos-gate/usr/src/cmd/hal/tools/
H A Dhal-storage-closetray.c93 const char *end; local
133 if (!g_utf8_validate (closetray_options, -1, &end))
H A Dhal-storage-unmount.c94 const char *end; local
138 if (!g_utf8_validate (unmount_options, -1, &end))
/illumos-gate/usr/src/cmd/sgs/librtld_db/demo/common/
H A Ddis.c149 ulong_t offset, end; local
155 for (offset = addr, end = addr + num_inst * 4; offset < end;
/illumos-gate/usr/src/cmd/tbl/
H A Dtv.c21 drawvert(int start, int end, int c, int lwid) argument
25 end++;
28 while (instead[end]) end++;
35 if (end<nlin)
37 if (fullbot[end]|| (!instead[end] && allh(end)))
40 switch (midbar(end,c))
50 switch(interh(end,
[all...]
/illumos-gate/usr/src/uts/common/inet/
H A Dtcp_sack.h39 tcp_seq end; member in struct:sack_blk
47 tcp_seq end; member in struct:notsack_blk
/illumos-gate/usr/src/lib/sun_sas/common/
H A DSun_sasScsiReportLUNs.c79 hrtime_t start, end; local
198 end = gethrtime();
199 duration = end - start;
/illumos-gate/usr/src/psm/promif/ieee1275/common/
H A Dprom_printf.c41 _pput_flush(char *start, char *end) argument
44 start, end - start, 0, BYTE) == -1)

Completed in 104 milliseconds

1234567891011>>