it is a hook action. nothing hook into yet.
for example if you add something like to your custom function
function hello_text() {
echo 'hello world';
}
//here's the hook come in handy
add_action('bp_head_before_title','hello_text');
then the 'hello world' text will appeared in before <title> without touching the header.php