Lines Matching defs:ENCODE
78 #define ENCODE(type, endian, src, dst, n, shift, offset) \
119 ENCODE(uint32_t, le32, samples, dst, n, 0, 0x80000000)
122 ENCODE(uint32_t, be32, samples, dst, n, 0, 0x80000000)
125 ENCODE(int32_t, le24, samples, dst, n, 8, 0)
131 ENCODE(int32_t, be24, samples, dst, n, 8, 0)
134 ENCODE(uint32_t, le24, samples, dst, n, 8, 0x800000)
137 ENCODE(uint32_t, be24, samples, dst, n, 8, 0x800000)
149 ENCODE(uint16_t, le16, samples, dst, n, 0, 0x8000)
152 ENCODE(uint16_t, be16, samples, dst, n, 0, 0x8000)
155 ENCODE(uint8_t, byte, samples, dst, n, 0, -128)
163 ENCODE(int64_t, le64, samples, dst, n, 0, 0)
167 ENCODE(int32_t, le32, samples, dst, n, 0, 0)
173 ENCODE(int16_t, le16, samples, dst, n, 0, 0)
186 ENCODE(int64_t, be64, samples, dst, n, 0, 0)
190 ENCODE(int32_t, be32, samples, dst, n, 0, 0)
193 ENCODE(int16_t, be16, samples, dst, n, 0, 0)