Lines Matching refs:eptr
148 char *eptr;
170 eptr = ptr;
171 while (*sptr && *eptr && *sptr++ == *eptr++)
173 if (*sptr == '\0' && *eptr == '\0')
175 /* strings didn't match, advance eptr to end of string */
176 while (*eptr)
177 eptr++;
178 eptr++; /* move past '\0' */
179 while ((uintptr_t)eptr % MINPTR_ALIGN)
180 eptr++;
182 ptrp = (char **)(void *)eptr;