I was browsing through some codes at the end of the contest and found out that many people were using functions like __gcd(int,int) . What are these functions ? Similar functions include
__builtin_popcount(int)
__builtin_ctz(int)
__builtin_clz(int)
Where can I study about these functions ? Googling it didn't help much.

std::__gcdis from libstdc++ – v154c1 Nov 18 '12 at 19:12