For AMD's PAL library, the style guidelines require each parameter in a function definition to occupy a separate line.
For example:
void SomeFunction(
int param)
{
}
void SomeOtherFunction(
int param,
bool cond)
{
}
There does not seem to be any configuration for clang-format to achieve this style.