• Home
  • Raw
  • Download

Lines Matching refs:FLAC__byte

65 static void pack_uint32_(FLAC__uint32 val, FLAC__byte *b, unsigned bytes);
66 static void pack_uint32_little_endian_(FLAC__uint32 val, FLAC__byte *b, unsigned bytes);
67 static void pack_uint64_(FLAC__uint64 val, FLAC__byte *b, unsigned bytes);
68 static FLAC__uint32 unpack_uint32_(FLAC__byte *b, unsigned bytes);
69 static FLAC__uint32 unpack_uint32_little_endian_(FLAC__byte *b, unsigned bytes);
70 static FLAC__uint64 unpack_uint64_(FLAC__byte *b, unsigned bytes);
268 …, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, un… in FLAC__metadata_get_picture()
600 …etadata_simple_iterator_get_application_id(FLAC__Metadata_SimpleIterator *iterator, FLAC__byte *id) in FLAC__metadata_simple_iterator_get_application_id()
1264 …ReadStatus chain_read_ogg_read_cb_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t… in chain_read_ogg_read_cb_()
1269 *bytes = chain->read_cb(buffer, sizeof(FLAC__byte), *bytes, chain->handle); in chain_read_ogg_read_cb_()
2044 void pack_uint32_(FLAC__uint32 val, FLAC__byte *b, unsigned bytes) in pack_uint32_()
2051 *(--b) = (FLAC__byte)(val & 0xff); in pack_uint32_()
2056 void pack_uint32_little_endian_(FLAC__uint32 val, FLAC__byte *b, unsigned bytes) in pack_uint32_little_endian_()
2061 *(b++) = (FLAC__byte)(val & 0xff); in pack_uint32_little_endian_()
2066 void pack_uint64_(FLAC__uint64 val, FLAC__byte *b, unsigned bytes) in pack_uint64_()
2073 *(--b) = (FLAC__byte)(val & 0xff); in pack_uint64_()
2078 FLAC__uint32 unpack_uint32_(FLAC__byte *b, unsigned bytes) in unpack_uint32_()
2089 FLAC__uint32 unpack_uint32_little_endian_(FLAC__byte *b, unsigned bytes) in unpack_uint32_little_endian_()
2102 FLAC__uint64 unpack_uint64_(FLAC__byte *b, unsigned bytes) in unpack_uint64_()
2138 FLAC__byte raw_header[FLAC__STREAM_METADATA_HEADER_LENGTH]; in read_metadata_block_header_cb_()
2179 FLAC__byte buffer[FLAC__STREAM_METADATA_STREAMINFO_LENGTH], *b; in read_metadata_block_data_streaminfo_cb_()
2242 FLAC__byte buffer[FLAC__STREAM_METADATA_SEEKPOINT_LENGTH]; in read_metadata_block_data_seektable_cb_()
2268 FLAC__byte buffer[4]; /* magic number is asserted below */ in read_metadata_block_data_vorbis_comment_entry_cb_()
2308 FLAC__byte buffer[4]; /* magic number is asserted below */ in read_metadata_block_data_vorbis_comment_cb_()
2358 FLAC__byte buffer[32]; /* asserted below that this is big enough */ in read_metadata_block_data_cuesheet_track_cb_()
2374 track->number = (FLAC__byte)unpack_uint32_(buffer, len); in read_metadata_block_data_cuesheet_track_cb_()
2394 track->num_indices = (FLAC__byte)unpack_uint32_(buffer, len); in read_metadata_block_data_cuesheet_track_cb_()
2413 track->indices[i].number = (FLAC__byte)unpack_uint32_(buffer, len); in read_metadata_block_data_cuesheet_track_cb_()
2428 FLAC__byte buffer[1024]; /* MSVC needs a constant expression so we put a magic number and assert */ in read_metadata_block_data_cuesheet_cb_()
2470 …ture_cstring_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__byte **data, FLAC__ui… in read_metadata_block_data_picture_cstring_cb_()
2472 FLAC__byte buffer[sizeof(FLAC__uint32)]; in read_metadata_block_data_picture_cstring_cb_()
2504 FLAC__byte buffer[4]; /* asserted below that this is big enough */ in read_metadata_block_data_picture_cb_()
2519 …if((status = read_metadata_block_data_picture_cstring_cb_(handle, read_cb, (FLAC__byte**)(&(block-… in read_metadata_block_data_picture_cb_()
2602 FLAC__byte buffer[FLAC__STREAM_METADATA_HEADER_LENGTH]; in write_metadata_block_header_cb_()
2609 buffer[0] = (block->is_last? 0x80 : 0) | (FLAC__byte)block->type; in write_metadata_block_header_cb_()
2644 FLAC__byte buffer[FLAC__STREAM_METADATA_STREAMINFO_LENGTH]; in write_metadata_block_data_streaminfo_cb_()
2659 buffer[13] = (FLAC__byte)(((bps1 & 0x0f) << 4) | ((block->total_samples >> 32) & 0x0f)); in write_metadata_block_data_streaminfo_cb_()
2672 FLAC__byte buffer[1024]; in write_metadata_block_data_padding_cb_()
2708 FLAC__byte buffer[FLAC__STREAM_METADATA_SEEKPOINT_LENGTH]; in write_metadata_block_data_seektable_cb_()
2727 FLAC__byte buffer[4]; /* magic number is asserted below */ in write_metadata_block_data_vorbis_comment_cb_()
2755 FLAC__byte buffer[1024]; /* asserted below that this is big enough */ in write_metadata_block_data_cuesheet_cb_()
2850 FLAC__byte buffer[4]; /* magic number is asserted below */ in write_metadata_block_data_picture_cb_()
3070 FLAC__byte buffer[4]; in seek_to_first_metadata_block_cb_()
3166 FLAC__byte x; in simple_iterator_copy_file_postfix_()
3224 FLAC__byte buffer[8192]; in copy_n_bytes_from_file_()
3246 FLAC__byte buffer[8192]; in copy_n_bytes_from_file_cb_()
3268 FLAC__byte buffer[8192]; in copy_remaining_bytes_from_file_()
3288 FLAC__byte buffer[8192]; in copy_remaining_bytes_from_file_cb_()