Home | History | Annotate | Download | only in indent

Lines Matching refs:curr

262 debug_ps_bool_member(const char *name, bool prev, bool curr)
264 if (!state.ps_first && curr != prev) {
265 char diff = " -+x"[(prev ? 1 : 0) + (curr ? 2 : 0)];
268 debug_println("\t\t%s: [%c]", name, curr ? 'x' : ' ');
272 debug_ps_int_member(const char *name, int prev, int curr)
274 if (!state.ps_first && curr != prev)
275 debug_println("\t\t%s: %d -> %d", name, prev, curr);
277 debug_println("\t\t%s: %d", name, curr);
281 debug_ps_enum_member(const char *name, const char *prev, const char *curr)
283 if (!state.ps_first && strcmp(prev, curr) != 0)
284 debug_println("\t\t%s: %s -> %s", name, prev, curr);
286 debug_println("\t\t%s: %s", name, curr);