The abbrevations on the left are registers. That is, specific locations in the memory of the processor. The Bxxxxxxxx notation is documented here: http://arduino.cc/en/Reference/Byte, and the 0x is a hexadecimal formatter.
These are called InterruptServiceRoutines and is just some predefined handlers for events. They, as the registers, have a fixed location in processor memory.
ISRs should and must be used with caution.
I'm sure this was poorly explained, but feel free to google the terms and names for further knowledge.
If you read the ATMEL DATASHEETS about the chips we are using... you will find references.
As mentioned... it's about the stuff that is "behind the pretty curtains" that ARDUINO is trying to have you not worry about. Once you have a good understanding of the chip from reading the DATASHEET though... then this stuff is there for you to play with.