Lines Matching defs:rbsp
19 void rbsp_init(struct rbsp *rbsp, void *addr, size_t size, in rbsp_init()
32 void rbsp_unsupported(struct rbsp *rbsp) in rbsp_unsupported()
48 static int add_emulation_prevention_three_byte(struct rbsp *rbsp) in add_emulation_prevention_three_byte()
56 static int discard_emulation_prevention_three_byte(struct rbsp *rbsp) in discard_emulation_prevention_three_byte()
68 static inline int rbsp_read_bit(struct rbsp *rbsp) in rbsp_read_bit()
99 static inline int rbsp_write_bit(struct rbsp *rbsp, bool value) in rbsp_write_bit()
127 static inline int rbsp_read_bits(struct rbsp *rbsp, int n, unsigned int *value) in rbsp_read_bits()
149 static int rbsp_write_bits(struct rbsp *rbsp, int n, unsigned int value) in rbsp_write_bits()
165 static int rbsp_read_uev(struct rbsp *rbsp, unsigned int *value) in rbsp_read_uev()
188 static int rbsp_write_uev(struct rbsp *rbsp, unsigned int *value) in rbsp_write_uev()
205 static int rbsp_read_sev(struct rbsp *rbsp, int *value) in rbsp_read_sev()
224 static int rbsp_write_sev(struct rbsp *rbsp, int *value) in rbsp_write_sev()
239 static int __rbsp_write_bit(struct rbsp *rbsp, int *value) in __rbsp_write_bit()
244 static int __rbsp_write_bits(struct rbsp *rbsp, int n, unsigned int *value) in __rbsp_write_bits()
256 static int __rbsp_read_bit(struct rbsp *rbsp, int *value) in __rbsp_read_bit()
274 void rbsp_bit(struct rbsp *rbsp, int *value) in rbsp_bit()
281 void rbsp_bits(struct rbsp *rbsp, int n, int *value) in rbsp_bits()
288 void rbsp_uev(struct rbsp *rbsp, unsigned int *value) in rbsp_uev()
295 void rbsp_sev(struct rbsp *rbsp, int *value) in rbsp_sev()
302 void rbsp_trailing_bits(struct rbsp *rbsp) in rbsp_trailing_bits()