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

  /external/flac/libFLAC/
bitwriter.c 48 /* WATCHOUT: if you change this you must also change the following #defines down to SWAP_BE_WORD_TO_HOST below to match */
53 /* SWAP_BE_WORD_TO_HOST swaps bytes in a uint32_t (which is always big-endian) if necessary to match host byte order */
55 #define SWAP_BE_WORD_TO_HOST(x) (x)
57 #define SWAP_BE_WORD_TO_HOST(x) ENDSWAP_32(x)
251 bw->buffer[bw->words] = SWAP_BE_WORD_TO_HOST(bw->accum << (FLAC__BITS_PER_WORD-bw->bits));
286 bw->buffer[bw->words++] = SWAP_BE_WORD_TO_HOST(bw->accum);
332 bw->buffer[bw->words++] = SWAP_BE_WORD_TO_HOST(bw->accum);
338 bw->buffer[bw->words++] = SWAP_BE_WORD_TO_HOST(val);
555 bw->buffer[bw->words++] = SWAP_BE_WORD_TO_HOST(bw->accum);
589 bw->buffer[bw->words++] = SWAP_BE_WORD_TO_HOST(bw->accum)
    [all...]
bitreader.c 54 /* SWAP_BE_WORD_TO_HOST swaps bytes in a uint32_t (which is always big-endian) if necessary to match host byte order */
56 #define SWAP_BE_WORD_TO_HOST(x) (x)
58 #define SWAP_BE_WORD_TO_HOST(x) ENDSWAP_32(x)
156 br->buffer[br->words] = SWAP_BE_WORD_TO_HOST(br->buffer[br->words]);
180 br->buffer[start] = SWAP_BE_WORD_TO_HOST(br->buffer[start]);

Completed in 452 milliseconds