Searched refs:startp (Results 1 - 25 of 32) sorted by relevance

12

/opensolaris-onvv-gate/usr/src/cmd/man/src/util/instant.src/tptregexp/
H A Dtptregexp.h11 char *startp[NSUBEXP]; member in struct:regexp
H A Dregsub.c71 } else if (prog->startp[no] != NULL && prog->endp[no] != NULL) {
72 len = prog->endp[no] - prog->startp[no];
73 (void) strncpy(dst, prog->startp[no], len);
H A Dtry.c80 if (r->startp[i] != NULL && r->endp[i] != NULL)
H A Dregexp.c684 static char **regstartp; /* Pointer to startp array. */
775 regstartp = prog->startp;
778 sp = prog->startp;
785 prog->startp[0] = string;
881 * Don't set startp if some later
/opensolaris-onvv-gate/usr/src/uts/common/inet/ip/
H A Dipcsum.c76 uint8_t *startp = mp->b_rptr + offset; local
93 if ((endp - startp) < 10) {
95 while ((endp - startp) >= 2) {
97 sum += U16_FETCH(startp);
98 startp += 2;
100 if ((endp - startp) >= 1) {
103 sum += U8_FETCH_FIRST(startp);
109 if ((uint32_t)startp & 0x1) {
112 startp++;
113 sum = (sum << 8) + PREV_ONE(startp);
[all...]
/opensolaris-onvv-gate/usr/src/lib/libresolv2/common/resolv/
H A Dres_mkupdate.c84 u_char *cp, *sp2, *startp, *endp; local
206 startp = rrecp->r_data;
207 endp = startp + rrecp->r_size - 1;
211 if (!getword_str(buf2, sizeof buf2, &startp, endp))
226 if (!getword_str(buf2, sizeof buf2, &startp, endp))
238 if (!getword_str(buf2, sizeof buf2, &startp,
250 while (isspace(*startp) || !*startp)
251 startp++;
252 if (*startp
[all...]
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_http.c127 * Return the length of the initial string starting with "startp" and
133 printable(const char *startp, const char *endp) argument
135 const char *p = startp;
140 return (p - startp);
/opensolaris-onvv-gate/usr/src/cmd/ldmad/
H A Dmdesc_mutable.h55 _type *startp; \
64 #define CHAIN_START(_name) ((_name).startp)
72 if ((_chain).startp == NULL) { \
73 (_chain).startp = (_nodep); \
H A Dmdesc_lib.c353 mdp->string_list.startp = msp->nextp;
367 mdp->data_block_list.startp = mdbp->nextp;
/opensolaris-onvv-gate/usr/src/lib/libsec/common/
H A Daclsort.c162 aclent_t *startp; /* start of the desired entry type */ local
168 startp = tp;
173 qsort(startp, howmany, sizeof (aclent_t),
/opensolaris-onvv-gate/usr/src/uts/common/cpr/
H A Dcpr_stat.c275 cpr_time_t *startp, *shdnp, *endp; local
277 startp = &cpr_term.tm_cprboot_start;
281 cb_time = endp->tv_sec - startp->tv_sec;
284 startp->tv_sec = endp->tv_sec - cb_time;
293 pwroff_time = startp->tv_sec - shdnp->tv_sec - min_promtime;
297 pop->tv_sec = startp->tv_sec - min_promtime;
/opensolaris-onvv-gate/usr/src/cmd/bnu/
H A Dcntrl.c252 long startp; /* checkpoint restart point */ local
493 startp = stbuf.st_size - (stbuf.st_size % BUFSIZ);
494 if((stbuf.st_size >= 0) && (startp < 0))
495 startp = 0;
497 if(startp)
499 if(startp < 0)
500 sprintf(tbuf,"start=0x%lx", startp);
502 sprintf(tbuf,"start=%ld", startp);
507 sprintf(fsize, "0x%lx", startp);
509 if (lseek(fileno(fp), startp,
[all...]
/opensolaris-onvv-gate/usr/src/cmd/filebench/common/
H A Dauto_comp.c79 * startp - the start position of the string in the user input buffer
94 const char *startp; member in struct:ac_str
723 input->strs[i].startp = NULL;
745 input->strs[i].startp = p;
751 input->strs[i].startp = p;
798 * items. Try to find the last one and move startp to point to it.
800 for (p = acstr->endp; p >= acstr->startp && *p != ATTR_LIST_SEP; p--) {}
807 acstr->startp = p + 1;
810 } else if (p > acstr->startp) {
812 * Found ',' between starp and endp, move startp pointe
[all...]
/opensolaris-onvv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dan_to_ln.c208 char *regexp, *startp, *endp = 0; local
223 startp = (*contextp) + 1;
224 endp = strchr(startp, ')');
227 regexlen = (size_t) (endp - startp);
231 strncpy(regexp, startp, regexlen);
265 endp = startp;
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/
H A Dregexp.h32 I32 *startp; member in struct:regexp
H A Dpp_hot.c1279 rx->startp[0] = -1;
1284 rx->endp[0] = rx->startp[0] = mg->mg_len;
1287 rx->endp[0] = rx->startp[0] = mg->mg_len;
1306 if (global && rx->startp[0] != -1) {
1357 if ((rx->startp[i] != -1) && rx->endp[i] != -1 ) {
1358 len = rx->endp[i] - rx->startp[i];
1359 s = rx->startp[i] + truebase;
1360 if (rx->endp[i] < 0 || rx->startp[i] < 0 ||
1377 if (rx->startp[0] != -1) {
1379 if (rx->startp[
[all...]
H A Dmg.c434 (s = rx->startp[paren]) != -1 &&
478 (s1 = rx->startp[paren]) != -1 &&
521 if (rx->startp[0] != -1) {
522 i = rx->startp[0];
726 (s1 = rx->startp[paren]) != -1 &&
779 if ((s = rx->subbeg) && rx->startp[0] != -1) {
780 i = rx->startp[0];
/opensolaris-onvv-gate/usr/src/cmd/fs.d/cachefs/fsck/
H A Dfsck.c1326 struct attrcache_index *startp = NULL; local
1392 startp = (struct attrcache_index *)(ahp + 1);
1393 bitp = (uchar_t *)((char *)startp + offlen);
1416 aip = startp + index;
1579 (startp[index].ach_written == 0)) {
1590 aip = startp + index;
1655 if (startp) {
1658 aip = startp + index;
/opensolaris-onvv-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Doid_ops.c307 unsigned char *cp, *bp, *startp; local
339 startp = bp;
388 bp = startp;
/opensolaris-onvv-gate/usr/src/lib/libgss/
H A Doid_ops.c329 char *cp, *bp, *startp; local
361 startp = bp;
409 bp = startp;
/opensolaris-onvv-gate/usr/src/uts/sun4u/starfire/io/
H A Didn_smr.c1804 int startp, starts; local
1809 p = startp = SMR_SLABPOOL_HASH(domid);
1813 while ((nextp != startp) && !foundone) {
1889 int startp, starts; local
1894 p = startp = SMR_SLABPOOL_HASH(domid);
1897 while ((nextp != startp) && !foundit) {
/opensolaris-onvv-gate/usr/src/cmd/ptools/pmap/
H A Dpmap.c1302 char *startp = input_str; local
1320 if (startp != NULL) {
1325 if ((*startp != '\0') && sscanf(startp, "%lx", &s) != 1)
/opensolaris-onvv-gate/usr/src/uts/common/io/
H A Dldterm.c2195 uchar_t *startp; local
2208 startp = bp->b_datap->db_base;
2241 u8[0] = *startp;
2244 startp++;
2245 if (startp >= bp->b_datap->db_lim) {
2248 startp =
2257 u8[i] = *startp;
2274 ++startp;
2275 if (startp >= bp->b_datap->db_lim) {
2278 startp
[all...]
/opensolaris-onvv-gate/usr/src/uts/i86pc/io/apix/
H A Dapix_utils.c221 apix_vector_t *vecp, *startp = NULL; local
273 startp = vecp;
276 return (startp);
/opensolaris-onvv-gate/usr/src/lib/libkmf/libkmf/common/
H A Dgeneralop.c1574 char *cp, *bp, *startp; local
1592 startp = bp;
1634 bp = startp;

Completed in 306 milliseconds

12