Lines Matching refs:endp

84 	u_char *cp, *sp2, *startp, *endp;
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))
239 endp))
259 soanum = getnum_str(&startp, endp);
275 n = getnum_str(&startp, endp);
280 if (!getword_str(buf2, sizeof buf2, &startp, endp))
289 n = getnum_str(&startp, endp);
295 n = getnum_str(&startp, endp);
301 n = getnum_str(&startp, endp);
307 if (!getword_str(buf2, sizeof buf2, &startp, endp))
316 n = getnum_str(&startp, endp);
323 endp))
337 if (!getword_str(buf2, sizeof buf2, &startp, endp))
345 if (!getword_str(buf2, sizeof buf2, &startp, endp))
355 while (getword_str(buf2, sizeof buf2, &startp, endp)) {
375 &startp, endp)) < 0)
388 &startp, endp)) < 0) {
404 endp)) < 0)
416 endp)) < 0)
425 endp)) < 0)
458 &startp, endp)) < 0)
466 n = getnum_str(&startp, endp);
472 n = getnum_str(&startp, endp);
478 if (!getword_str(buf2, sizeof buf2, &startp, endp))
497 endp))
507 if (!getword_str(buf2, sizeof buf2, &startp, endp))
517 n = getnum_str(&startp, endp);
523 if (!getword_str(buf2, sizeof buf2, &startp, endp))
532 &startp, endp)) < 0)
544 n = gethexnum_str(&startp, endp);
550 n = getnum_str(&startp, endp);
556 n = getnum_str(&startp, endp);
563 &startp, endp)) < 0)
579 if (!getword_str(buf2, sizeof buf2, &startp, endp))
590 endp))
608 n = getnum_str(&startp, endp);
614 n = getnum_str(&startp, endp);
620 n = getnum_str(&startp, endp);
627 &startp, endp)) < 0)
637 if (!getword_str(buf2, sizeof buf2, &startp, endp))
648 n = getnum_str(&startp, endp);
654 n = getnum_str(&startp, endp);
661 &startp, endp)) < 0) {
672 &startp, endp)) < 0) {
683 &startp, endp)) < 0) {
693 if (!getword_str(buf2, sizeof buf2, &startp, endp))
721 getword_str(char *buf, int size, u_char **startpp, u_char *endp) {
725 for (cp = buf; *startpp <= endp; ) {
751 getstr_str(char *buf, int size, u_char **startpp, u_char *endp) {
759 for (cp = buf; *startpp <= endp; ) {
829 gethexnum_str(u_char **startpp, u_char *endp) {
834 if (*startpp + 2 >= endp || strncasecmp((char *)*startpp, "0x", 2) != 0)
835 return getnum_str(startpp, endp);
837 for (n = 0; *startpp <= endp; ) {
848 while ((*startpp <= endp) &&
877 getnum_str(u_char **startpp, u_char *endp) {
882 for (n = 0; *startpp <= endp; ) {
893 while ((*startpp <= endp) &&