OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bwword
(Results
1 - 1
of
1
) sorted by null
/external/flac/libFLAC/
bitwriter.c
57
/* 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
), /*times*/new_capacity)
[
all
...]
Completed in 1412 milliseconds