Lines Matching refs:end_ptr
1390 static int drm_mode_parse_cmdline_bpp(const char *str, char **end_ptr,
1399 bpp = simple_strtol(str, end_ptr, 10);
1400 if (*end_ptr == str)
1409 static int drm_mode_parse_cmdline_refresh(const char *str, char **end_ptr,
1418 refresh = simple_strtol(str, end_ptr, 10);
1419 if (*end_ptr == str)
1488 char *end_ptr;
1490 xres = simple_strtol(str, &end_ptr, 10);
1491 if (end_ptr == str)
1494 if (end_ptr[0] != 'x')
1496 end_ptr++;
1498 str = end_ptr;
1499 yres = simple_strtol(str, &end_ptr, 10);
1500 if (end_ptr == str)
1503 remaining = length - (end_ptr - str_start);
1508 switch (end_ptr[i]) {
1522 int ret = drm_mode_parse_cmdline_extra(end_ptr + i,