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

<<1112

/osnet-11/usr/src/lib/nsswitch/ldap/common/
H A Dgetgrent.c150 * DN part, with a ',' added to the end to indicate that it's
1609 char **gname, **passwd, **gid, *password, *end; local
1672 if (strtoul(gid[0], &end, 10) > MAXUID)
1701 /* The front end marshaller doesn't need the trailing nulls */
/osnet-11/usr/src/lib/fm/topo/modules/common/ses/common/
H A Dses.c2436 /* end indentation change */
2741 /* no matching. Add the child at the end. */
3308 hrtime_t end; local
3577 end = gethrtime();
3578 duration = end - start;
/osnet-11/usr/src/cmd/sendmail/src/
H A Dmap.c947 /* try to add a domain on the end of the name */
7589 char *end; local
7591 end = strchr(at, ']');
7592 if (end != NULL)
7602 *end = '\0';
7623 *end = ']';
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dregcomp.c116 char *end; /* End of input for compile */ member in struct:RExC_state_t
143 #define RExC_end (pRExC_state->end)
671 /* Stops at toplevel WHILEM as well as at `last'. At end *scanp is set
1983 minlen = study_chunk(pRExC_state, &first, &fake, scan + RExC_size, /* Up to end */
2491 /* Make a closing node, and hook it on the end. */
2556 FAIL("Junk on end of regexp"); /* "Can't happen". */
3730 } /* end of \blah */
4096 } /* end of namedclass \blah */
4339 ? "Overwriting end of array!\n" : "OK",
4376 "Overwriting end o
[all...]
H A Dtoke.c237 * It prints "Missing operator before end of line" if there's nothing
578 /* only continue to recharge the buffer if we're at the end
590 /* end of file. Add on the -p or -n magic */
624 /* not at end of file, so we only read another line */
834 char *end = start + len; local
835 while (start < end) {
898 * chunk, up to end of string or a backslash. It may make a new
956 * (I'm not sure whether the spurious commas at the end of lcfirst's
1168 characters are VERY literal, except for - not at the start or end
1209 } (end switc
6741 char *end; local
7635 char *end = SvPVX(stuff) + SvCUR(stuff); local
8041 char *end = pos; local
[all...]
H A Dsv.c1834 char *s, *end; local
1835 for (s = SvPVX(sv), end = s + SvCUR(sv); s < end && d < limit; s++) {
1869 if (s < end) {
2896 * UV as a string towards the end of buf, and return pointers to start and
2897 * end of it.
2944 usually end up here too.
3051 * end of the regex. If we find a '#' before we
3066 /* we end while in a comment, so we
4359 Concatenates the string onto the end o
[all...]
/osnet-11/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c398 /* Minimum amount of lookahead, except at the end of the input file.
487 /* Minimum amount of lookahead, except at the end of the input file.
1000 * necessary to put more guard bytes at the end of the window, or
1114 unsigned more; /* Amount of free space at the end of the window. */
1201 * Flush the current block, with given end-of-file flag.
1202 * IN assertion: strstart is set to the end of the current match.
1237 * at the end of the input file. We need MAX_MATCH bytes
1332 * at the end of the input file. We need MAX_MATCH bytes
1389 /* Insert in hash table all strings up to the end of the match.
1485 /* end o
3087 Bytef *end; /* one byte after sliding window */ member in struct:inflate_blocks_state
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dlocaltime.c53 * <std><offset1>[<dst>[<offset2>]][,<start>[/<time>],<end>[/<time>]
313 rule_t end; member in struct:__anon1410
1373 pdaylight.rules[1] = (rule_t *)&__usa_rules[i].end;
1789 sp->chars[i] = '\0'; /* ensure '\0' at end */
2412 pdaylight.rules[1] = (rule_t *)&__usa_rules[i].end;
2799 * from old tzname[] addr may end up with accessing a stale data(freed area).
/osnet-11/usr/src/lib/libsqlite/tool/
H A Dlemon.c169 ** symbols which are allowed to immediately follow the end of the rule.
1260 ** splits occur at a space, if there is a space available near the end
1273 int end, restart, base; local
1297 end = restart = findbreak(&errmsg[base],0,availablewidth);
1300 fprintf(stdout,"%s%.*s\n",prefix,end,&errmsg[base]);
1667 char *sv = 0, *end; local
1696 dv = strtod(cp,&end);
1697 if( *end ){
1700 errline(i,((unsigned long)end)-(unsigned long)argv[i],err);
1707 lv = strtol(cp,&end,
[all...]
/osnet-11/usr/src/lib/libstmf/common/
H A Dstmf.c3734 char *end; local
3746 *num = strtoull(value, &end, 10);
3760 if (*end == '.') {
3761 double fval = strtod(value, &end);
3763 if ((shift = strToShift(end)) == -1) {
3775 if ((shift = strToShift(end)) == -1) {
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_dataset.c4179 char *cp, *end; local
4252 *ridp = strtoull(cp, &end, 10);
4257 if (errno != 0 || *end != '\0')
4281 uid_t id = strtoul(cp, &end, 10);
4285 if (*end != '\0')
H A Dlibzfs_sendrecv.c1594 /* write end record */
1655 * write final end record. NB: want to do this even if
2459 * Read in the end record and verify checksum.
2895 const char *end; local
2898 end = strrchr(top_ds, '@');
2899 npos = (end == NULL ? strlen(top_ds) : end - top_ds);
3026 const char *end = strchr(&chopprefix[1], '/'); local
3027 if (end == NULL)
3028 end
[all...]
/osnet-11/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c96 #endif /* end WIN32 */
392 const unsigned char *scan, *end; local
394 end = base + len;
395 for (scan = base; scan < end; ++scan) {
399 if (++scan == end || *scan < 0x80 || *scan > 0xBF)
404 /* if scan >= end, then this is a 8859-1 string. */
405 return (scan >= end);
418 const unsigned char *scan, *end; local
421 end = base + len;
430 for (scan = base; scan < end
[all...]
/osnet-11/usr/src/lib/libscf/common/
H A Dlowlevel.c273 goto end;
278 goto end;
282 end:
584 uint8_t *end = in + in_sz; local
590 while (in < end) {
7190 * We only allow partial matches anchored on the end of

Completed in 138 milliseconds

<<1112