Lines Matching refs:use
6 * you may not use this file except in compliance with the License.
50 * Derive 2 items from the CRC byte; one is the "use" bit, the other is the "index".
52 * SBC keeps 2 sets of "use" & "index"; derived the current and the previous frame.
54 * The "use" bit is any bit in SBC_PRTC_USE_MASK is set.
88 UINT8 use;
104 p_last->idx = p_cur->idx; p_last->use = p_cur->use;}
105 #define SBC_PRTC_GETC(ar) {p_cur->use = ar[SBC_PRTC_CRC_IDX] & SBC_PRTC_USE_MASK; \
107 #define SBC_PRTC_CHK_CRC(ar) {SBC_PRTC_C2L();SBC_PRTC_GETC(ar);sbc_prtc_cb.index = (p_cur->use)?SBC_PRTC_CIDX:SBC_PRTC_LIDX;}
182 /* In case of JS processing,check whether to use JS */