Lines Matching refs:store
126 state->store.byte = 0; in lsx_adpcm_reset()
127 state->store.flag = 0; in lsx_adpcm_reset()
190 if (len && state->store.flag) { in lsx_adpcm_read()
191 word = lsx_adpcm_decode(state->store.byte, &state->encoder); in lsx_adpcm_read()
193 state->store.flag = 0; in lsx_adpcm_read()
205 state->store.byte = byte; in lsx_adpcm_read()
206 state->store.flag = 1; in lsx_adpcm_read()
249 uint8_t byte = state->store.byte; in lsx_adpcm_write()
250 uint8_t flag = state->store.flag; in lsx_adpcm_write()
276 state->store.byte = byte; in lsx_adpcm_write()
277 state->store.flag = flag; in lsx_adpcm_write()
293 uint8_t byte = state->store.byte; in lsx_adpcm_flush()
294 uint8_t flag = state->store.flag; in lsx_adpcm_flush()