Home
last modified time | relevance | path

Searched refs:endp (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/host-tools/ndk-stack/regex/
Dengine.c77 char *endp; /* end of string -- virtual NUL here */ member
131 char *endp; in matcher() local
171 m->endp = (char*)stop; in matcher()
181 endp = fast(m, start, stop, gf, gl); in matcher()
182 if (endp == NULL) { /* a miss */ in matcher()
195 endp = slow(m, m->coldp, stop, gf, gl); in matcher()
196 if (endp != NULL) in matcher()
198 assert(m->coldp < m->endp); in matcher()
216 dp = dissect(m, m->coldp, endp, gf, gl); in matcher()
227 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0); in matcher()
[all …]
/ndk/sources/host-tools/make-3.81/glob/
Dfnmatch.c237 const char *endp; local
239 endp = __strchrnul (n, (flags & FNM_FILE_NAME) ? '/' : '\0');
246 for (--p; n < endp; ++n)
274 for (--p; n < endp; ++n)
Dglob.c1148 char *endp = (char *) mempcpy (new, dirname, dirlen); local
1149 *endp++ = DIRSEP_CHAR;
1150 mempcpy (endp, array[i], eltlen);
/ndk/sources/host-tools/make-3.81/
Dfunction.c1196 const char *endp = begp + strlen (argv[0]) - 1; in func_if() local
1203 strip_whitespace (&begp, &endp); in func_if()
1205 if (begp <= endp) in func_if()
1207 char *expansion = expand_argument (begp, endp+1); in func_if()
1253 const char *endp = begp + strlen (*argv) - 1; in func_or() local
1259 strip_whitespace (&begp, &endp); in func_or()
1261 if (begp > endp) in func_or()
1264 expansion = expand_argument (begp, endp+1); in func_or()
1306 const char *endp = begp + strlen (*argv) - 1; in func_and() local
1309 strip_whitespace (&begp, &endp); in func_and()
[all …]