Lines Matching refs:endp

97 	u_char *cp, *sp2, *startp, *endp;
223 endp = startp + rrecp->r_size - 1;
227 if (!getword_str(buf2, sizeof buf2, &startp, endp))
242 if (!getword_str(buf2, sizeof buf2, &startp, endp))
255 endp))
275 soanum = getnum_str(&startp, endp);
291 n = getnum_str(&startp, endp);
296 if (!getword_str(buf2, sizeof buf2, &startp, endp))
305 n = getnum_str(&startp, endp);
311 n = getnum_str(&startp, endp);
317 n = getnum_str(&startp, endp);
323 if (!getword_str(buf2, sizeof buf2, &startp, endp))
332 n = getnum_str(&startp, endp);
339 endp))
353 if (!getword_str(buf2, sizeof buf2, &startp, endp))
361 if (!getword_str(buf2, sizeof buf2, &startp, endp))
371 while (getword_str(buf2, sizeof buf2, &startp, endp)) {
391 &startp, endp)) < 0)
404 &startp, endp)) < 0) {
420 endp)) < 0)
432 endp)) < 0)
441 endp)) < 0)
477 &startp, endp)) < 0)
485 n = getnum_str(&startp, endp);
491 n = getnum_str(&startp, endp);
497 if (!getword_str(buf2, sizeof buf2, &startp, endp))
516 endp))
526 if (!getword_str(buf2, sizeof buf2, &startp, endp))
536 n = getnum_str(&startp, endp);
542 if (!getword_str(buf2, sizeof buf2, &startp, endp))
551 &startp, endp)) < 0)
564 n = gethexnum_str(&startp, endp);
570 n = getnum_str(&startp, endp);
576 n = getnum_str(&startp, endp);
583 &startp, endp)) < 0)
599 if (!getword_str(buf2, sizeof buf2, &startp, endp))
610 endp))
628 n = getnum_str(&startp, endp);
634 n = getnum_str(&startp, endp);
640 n = getnum_str(&startp, endp);
647 &startp, endp)) < 0)
657 if (!getword_str(buf2, sizeof buf2, &startp, endp))
668 n = getnum_str(&startp, endp);
674 n = getnum_str(&startp, endp);
681 &startp, endp)) < 0) {
692 &startp, endp)) < 0) {
703 &startp, endp)) < 0) {
713 if (!getword_str(buf2, sizeof buf2, &startp, endp))
741 getword_str(char *buf, int size, u_char **startpp, u_char *endp) {
745 for (cp = buf; *startpp <= endp; ) {
771 getstr_str(char *buf, int size, u_char **startpp, u_char *endp) {
779 for (cp = buf; *startpp <= endp; ) {
849 gethexnum_str(u_char **startpp, u_char *endp) {
854 if (*startpp + 2 >= endp || strncasecmp((char *)*startpp, "0x", 2) != 0)
855 return getnum_str(startpp, endp);
857 for (n = 0; *startpp <= endp; ) {
868 while ((*startpp <= endp) &&
897 getnum_str(u_char **startpp, u_char *endp) {
902 for (n = 0; *startpp <= endp; ) {
913 while ((*startpp <= endp) &&