Lines Matching full:endp
1300 char *endp;
1319 for (i = 0, p = arg; i < pipe->num_cons; ++i, p = endp + 1) {
1320 endp = strpbrk(p, ",@:");
1321 if (!endp)
1324 pipe->cons[i] = strndup(p, endp - p);
1326 if (*endp != ',')
1334 if (*endp == '@') {
1335 arg = endp + 1;
1336 pipe->crtc_id = strtoul(arg, &endp, 10);
1338 if (*endp != ':')
1341 arg = endp + 1;
1352 pipe->vrefresh = strtoul(p + 1, &endp, 10);
1353 p = endp;
1497 char *endp;
1500 id = strtoul(pipe->cons[i], &endp, 10);
1501 if (endp == pipe->cons[i]) {