sourceBits        277 ext/hash/hash_whirlpool.c     php_hash_uint64 sourceBits = len * 8;
sourceBits        279 ext/hash/hash_whirlpool.c     int sourceGap    = (8 - ((int)sourceBits & 7)) & 7; /* space on source[sourcePos]. */
sourceBits        292 ext/hash/hash_whirlpool.c     php_hash_uint64 value = sourceBits;
sourceBits        302 ext/hash/hash_whirlpool.c     while (sourceBits > 8) {
sourceBits        329 ext/hash/hash_whirlpool.c         sourceBits -= 8;
sourceBits        335 ext/hash/hash_whirlpool.c     if (sourceBits > 0) {
sourceBits        344 ext/hash/hash_whirlpool.c     if (bufferRem + sourceBits < 8) {
sourceBits        349 ext/hash/hash_whirlpool.c         bufferBits += (int) sourceBits;
sourceBits        356 ext/hash/hash_whirlpool.c         sourceBits -= 8 - bufferRem;
sourceBits        371 ext/hash/hash_whirlpool.c         bufferBits += (int)sourceBits;