Home | History | Annotate | Download | only in misc

Lines Matching defs:cp

159 	const char *cp = s;
163 major = strtol(cp, &endptr, 10);
164 if (cp == endptr || *endptr != '.')
166 cp = endptr + 1;
167 minor = strtol(cp, &endptr, 10);
168 if (cp == endptr || *endptr != '.')
170 cp = endptr + 1;
171 rev = strtol(cp, &endptr, 10);
172 if (cp == endptr)
1059 char *cp, *t;
1144 cp = parse_str;
1146 t = strchr(cp, ',');
1150 if (*cp) {
1151 if (profile_has_subsection(profile, "fs_types", cp))
1152 push_string(&list, cp);
1153 else if (strcmp(cp, "default") != 0)
1157 cp);
1160 cp = t+1;