Lines Matching defs:cp
129 char* cp = buf;
130 if (*cp == '#') continue;
132 if (isdigit(*cp)) {
133 while (isspace(*cp)) cp += 1;
134 int32_t threadId = strtoul(cp, &cp, 0);
137 indentEnd = cp;
139 if (indentEnd - cp + 1 > maxFrames) maxFrames = indentEnd - cp + 1;
166 char* cp = buf;
169 if (*cp == '#') continue;
172 if (!isdigit(*cp)) {
179 time = strtoul(cp, &cp, 0);
180 while (isspace(*cp)) cp += 1;
181 threadId = strtoul(cp, &cp, 0);
182 cp += 1;
192 save_cp = cp;
193 while (isspace(*cp)) {
194 cp += 1;
196 indent = cp - save_cp + 1;
200 save_cp = cp;
201 while (*cp != '\n') cp += 1;
204 cp -= 1;
205 while (isspace(*cp)) cp -= 1;
206 cp += 1;
207 len = cp - save_cp;
214 cp = strchr(save_cp, '.');
215 if (cp) {
216 len = cp - save_cp;
218 save_cp = cp + 1;
219 cp = strchr(save_cp, ' ');
220 if (cp == nullptr) cp = strchr(save_cp, '\n');
221 if (cp && cp > save_cp) {
222 len = cp - save_cp;
224 save_cp = cp + 1;
225 cp = strchr(save_cp, ' ');
226 if (cp == nullptr) cp = strchr(save_cp, '\n');
227 if (cp && cp > save_cp) {
228 len = cp - save_cp;