Searched defs:end (Results 151 - 175 of 289) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/libc/port/gen/
H A Diconv.c856 char *end; local
873 while ((end = strchr(start, '/')) != NULL) {
874 if (*(end + 1) != '/') {
875 start = end + 1;
879 *flag = check_flag_values(prev_start, end - prev_start, *flag);
881 prev_start = start = end + 2;
884 end = start + strlen(start);
885 *flag = check_flag_values(prev_start, end - prev_start, *flag);
/osnet-11/usr/src/lib/libumem/common/
H A Denvvar.c150 { NULL, "-- end of UMEM_OPTIONS --", ITEM_INVALID }
188 "end against an unmapped page",
219 { NULL, "-- end of UMEM_DEBUG --", ITEM_INVALID }
252 { NULL, "-- end of UMEM_LOGGING --", ITEM_INVALID }
555 umem_process_value(umem_env_item_t *item_list, const char *beg, const char *end) argument
562 while (beg < end && isspace(*beg))
565 while (beg < end && isspace(*(end - 1)))
566 end--;
568 if (beg >= end) {
722 const char *end, *next; local
[all...]
/osnet-11/usr/src/lib/libwrap/
H A Doptions.c192 tcpd_jump("option \"%s\" must be at end", key);
620 char *end; local
627 end = cp;
630 return (start ? (end[1] = 0, start) : cp);
/osnet-11/usr/src/lib/libxcurses/src/libc/stdio/
H A Dvfscanf.c416 return 0; /* return 0 for end of string */
474 char start, end; local
485 end = 0;
488 end = str[1];
490 if (start > end) {
508 if (c >= start && c <= end)
513 if (c < start || c > end)
599 w = width; /* force end of loop */
627 w = width; /* force end of loop */
664 w = width; /* force end o
[all...]
/osnet-11/usr/src/lib/libzfs_jni/common/
H A Dlibzfs_jni_util.c73 char *end = name + match->rm_eo; local
74 char tmp = *end;
75 *end = '\0';
77 *end = tmp;
/osnet-11/usr/src/lib/nsswitch/ad/common/
H A Dgetpwnam.c176 char **sid_v, *ptr, **pgid_v, *end; local
217 end = ++ptr;
218 tmp = strtoul(ptr, &end, 10);
219 if (end == ptr || tmp > UINT32_MAX)
240 end = pgid_v[0];
241 tmp = strtoul(pgid_v[0], &end, 10);
242 if (end == pgid_v[0] || tmp > UINT32_MAX)
/osnet-11/usr/src/lib/libresolv2/common/nameser/
H A Dns_name.c504 *\li 'lastdnptr' is a pointer to the end of the array pointed to
530 lpp = cpp; /*%< end of list to search */
637 *\li The list ends with NULL. 'lastdnptr' is a pointer to the end of the
1026 encode_bitsring(const char **bp, const char *end, unsigned char **labelp, argument
1040 if (end - cp < 2)
1049 for (tp = *dst + 1; cp < end && tp < eom; cp++) {
1051 case ']': /*%< end of the bitstring */
1096 if (cp >= end || tp >= eom)
/osnet-11/usr/src/lib/libsec/common/
H A Daclutils.c753 char *end; local
764 rid = strtoul(rid_start--, &end, 10);
765 if (errno == 0 && *end == '\0') {
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dstreval.c942 * (Sfdouble_t)(*convert)(char** end, struct lval* string, int type, Sfdouble_t value)
945 * *end points to the part to be converted and must be adjusted by convert to
952 Sfdouble_t strval(Shell_t *shp,const char *s,char **end,Sfdouble_t(*conv)(const char**,struct lval*,int,Sfdouble_t),int emode) argument
960 ep = arith_compile(shp,s,end,conv,emode);
/osnet-11/usr/src/lib/libsip/common/
H A Dsip_ui.c1027 char *end = str + strlen(str) - 1; local
1031 while (isspace(*end))
1032 end--;
1033 if (end <= start)
1035 slen = end - start + 1;
/osnet-11/usr/src/lib/libnisdb/
H A Dldap_util.c498 * non-string copies into the buffer, and still end up with
506 /* Put a NUL at the end, just in case we printf() */
764 char *s, *d, *end; local
769 end = s + val->val[i].length;
775 for (d = s; s < end; s++, d++) {
781 * Reached the end, in which case will not go into loop,
784 for (; s < end; s++) {
792 if (s >= end)
/osnet-11/usr/src/lib/libnwam/common/
H A Dlibnwam_object.c540 struct nwam_prop_table_entry *end = cur + table.num_entries; local
544 for (; cur < end; cur++) {
742 struct nwam_prop_table_entry *end = cur + table.num_entries; local
755 for (; cur < end; cur++) {
H A Dlibnwam_util.c680 char *prefix, *end; local
685 prefixlen = strtol(prefix, &end, 10);
686 if (prefix == end || prefixlen < 0 || prefixlen > max_plen)
/osnet-11/usr/src/lib/libparted/common/libparted/arch/
H A Dsolaris.c186 * blocks at the end of the disk that Solaris loses.
502 checkswap(PedDevice* dev, diskaddr_t start, diskaddr_t end) argument
540 if (start >= p_start + p_size || end < p_start) {
558 checkdevinuse(PedDevice *dev, diskaddr_t start, diskaddr_t end, int print) argument
683 (end < slice_start)) {
784 checkmount(PedDevice* dev, diskaddr_t start, diskaddr_t end) argument
836 if (start >= p_start + p_size || end < p_start) {
1362 r1 = checkmount(part->geom.dev, part->geom.start, part->geom.end);
1363 r2 = checkswap(part->geom.dev, part->geom.start, part->geom.end);
1364 r3 = checkdevinuse(part->geom.dev, part->geom.start, part->geom.end,
[all...]
/osnet-11/usr/src/lib/libparted/common/libparted/fs/amiga/
H A Damiga.c162 int i, end; local
165 end = PED_BE32_TO_CPU (rdb[1]);
167 if (end > PED_SECTOR_SIZE_DEFAULT) end = PED_SECTOR_SIZE_DEFAULT;
169 for (i = 1; i < end; i++) sum += PED_BE32_TO_CPU (rdb[i]);
306 PedSector start, end; local
339 end = ((((PedSector) PED_BE32_TO_CPU (part->de_HighCyl))+1) * (cylblocks))-1;
342 if (start == geom->start && end == geom->end) {
/osnet-11/usr/src/lib/libparted/common/libparted/labels/
H A Ddvh.c521 PedSector start, PedSector end)
526 part = _ped_partition_alloc (disk, part_type, fs_type, start, end);
561 part->geom.start, part->geom.end);
519 dvh_partition_new(const PedDisk* disk, PedPartitionType part_type, const PedFileSystemType* fs_type, PedSector start, PedSector end) argument
H A Dpc98.c103 uint8_t end_sector; /* end sector */
104 uint8_t end_head; /* end head */
105 uint16_t end_cyl; /* end cylinder */
390 || part->geom.end != part_end) {
466 sector_to_chs (part->disk->dev, part->geom.end, &c, &h, &s);
531 const PedFileSystemType* fs_type, PedSector start, PedSector end)
536 part = _ped_partition_alloc (disk, part_type, fs_type, start, end);
570 part->geom.end);
529 pc98_partition_new( const PedDisk* disk, PedPartitionType part_type, const PedFileSystemType* fs_type, PedSector start, PedSector end) argument
/osnet-11/usr/src/lib/libcmd/common/
H A Djoin.c127 char* end; member in struct:Field_s
322 field->end = cp - 1;
405 field->end = tp;
410 field->end = cp - 1;
443 fp->fieldlen = fp->fields[n].end - cp;
481 cpmax = fp->fields[n].end + 1;
H A Dpr.c139 char *end; member in struct:_pr_::__anon1498
270 * This routine returns the number of spaces at end of field
554 if (pp->control.cur >= pp->control.end)
565 pp->control.end = pp->control.buf + z;
567 while (pp->control.cur < pp->control.end && s < e)
604 if (pp->control.cur >= pp->control.end)
615 pp->control.end = pp->control.buf + z;
617 while (pp->control.cur < pp->control.end && s < e)
/osnet-11/usr/src/lib/libdladm/common/
H A Dlibdlflow.c702 int i, end; local
706 end = 3;
709 end = 0;
715 for (i = 3; i >= end; i--) {
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_options.c516 char *end; local
552 val = strtoull(arg, &end, 0);
554 if (*end != '\0' || errno != 0 || val < 0)
568 char *end; local
595 *rval = strtoull(arg, &end, 0) * mul;
597 if ((mul > 1 && end != &arg[len - 1]) || (mul == 1 && *end != '\0') ||
619 char *end; local
647 val = strtoull(arg, &end, 0);
650 if (strcasecmp(suffix[i].name, end)
[all...]
/osnet-11/usr/src/lib/libipmp/common/
H A Dipmp_query.c242 struct timeval end; local
250 retval = ipmp_sendquery(statep, IPMP_GROUPLIST, NULL, NULL, &end);
254 retval = ipmp_readinfo(statep, IPMP_GROUPLIST, (void **)grlistpp, &end);
278 struct timeval end; local
290 retval = ipmp_sendquery(statep, IPMP_GROUPINFO, name, NULL, &end);
294 retval = ipmp_readinfo(statep, IPMP_GROUPINFO, (void **)grinfopp, &end);
298 retval = ipmp_readgroupinfo_lists(statep, *grinfopp, &end);
327 struct timeval end; local
338 retval = ipmp_sendquery(statep, IPMP_IFINFO, name, NULL, &end);
342 retval = ipmp_readinfo(statep, IPMP_IFINFO, (void **)ifinfopp, &end);
376 struct timeval end; local
1039 struct timeval end; local
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/common/disk/common/
H A Ddisk_common.c359 const char *end; local
366 end = begin + strlen(begin);
368 while (begin < end && isspace(*begin))
370 while (begin < end && isspace(*(end - 1)))
371 end--;
373 count = end - begin;
1003 * NOTE: if there is no devid, then we can end up with duplicate
/osnet-11/usr/src/lib/fm/topo/modules/i86pc/chip/common/
H A Dchip_smbios.c441 const char *end, *cp; local
446 end = begin + strlen(begin);
448 while (begin < end && isspace(*begin))
450 while (begin < end && isspace(*(end - 1)))
451 end--;
453 if (begin >= end)
458 if (cp >= end)
/osnet-11/usr/src/lib/krb5/kadm5/
H A Dalt_prof.c514 char *end, *portstr; local
517 if (*server == '[' && (end = strchr(server + 1, ']')) != NULL) {
518 portstr = (*(end + 1) == ':') ? end + 2 : NULL;
520 memmove(server, server + 1, end - (server + 1));
521 *(end - 1) = '\0';
524 end = server + strcspn(server, ":");
525 portstr = (*end == ':') ? end + 1 : NULL;
526 *end
[all...]

Completed in 63 milliseconds

1234567891011>>