equal
deleted
inserted
replaced
1465 register TUint32 look = dv << (32 - bLeft); |
1465 register TUint32 look = dv << (32 - bLeft); |
1466 iBitsLeft -= nb; |
1466 iBitsLeft -= nb; |
1467 do |
1467 do |
1468 { |
1468 { |
1469 index = (index << 1) + 1; |
1469 index = (index << 1) + 1; |
1470 index +=((look & TUint(1<<31)) != 0); |
1470 index +=((look & ((TUint32)1<<31)) != 0); |
1471 look<<=1; |
1471 look<<=1; |
1472 } while (++bitCount < nb); |
1472 } while (++bitCount < nb); |
1473 |
1473 |
1474 const TUint8* codeIdxHash = aTable.GetCodeIdxHash(); |
1474 const TUint8* codeIdxHash = aTable.GetCodeIdxHash(); |
1475 |
1475 |