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

/external/flac/libFLAC/
H A Dbitwriter.c57 /* WATCHOUT: there are a few places where the code will not work unless bwword is >= 32 bits wide */
58 typedef FLAC__uint32 bwword; typedef
62 /* SWAP_BE_WORD_TO_HOST swaps bytes in a bwword (which is always big-endian) if necessary to match host byte order */
79 static const unsigned FLAC__BITWRITER_DEFAULT_CAPACITY = 32768u / sizeof(bwword); /* size in words */
81 static const unsigned FLAC__BITWRITER_DEFAULT_INCREMENT = 4096u / sizeof(bwword); /* size in words */
103 bwword *buffer;
104 bwword accum; /* accumulator; bits are right-justified; when full, accum is appended to buffer */
123 bwword *new_buffer;
145 new_buffer = (bwword*)safe_realloc_mul_2op_(bw->buffer, sizeof(bwword), /*time
[all...]

Completed in 34 milliseconds