Lines Matching refs:bp
91 char const *ap, *bp; in strnatcmp_ex() local
101 bp = b; in strnatcmp_ex()
103 ca = *ap; cb = *bp; in strnatcmp_ex()
110 while (cb == '0' && (bp+1 < bend) && isdigit((int)(unsigned char)*(bp+1))) { in strnatcmp_ex()
111 cb = *++bp; in strnatcmp_ex()
122 cb = *++bp; in strnatcmp_ex()
130 result = compare_left(&ap, aend, &bp, bend); in strnatcmp_ex()
132 result = compare_right(&ap, aend, &bp, bend); in strnatcmp_ex()
136 else if (ap == aend && bp == bend) in strnatcmp_ex()
141 else if (bp == bend) in strnatcmp_ex()
145 ca = *ap; cb = *bp; in strnatcmp_ex()
159 ++ap; ++bp; in strnatcmp_ex()
160 if (ap >= aend && bp >= bend) in strnatcmp_ex()
166 else if (bp >= bend) in strnatcmp_ex()
169 ca = *ap; cb = *bp; in strnatcmp_ex()