Home | History | Annotate | Download | only in misc

Lines Matching defs:cp

150 	const char *cp = s;
154 major = strtol(cp, &endptr, 10);
155 if (cp == endptr || *endptr != '.')
157 cp = endptr + 1;
158 minor = strtol(cp, &endptr, 10);
159 if (cp == endptr || *endptr != '.')
161 cp = endptr + 1;
162 rev = strtol(cp, &endptr, 10);
163 if (cp == endptr)
978 char *cp, *t;
1059 cp = parse_str;
1061 t = strchr(cp, ',');
1065 if (*cp) {
1066 if (profile_has_subsection(profile, "fs_types", cp))
1067 push_string(&list, cp);
1068 else if (strcmp(cp, "default") != 0)
1072 cp);
1075 cp = t+1;
1077 cp = "";