Lines Matching defs:pfx
15 #define str_has_pfx(str, pfx) \
16 (strncmp(str, pfx, __builtin_constant_p(pfx) ? sizeof(pfx) - 1 : strlen(pfx)) == 0)
349 /* Matches a string of form '<pfx>[^=]=.*' and returns it's suffix.
355 * <pfx> __COUNTER__ '='
365 static const char *skip_dynamic_pfx(const char *s, const char *pfx)
369 if (strncmp(s, pfx, strlen(pfx)) != 0)
371 msg = s + strlen(pfx);