I just saw this in some code I have to work on:
Code:
chunkLength = (len+3)&~3
I just don't understand what it tries to do. What would be the value chunkLength if len is equal to 10 for example?

PS: Both, chunkLength and len are integers.