• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/

Lines Matching refs:bp

114 	char *bp;
117 bp = buf;
125 if (*bp == '\0')
128 if (*bp++ == ':')
134 for (cp = cap; *cp == *bp && *bp != '\0'; cp++, bp++)
138 if (*bp == '@')
141 if (*bp != '\0' && *bp != ':')
143 return(bp);
145 if (*bp != type)
147 bp++;
148 return (*bp == '@' ? NULL : bp);
280 char *b_end, *bp;
292 bp = buf;
301 if (bp >= b_end) {
318 bp = buf;
321 c = *bp++;
536 cdbget(DB *capdbp, char **bp, const char *name)
566 *bp = (char *)data.data + 1;
578 const char *np, *bp;
586 bp = buf;
594 if (*bp == '|' || *bp == ':' || *bp == '\0')
599 if (*bp++ != *np++)
605 bp--; /* a '|' or ':' may have stopped the match */
607 if (*bp == '\0' || *bp == ':')
610 if (*bp++ == '|')
649 cgetnext(char **bp, char **db_array)
768 status = getent(bp, &dummy, db_array, -1, buf, 0, NULL, loc);
790 char *bp, *mp;
797 bp = cgetcap(buf, cap, '=');
798 if (bp == NULL)
812 while (*bp != ':' && *bp != '\0') {
819 if (*bp == '^') {
820 bp++;
821 if (*bp == ':' || *bp == '\0')
823 if (*bp == '?') {
825 bp++;
827 *mp++ = *bp++ & 037;
828 } else if (*bp == '\\') {
829 bp++;
830 if (*bp == ':' || *bp == '\0')
832 if ('0' <= *bp && *bp <= '7') {
838 n = n * 8 + (*bp++ - '0');
839 } while (--i && '0' <= *bp && *bp <= '7');
842 else switch (*bp++) {
869 *mp++ = *(bp-1);
873 *mp++ = *bp++;
917 char *bp, *mp;
924 if ((bp = cgetcap(buf, cap, '=')) == NULL)
938 while (*bp != ':' && *bp != '\0') {
945 *mp++ = *bp++;
986 char *bp;
991 bp = cgetcap(buf, cap, '#');
992 if (bp == NULL)
1001 if (*bp == '0') {
1002 bp++;
1003 if (*bp == 'x' || *bp == 'X') {
1004 bp++;
1016 if ('0' <= *bp && *bp <= '9')
1017 digit = *bp - '0';
1018 else if ('a' <= *bp && *bp <= 'f')
1019 digit = 10 + *bp - 'a';
1020 else if ('A' <= *bp && *bp <= 'F')
1021 digit = 10 + *bp - 'A';
1029 bp++;