Searched refs:bwword (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/test_libFLAC/
H A Dbitwriter.c41 typedef FLAC__uint32 bwword; typedef
44 bwword *buffer;
45 bwword accum; /* accumulator; when full, accum is appended to buffer */
51 #define TOTAL_BITS(bw) ((bw)->words*sizeof(bwword)*8 + (bw)->bits)
60 static bwword test_pattern1[5] = { 0xaaf0aabe, 0xaaaaaaa8, 0x300aaaaa, 0xaaadeadb, 0x00eeface };
62 static bwword test_pattern1[5] = { 0xbeaaf0aa, 0xa8aaaaaa, 0xaaaa0a30, 0xdbeaadaa, 0x00eeface };
194 if(memcmp(bw->buffer, test_pattern1, sizeof(bwword)*words) != 0) {
227 if(memcmp(bw->buffer, test_pattern1, sizeof(bwword)*words) != 0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/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 146 milliseconds