Lines Matching refs:FLAC__byte
82 static void pack_uint32_(FLAC__uint32 val, FLAC__byte *b, unsigned bytes);
83 static void pack_uint32_little_endian_(FLAC__uint32 val, FLAC__byte *b, unsigned bytes);
84 static void pack_uint64_(FLAC__uint64 val, FLAC__byte *b, unsigned bytes);
85 static FLAC__uint32 unpack_uint32_(FLAC__byte *b, unsigned bytes);
86 static FLAC__uint32 unpack_uint32_little_endian_(FLAC__byte *b, unsigned bytes);
87 static FLAC__uint64 unpack_uint64_(FLAC__byte *b, unsigned bytes);
285 …, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, un… in FLAC__metadata_get_picture()
617 …etadata_simple_iterator_get_application_id(FLAC__Metadata_SimpleIterator *iterator, FLAC__byte *id) in FLAC__metadata_simple_iterator_get_application_id()
1258 …ReadStatus chain_read_ogg_read_cb_(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t… in chain_read_ogg_read_cb_()
1263 *bytes = chain->read_cb(buffer, sizeof(FLAC__byte), *bytes, chain->handle); in chain_read_ogg_read_cb_()
1987 void pack_uint32_(FLAC__uint32 val, FLAC__byte *b, unsigned bytes) in pack_uint32_()
1994 *(--b) = (FLAC__byte)(val & 0xff); in pack_uint32_()
1999 void pack_uint32_little_endian_(FLAC__uint32 val, FLAC__byte *b, unsigned bytes) in pack_uint32_little_endian_()
2004 *(b++) = (FLAC__byte)(val & 0xff); in pack_uint32_little_endian_()
2009 void pack_uint64_(FLAC__uint64 val, FLAC__byte *b, unsigned bytes) in pack_uint64_()
2016 *(--b) = (FLAC__byte)(val & 0xff); in pack_uint64_()
2021 FLAC__uint32 unpack_uint32_(FLAC__byte *b, unsigned bytes) in unpack_uint32_()
2032 FLAC__uint32 unpack_uint32_little_endian_(FLAC__byte *b, unsigned bytes) in unpack_uint32_little_endian_()
2045 FLAC__uint64 unpack_uint64_(FLAC__byte *b, unsigned bytes) in unpack_uint64_()
2081 FLAC__byte raw_header[FLAC__STREAM_METADATA_HEADER_LENGTH]; in read_metadata_block_header_cb_()
2122 FLAC__byte buffer[FLAC__STREAM_METADATA_STREAMINFO_LENGTH], *b; in read_metadata_block_data_streaminfo_cb_()
2172 if(0 == (block->data = (FLAC__byte*)malloc(block_length))) in read_metadata_block_data_application_cb_()
2185 FLAC__byte buffer[FLAC__STREAM_METADATA_SEEKPOINT_LENGTH]; in read_metadata_block_data_seektable_cb_()
2211 FLAC__byte buffer[4]; /* magic number is asserted below */ in read_metadata_block_data_vorbis_comment_entry_cb_()
2226 if(0 == (entry->entry = (FLAC__byte*)safe_malloc_add_2op_(entry->length, /*+*/1))) in read_metadata_block_data_vorbis_comment_entry_cb_()
2243 FLAC__byte buffer[4]; /* magic number is asserted below */ in read_metadata_block_data_vorbis_comment_cb_()
2271 FLAC__byte buffer[32]; /* asserted below that this is big enough */ in read_metadata_block_data_cuesheet_track_cb_()
2287 track->number = (FLAC__byte)unpack_uint32_(buffer, len); in read_metadata_block_data_cuesheet_track_cb_()
2307 track->num_indices = (FLAC__byte)unpack_uint32_(buffer, len); in read_metadata_block_data_cuesheet_track_cb_()
2326 track->indices[i].number = (FLAC__byte)unpack_uint32_(buffer, len); in read_metadata_block_data_cuesheet_track_cb_()
2341 FLAC__byte buffer[1024]; /* MSVC needs a constant expression so we put a magic number and assert */ in read_metadata_block_data_cuesheet_cb_()
2383 …ture_cstring_cb_(FLAC__IOHandle handle, FLAC__IOCallback_Read read_cb, FLAC__byte **data, FLAC__ui… in read_metadata_block_data_picture_cstring_cb_()
2385 FLAC__byte buffer[sizeof(FLAC__uint32)]; in read_metadata_block_data_picture_cstring_cb_()
2401 if(0 == (*data = (FLAC__byte*)safe_malloc_add_2op_(*length, /*+*/1))) in read_metadata_block_data_picture_cstring_cb_()
2417 FLAC__byte buffer[4]; /* asserted below that this is big enough */ in read_metadata_block_data_picture_cb_()
2432 …if((status = read_metadata_block_data_picture_cstring_cb_(handle, read_cb, (FLAC__byte**)(&(block-… in read_metadata_block_data_picture_cb_()
2475 if(0 == (block->data = (FLAC__byte*)malloc(block_length))) in read_metadata_block_data_unknown_cb_()
2515 FLAC__byte buffer[FLAC__STREAM_METADATA_HEADER_LENGTH]; in write_metadata_block_header_cb_()
2519 buffer[0] = (block->is_last? 0x80 : 0) | (FLAC__byte)block->type; in write_metadata_block_header_cb_()
2554 FLAC__byte buffer[FLAC__STREAM_METADATA_STREAMINFO_LENGTH]; in write_metadata_block_data_streaminfo_cb_()
2569 buffer[13] = (FLAC__byte)(((bps1 & 0x0f) << 4) | ((block->total_samples >> 32) & 0x0f)); in write_metadata_block_data_streaminfo_cb_()
2582 FLAC__byte buffer[1024]; in write_metadata_block_data_padding_cb_()
2618 FLAC__byte buffer[FLAC__STREAM_METADATA_SEEKPOINT_LENGTH]; in write_metadata_block_data_seektable_cb_()
2637 FLAC__byte buffer[4]; /* magic number is asserted below */ in write_metadata_block_data_vorbis_comment_cb_()
2665 FLAC__byte buffer[1024]; /* asserted below that this is big enough */ in write_metadata_block_data_cuesheet_cb_()
2760 FLAC__byte buffer[4]; /* magic number is asserted below */ in write_metadata_block_data_picture_cb_()
2980 FLAC__byte buffer[4]; in seek_to_first_metadata_block_cb_()
3076 FLAC__byte x; in simple_iterator_copy_file_postfix_()
3134 FLAC__byte buffer[8192]; in copy_n_bytes_from_file_()
3156 FLAC__byte buffer[8192]; in copy_n_bytes_from_file_cb_()
3178 FLAC__byte buffer[8192]; in copy_remaining_bytes_from_file_()
3198 FLAC__byte buffer[8192]; in copy_remaining_bytes_from_file_cb_()