Lines Matching refs:end_ptr
1936 static int drm_mode_parse_cmdline_bpp(const char *str, char **end_ptr,
1945 bpp = simple_strtol(str, end_ptr, 10);
1946 if (*end_ptr == str)
1955 static int drm_mode_parse_cmdline_refresh(const char *str, char **end_ptr,
1964 refresh = simple_strtol(str, end_ptr, 10);
1965 if (*end_ptr == str)
2034 char *end_ptr;
2036 xres = simple_strtol(str, &end_ptr, 10);
2037 if (end_ptr == str)
2040 if (end_ptr[0] != 'x')
2042 end_ptr++;
2044 str = end_ptr;
2045 yres = simple_strtol(str, &end_ptr, 10);
2046 if (end_ptr == str)
2049 remaining = length - (end_ptr - str_start);
2054 switch (end_ptr[i]) {
2068 int ret = drm_mode_parse_cmdline_extra(end_ptr + i,