Searched defs:sptr (Results 1 - 3 of 3) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/win32/
H A Dsupport.cpp20 int asprintf(char **sptr, const char *__restrict format, ...) argument
25 result = vasprintf(sptr, format, ap);
31 // a pointer to a malloc'd string in *sptr.
32 // If return >= 0, use free to delete *sptr.
33 int vasprintf( char **sptr, const char *__restrict format, va_list ap ) argument
35 *sptr = NULL;
51 *sptr = p;
/ndk/sources/host-tools/make-3.81/
H A Dvariable.c374 char *sptr;
377 sptr = value;
380 while ((sptr = strchr (sptr, '$')))
383 sptr++;
392 sptr = value;
395 while (*sptr)
397 if (*sptr == '$')
404 *nptr++ = *sptr;
406 sptr
370 char *sptr; local
[all...]
/ndk/sources/host-tools/nawk-20071023/
H A Drun.c1747 char *sptr, *pb, *q; local
1767 sptr = t;
1768 adjbuf(&buf, &bufsz, 1+patbeg-sptr, recsize, 0, "sub");
1770 while (sptr < patbeg)
1771 *pb++ = *sptr++;
1772 sptr = getsval(y);
1773 while (*sptr != 0) {
1775 if (*sptr == '\\') {
1776 backsub(&pb, &sptr);
1777 } else if (*sptr
1808 char *rptr, *sptr, *t, *pb, *q; local
1907 char *pb = *pb_ptr, *sptr = *sptr_ptr; local
[all...]

Completed in 244 milliseconds