Searched refs:FLAC__uint32 (Results 1 - 25 of 44) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/include/private/
H A Dmd5.h32 FLAC__uint32 in[16];
33 FLAC__uint32 buf[4];
34 FLAC__uint32 bytes[2];
H A Dbitmath.h37 unsigned FLAC__bitmath_ilog2(FLAC__uint32 v);
H A Dcpu.h81 FLAC__uint32 FLAC__cpu_have_cpuid_asm_ia32(void);
82 void FLAC__cpu_info_asm_ia32(FLAC__uint32 *flags_edx, FLAC__uint32 *flags_ecx);
83 FLAC__uint32 FLAC__cpu_info_extended_amd_asm_ia32(void);
H A Dfloat.h93 FLAC__uint32 FLAC__fixedpoint_log2(FLAC__uint32 x, unsigned fracbits, unsigned precision);
H A Dmemory.h49 FLAC__bool FLAC__memory_alloc_aligned_uint32_array(unsigned elements, FLAC__uint32 **unaligned_pointer, FLAC__uint32 **aligned_pointer);
H A Dbitreader.h74 FLAC__bool FLAC__bitreader_read_raw_uint32(FLAC__BitReader *br, FLAC__uint32 *val, unsigned bits);
77 FLAC__bool FLAC__bitreader_read_uint32_little_endian(FLAC__BitReader *br, FLAC__uint32 *val); /*only for bits=32*/
95 FLAC__bool FLAC__bitreader_read_utf8_uint32(FLAC__BitReader *br, FLAC__uint32 *val, FLAC__byte *raw, unsigned *rawlen);
H A Dbitwriter.h82 FLAC__bool FLAC__bitwriter_write_raw_uint32(FLAC__BitWriter *bw, FLAC__uint32 val, unsigned bits);
85 FLAC__bool FLAC__bitwriter_write_raw_uint32_little_endian(FLAC__BitWriter *bw, FLAC__uint32 val); /*only for bits=32*/
99 FLAC__bool FLAC__bitwriter_write_utf8_uint32(FLAC__BitWriter *bw, FLAC__uint32 val);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/grabbag/
H A Dpicture.c44 FLAC__uint32 val = 0;
53 val = 10*val + (FLAC__uint32)(s[i] - '0');
70 FLAC__uint32 val = 0;
97 val = 10*val + (FLAC__uint32)(s[i] - '0');
130 FLAC__uint32 len = picture->data_length;
141 const FLAC__uint32 clen = (FLAC__uint32)data[0] << 24 | (FLAC__uint32)data[1] << 16 | (FLAC__uint32)data[2] << 8 | (FLAC__uint32)dat
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/FLAC/
H A Dordinals.h47 typedef unsigned __int32 FLAC__uint32; typedef
54 typedef unsigned long FLAC__uint32; typedef
61 typedef uint32_t FLAC__uint32; typedef
H A Dformat.h432 FLAC__uint32 frame_number;
622 FLAC__uint32 length;
633 FLAC__uint32 num_comments;
788 FLAC__uint32 width;
791 FLAC__uint32 height;
794 FLAC__uint32 depth;
797 FLAC__uint32 colors;
802 FLAC__uint32 data_length;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Diffscan.c35 static FLAC__uint32 unpack32be_(const FLAC__byte *b)
37 return ((FLAC__uint32)b[0]<<24) + ((FLAC__uint32)b[1]<<16) + ((FLAC__uint32)b[2]<<8) + (FLAC__uint32)b[3];
40 static FLAC__uint32 unpack32le_(const FLAC__byte *b)
42 return (FLAC__uint32)b[0] + ((FLAC__uint32)b[1]<<8) + ((FLAC__uint32)b[2]<<16) + ((FLAC__uint32)
[all...]
H A Dforeign_metadata.h36 FLAC__uint32 size;
45 FLAC__uint32 ssnd_offset_size; /* 0 if type!=AIFF */
H A Dutils.h60 FLAC__bool flac__utils_set_channel_mask_tag(FLAC__StreamMetadata *object, FLAC__uint32 channel_mask);
61 FLAC__bool flac__utils_get_channel_mask_tag(const FLAC__StreamMetadata *object, FLAC__uint32 *channel_mask);
H A Dforeign_metadata.c46 static FLAC__uint32 unpack32be_(const FLAC__byte *b)
48 return ((FLAC__uint32)b[0]<<24) + ((FLAC__uint32)b[1]<<16) + ((FLAC__uint32)b[2]<<8) + (FLAC__uint32)b[3];
51 static FLAC__uint32 unpack32le_(const FLAC__byte *b)
53 return (FLAC__uint32)b[0] + ((FLAC__uint32)b[1]<<8) + ((FLAC__uint32)b[2]<<16) + ((FLAC__uint32)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dbitwriter.c58 typedef FLAC__uint32 bwword;
61 #define FLAC__WORD_ALL_ONES ((FLAC__uint32)0xffffffff)
112 static _inline FLAC__uint32 local_swap32_(FLAC__uint32 x)
340 FLaC__INLINE FLAC__bool FLAC__bitwriter_write_raw_uint32(FLAC__BitWriter *bw, FLAC__uint32 val, unsigned bits)
385 return FLAC__bitwriter_write_raw_uint32(bw, (FLAC__uint32)val, bits);
393 FLAC__bitwriter_write_raw_uint32(bw, (FLAC__uint32)(val>>32), bits-32) &&
394 FLAC__bitwriter_write_raw_uint32(bw, (FLAC__uint32)val, 32);
397 return FLAC__bitwriter_write_raw_uint32(bw, (FLAC__uint32)val, bits);
400 FLaC__INLINE FLAC__bool FLAC__bitwriter_write_raw_uint32_little_endian(FLAC__BitWriter *bw, FLAC__uint32 va
[all...]
H A Dfloat.c57 static const FLAC__uint32 log2_lookup[][LOG2_LOOKUP_PRECISION] = {
275 FLAC__uint32 FLAC__fixedpoint_log2(FLAC__uint32 x, unsigned fracbits, unsigned precision)
277 const FLAC__uint32 ONE = (1u << fracbits);
278 const FLAC__uint32 *table = log2_lookup[fracbits >> 2];
291 FLAC__uint32 y = 0;
292 FLAC__uint32 z = x >> 1, k = 1;
H A Dbitmath.c61 unsigned FLAC__bitmath_ilog2(FLAC__uint32 v)
H A Dmemory.c103 FLAC__bool FLAC__memory_alloc_aligned_uint32_array(unsigned elements, FLAC__uint32 **unaligned_pointer, FLAC__uint32 **aligned_pointer)
105 FLAC__uint32 *pu; /* unaligned pointer */
107 FLAC__uint32 *pa; /* aligned pointer */
119 pu = (FLAC__uint32*)FLAC__memory_alloc_aligned(sizeof(*pu) * elements, &u.pv);
H A Dbitreader.c56 typedef FLAC__uint32 brword;
59 #define FLAC__WORD_ALL_ONES ((FLAC__uint32)0xffffffff)
154 static _inline FLAC__uint32 local_swap32_(FLAC__uint32 x)
159 static void local_swap32_block_(FLAC__uint32 *start, FLAC__uint32 len)
435 FLaC__INLINE FLAC__bool FLAC__bitreader_read_raw_uint32(FLAC__BitReader *br, FLAC__uint32 *val, unsigned bits)
517 if(!FLAC__bitreader_read_raw_uint32(br, (FLAC__uint32*)val, bits))
527 FLAC__uint32 hi, lo;
546 FLaC__INLINE FLAC__bool FLAC__bitreader_read_uint32_little_endian(FLAC__BitReader *br, FLAC__uint32 *va
[all...]
H A Dfixed.c64 static FLAC__fixedpoint local__compute_rbps_integerized(FLAC__uint32 err, FLAC__uint32 n)
66 FLAC__uint32 rbps;
99 rbps = (FLAC__uint32)err;
143 static FLAC__fixedpoint local__compute_rbps_wide_integerized(FLAC__uint64 err, FLAC__uint32 n)
145 FLAC__uint32 rbps;
178 rbps = (FLAC__uint32)err;
234 FLAC__uint32 total_error_0 = 0, total_error_1 = 0, total_error_2 = 0, total_error_3 = 0, total_error_4 = 0;
H A Dmd5.c57 static void FLAC__MD5Transform(FLAC__uint32 buf[4], FLAC__uint32 const in[16])
59 register FLAC__uint32 a, b, c, d;
142 static void byteSwap(FLAC__uint32 *buf, unsigned words)
144 register FLAC__uint32 x;
151 static void byteSwapX16(FLAC__uint32 *buf)
153 register FLAC__uint32 x;
183 FLAC__uint32 t;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/examples/c/decode/file/
H A Dmain.c57 static FLAC__bool write_little_endian_uint32(FILE *f, FLAC__uint32 x)
113 const FLAC__uint32 total_size = (FLAC__uint32)(total_samples * channels * (bps/8));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/examples/cpp/decode/file/
H A Dmain.cpp53 static bool write_little_endian_uint32(FILE *f, FLAC__uint32 x)
118 const FLAC__uint32 total_size = (FLAC__uint32)(total_samples * channels * (bps/8));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_grabbag/picture/
H A Dmain.c31 FLAC__uint32 width;
32 FLAC__uint32 height;
33 FLAC__uint32 depth;
34 FLAC__uint32 colors;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/FLAC++/
H A Dmetadata.h794 FLAC__uint32 calculate_cddb_id() const;
850 FLAC__uint32 get_width() const;
851 FLAC__uint32 get_height() const;
852 FLAC__uint32 get_depth() const;
853 FLAC__uint32 get_colors() const; ///< a return value of \c 0 means true-color, i.e. 2^depth colors
854 FLAC__uint32 get_data_length() const;
865 void set_width(FLAC__uint32 value) const;
866 void set_height(FLAC__uint32 value) const;
867 void set_depth(FLAC__uint32 value) const;
868 void set_colors(FLAC__uint32 valu
[all...]

Completed in 272 milliseconds

12