HomeSort by: relevance | last modified time | path
    Searched defs:BIT_highbit32 (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v03.c 291 MEM_STATIC unsigned BIT_highbit32 (U32 val)
337 bitD->bitsConsumed = 8 - BIT_highbit32(contain32);
363 bitD->bitsConsumed = 8 - BIT_highbit32(contain32);
1091 tableDecode[i].nbBits = (BYTE) (tableLog - BIT_highbit32 ((U32)nextState) );
1534 tableLog = BIT_highbit32(weightTotal) + 1;
1539 U32 verif = 1 << BIT_highbit32(rest);
1540 U32 lastWeight = BIT_highbit32(rest) + 1;
zstd_v02.c 289 MEM_STATIC unsigned BIT_highbit32 (U32 val)
335 bitD->bitsConsumed = 8 - BIT_highbit32(contain32);
361 bitD->bitsConsumed = 8 - BIT_highbit32(contain32);
1091 tableDecode[i].nbBits = (BYTE) (tableLog - BIT_highbit32 ((U32)nextState) );
1538 tableLog = BIT_highbit32(weightTotal) + 1;
1543 U32 verif = 1 << BIT_highbit32(rest);
1544 U32 lastWeight = BIT_highbit32(rest) + 1;
zstd_v04.c 568 MEM_STATIC unsigned BIT_highbit32 (U32 val)
613 bitD->bitsConsumed = 8 - BIT_highbit32(contain32);
633 bitD->bitsConsumed = 8 - BIT_highbit32(contain32);
1074 tableDecode[i].nbBits = (BYTE) (tableLog - BIT_highbit32 ((U32)nextState) );
1693 tableLog = BIT_highbit32(weightTotal) + 1;
1698 U32 verif = 1 << BIT_highbit32(rest);
1699 U32 lastWeight = BIT_highbit32(rest) + 1;

Completed in 33 milliseconds