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

/illumos-gate/usr/src/lib/fm/libdiagcode/common/
H A Ddiagcode_test.c200 char *beginp; local
215 beginp = argv[2];
217 key[nel++] = beginp;
218 if ((endp = strchr(beginp, ' ')) != NULL) {
220 beginp = endp;
354 char *beginp; local
364 beginp = &linebuf[6];
366 argv[argc++] = beginp;
367 if ((endp = strchr(beginp, ':')) != NULL) {
369 beginp
[all...]
H A Ddiagcode.c483 char *beginp; local
524 beginp = linebuf;
527 while (*beginp && isspace(*beginp))
528 beginp++;
529 if (*beginp == '\0') {
542 for (endp = beginp; *endp && !isspace(*endp); endp++)
546 if ((key[nel++] = strdup(beginp)) == NULL) {
553 beginp = endp;
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dengine.c83 const char *beginp; /* start of string -- virtual NUL precedes */ member in struct:match
240 m->beginp = start;
606 if ((sp == m->beginp && !(m->eflags&REG_NOTBOL)) ||
620 if (((sp == m->beginp && !(m->eflags&REG_NOTBOL)) ||
623 (sp > m->beginp && !ISWORD(*(sp-1)))) &&
633 (sp > m->beginp && ISWORD(*(sp-1)))) {
672 assert(stop - m->beginp >= len);
777 if (start == m->beginp)
878 if (start == m->beginp)

Completed in 71 milliseconds