Searched refs:SWAP_BE_WORD_TO_HOST (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dbitwriter.c56 /* WATCHOUT: if you change this you must also change the following #defines down to SWAP_BE_WORD_TO_HOST below to match */
62 /* SWAP_BE_WORD_TO_HOST swaps bytes in a bwword (which is always big-endian) if necessary to match host byte order */
64 #define SWAP_BE_WORD_TO_HOST(x) (x) macro
67 #define SWAP_BE_WORD_TO_HOST(x) local_swap32_(x) macro
69 #define SWAP_BE_WORD_TO_HOST(x) ntohl(x) macro
286 bw->buffer[bw->words] = SWAP_BE_WORD_TO_HOST(bw->accum << (FLAC__BITS_PER_WORD-bw->bits));
321 bw->buffer[bw->words++] = SWAP_BE_WORD_TO_HOST(bw->accum);
367 bw->buffer[bw->words++] = SWAP_BE_WORD_TO_HOST(bw->accum);
373 bw->buffer[bw->words++] = SWAP_BE_WORD_TO_HOST(val);
573 bw->buffer[bw->words++] = SWAP_BE_WORD_TO_HOST(b
[all...]
H A Dbitreader.c60 /* SWAP_BE_WORD_TO_HOST swaps bytes in a brword (which is always big-endian) if necessary to match host byte order */
62 #define SWAP_BE_WORD_TO_HOST(x) (x) macro
65 #define SWAP_BE_WORD_TO_HOST(x) local_swap32_(x) macro
67 #define SWAP_BE_WORD_TO_HOST(x) ntohl(x) macro
243 br->buffer[br->words] = SWAP_BE_WORD_TO_HOST(br->buffer[br->words]);
274 br->buffer[start] = SWAP_BE_WORD_TO_HOST(br->buffer[start]);

Completed in 137 milliseconds