Searched defs:end (Results 76 - 100 of 289) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/libscf/common/
H A Dscf_type.c140 * we've reached the end of the string -- make sure it is short enough
242 char *end; local
245 len = strtol(p, &end, 10);
246 if (p == end || len < 0 || len > max_len)
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dexpand.c245 * generate the list of files found by adding an suffix to end of name
280 char tmp[32], end[1]; local
425 *(cp = end) = 0;
/osnet-11/usr/src/lib/libsip/common/
H A Dsip_itf.c146 char *end; local
149 end = sip_msg->sip_msg_buf + sip_msg->sip_msg_len;
154 if (msg < end)
219 * We have reached the end without hitting the empty line.
/osnet-11/usr/src/lib/libkmf/libkmf/common/
H A Dpk11tokens.c117 char *end; local
122 while ((end = strchr(str, ':')) != NULL) {
123 if (end != str && *(end-1) != '\\')
124 return (end);
125 str = end + 1; /* could point to null-terminator */
127 if (end == NULL)
128 end = strchr(str, '\0');
129 return (end);
/osnet-11/usr/src/lib/libldap4/common/
H A Dufn.c421 LDAPMessage *end, *aprev, *aend, *bprev, *bend; local
445 end = aend;
458 end = bend;
467 return( end );
470 bprev->lm_chain = end;
473 aprev->lm_chain = end;
476 bprev->lm_chain = end;
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dufn.c383 LDAPMessage *end, *aprev, *aend, *bprev, *bend; local
407 end = aend;
420 end = bend;
429 return( end );
432 bprev->lm_chain = end;
435 aprev->lm_chain = end;
438 bprev->lm_chain = end;
/osnet-11/usr/src/lib/libparted/common/libparted/cs/
H A Dconstraint.c26 * are restrictions on the location and alignment of the start and end of a
135 ped_geometry_init (&end_range, min->dev, min->end,
136 max->end - min->end + 1);
290 * an end, such that the (start, end) satisfy the constraint.
309 constraint->end_range->end);
331 * Return the nearest start that will have at least one other end that
352 * range of all possible ends, such that all (start, end) are solutions
380 * Given "constraint" and "start", find the end tha
385 _constraint_get_nearest_end_soln(const PedConstraint* constraint, PedSector start, PedSector end) argument
414 PedSector end; local
[all...]
H A Dgeom.c33 * - <tt>start + length - 1 == end</tt>
36 * - <tt>end < dev->length</tt>
123 PedSector end; local
129 end = PED_MIN (a->end, b->end);
130 if (start > end)
133 return ped_geometry_new (a->dev, start, end - start + 1);
148 * Assign a new \p start, \p end (implicitly) and \p length to \p geom.
150 * \p geom->end i
198 ped_geometry_set_end(PedGeometry* geom, PedSector end) argument
[all...]
/osnet-11/usr/src/lib/libparted/common/libparted/labels/
H A Daix.c123 PedSector start, PedSector end)
121 aix_partition_new(const PedDisk* disk, PedPartitionType part_type, const PedFileSystemType* fs_type, PedSector start, PedSector end) argument
H A Dloop.c136 fs_type, geom->start, geom->end);
188 PedSector start, PedSector end)
192 part = _ped_partition_alloc (disk, part_type, fs_type, start, end);
205 part->geom.start, part->geom.end);
186 loop_partition_new(const PedDisk* disk, PedPartitionType part_type, const PedFileSystemType* fs_type, PedSector start, PedSector end) argument
/osnet-11/usr/src/lib/libparted/common/libparted/
H A Dunit.c29 * end of partitions. However, sector numbers are often long and unintuitive.
444 PedSector end = clip (dev, sector + radius); local
445 if (sector - end > radius || start - sector > radius)
447 return ped_geometry_new (dev, start, end - start + 1);
535 /* negative numbers count from the end */
/osnet-11/usr/src/lib/libpool/common/
H A Ddict.c203 uchar_t *end = start + len; local
206 while (start < end) {
/osnet-11/usr/src/lib/libcmd/common/
H A Dcat.c129 unsigned char* end; local
146 *(cp = buf = end = tmp) = 0;
173 *end = last;
175 c = end - pp + 1;
185 *(cp = cur = end) = 0;
193 *(cp = end = tmp + sizeof(tmp) - 1) = 0;
199 *(cp = end = tmp + sizeof(tmp) - 1) = 0;
205 end = buf + n - 1;
206 last = *end;
207 *end
[all...]
/osnet-11/usr/src/lib/libcommputil/common/
H A Dsdp_parse_helper.c339 const char *end; local
345 end = current + len;
347 if (commp_skip_white_space(&current, end) != 0)
349 while (current < end) {
350 (void) commp_skip_white_space(&current, end);
352 while (current < end) {
/osnet-11/usr/src/lib/libdevinfo/
H A Ddevinfo_prop_decode.c333 * DDI_PROP_RESULT_EOF: end of data
339 * DDI_PROP_RESULT_EOF: end of data
345 * DDI_PROP_RESULT_EOF: end of data
351 * DDI_PROP_RESULT_EOF: end of data
357 * DDI_PROP_RESULT_EOF: end of data
590 char *end; local
660 end = (char *)ph->ph_data + ph->ph_size;
662 if (p == end) {
669 for (n = 0; p < end && isascii(*p) && !iscntrl(*p); n++, p++)
694 end
827 char *cp, *end; local
[all...]
/osnet-11/usr/src/lib/libdscp/
H A Dlibdscp.c364 int end; local
423 /* Detect the end of the interface name */
424 for (end = size - 1, i = begin; i < size; i++) {
426 end = i;
432 len = end - begin;
/osnet-11/usr/src/lib/libdtrace/i386/
H A Ddt_isadep.c124 ulong_t i, end; local
130 * We allocate a few extra bytes at the end so we don't have to check
163 for (i = 0, end = ftp->ftps_size; i < end; i += size) {
196 for (i = 0, end = ftp->ftps_size; i < end; i += size) {
351 ulong_t i, end = symp->st_size; local
381 for (i = 0; i < end; i += size) {
394 for (i = 0; i < end; i += size) {
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_subr.c109 env_process_value(topo_hdl_t *thp, const char *begin, const char *end) argument
115 while (begin < end && isspace(*begin))
118 while (begin < end && isspace(*(end - 1)))
119 end--;
121 if (begin >= end)
124 count = end - begin;
142 char *end, *value, *next; local
148 for (end = (char *)dbmode; *end !
309 const char *end, *cp; local
570 char *value, *next, *end, *valend; local
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/common/ses/common/
H A Dses_dev.c61 const char *end; local
68 end = begin + strlen(begin);
70 while (begin < end && isspace(*begin))
72 while (begin < end && isspace(*(end - 1)))
73 end--;
75 count = end - begin;
384 * NOTE: if there is no devid, then we can end up with duplicate
/osnet-11/usr/src/lib/fm/topo/modules/sun4v/platform-cpu/common/
H A Dcpu.c93 char *str_serial, *end; local
107 *serial = (uint64_t)strtoull(str_serial, &end, 16);
108 if (str_serial == end)
H A Dcpu_mdesc.c168 char *strserial, *end; local
227 sn = (uint64_t)strtoull(strserial, &end, 16);
228 if (strserial == end) {
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_parse.c259 char *p, *end; local
285 end = bptr + strlen (bptr);
286 while (p < end) {
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dutf8.c84 const char *end = p + length; local
86 for ( ; p < end; KRB5_UTF8_INCR(p))
525 char *end; local
539 end = &begin[krb5int_utf8_strcspn(begin, sep)];
541 if (*end != '\0') {
542 char *next = KRB5_UTF8_NEXT(end);
543 *end = '\0';
544 end = next;
547 *last = end;
/osnet-11/usr/src/lib/krb5/ss/
H A Dlisten.c136 char *volatile end = buffer; local
237 *end = '\0';
280 for (end = input; *end; end++)
/osnet-11/usr/src/lib/libadm/common/
H A Dckitem.c184 getnum(char *strval, int max, int *begin, int *end) argument
189 *begin = *end = 0;
212 *end = n;
219 if (!*end)
220 *end = *begin;
221 return ((*begin <= *end) ? 0 : 1);
229 int begin, end; local
250 &end)) {
256 if ((i >= begin) && (i <= end)) {
505 char end[MAX_INPU local
[all...]

Completed in 46 milliseconds

1234567891011>>