Home | History | Annotate | Download | only in drm

Lines Matching defs:end_ptr

1439 static int drm_mode_parse_cmdline_bpp(const char *str, char **end_ptr,
1448 bpp = simple_strtol(str, end_ptr, 10);
1449 if (*end_ptr == str)
1458 static int drm_mode_parse_cmdline_refresh(const char *str, char **end_ptr,
1467 refresh = simple_strtol(str, end_ptr, 10);
1468 if (*end_ptr == str)
1537 char *end_ptr;
1539 xres = simple_strtol(str, &end_ptr, 10);
1540 if (end_ptr == str)
1543 if (end_ptr[0] != 'x')
1545 end_ptr++;
1547 str = end_ptr;
1548 yres = simple_strtol(str, &end_ptr, 10);
1549 if (end_ptr == str)
1552 remaining = length - (end_ptr - str_start);
1557 switch (end_ptr[i]) {
1571 int ret = drm_mode_parse_cmdline_extra(end_ptr + i,