HomeSort by relevance Sort by last modified time
    Searched refs:NUMBER_OF_BIT_IN_WORD (Results 1 - 2 of 2) sorted by null

  /external/aac/libAACdec/src/
aacdec_hcr_types.h 133 #define NUMBER_OF_BIT_IN_WORD 32
301 UINT pSegmentBitfield[((1024>>1)/NUMBER_OF_BIT_IN_WORD+1)];
302 UINT pCodewordBitfield[((1024>>1)/NUMBER_OF_BIT_IN_WORD+1)];
aacdec_hcrs.cpp 190 if ( codewordInSet > NUMBER_OF_BIT_IN_WORD ) { /* more codewords than number of bits => fill ones */
193 codewordInSet -= NUMBER_OF_BIT_IN_WORD; /* subtract number of bits */
197 for (remainingCodewordsInSet = codewordInSet; remainingCodewordsInSet < NUMBER_OF_BIT_IN_WORD ; remainingCodewordsInSet++ ) {
198 tempWord = tempWord & ~(1 << (NUMBER_OF_BIT_IN_WORD-1-remainingCodewordsInSet)); /* set a zero at bit number (NUMBER_OF_BIT_IN_WORD-1-i) in tempWord */
233 for ( bitInWord = NUMBER_OF_BIT_IN_WORD; bitInWord > 0; bitInWord-- ) {
252 segmentOffset += 1; /* add NUMBER_OF_BIT_IN_WORD times one */
254 codewordOffset += 1; /* add NUMBER_OF_BIT_IN_WORD times one */
260 segmentOffset += NUMBER_OF_BIT_IN_WORD; /* add NUMBER_OF_BIT_IN_WORD at once *
    [all...]

Completed in 82 milliseconds