Lines Matching refs:h
148 #define handle_fast_flag(h) \ in isdnhdlc_decode() argument
150 if (h->cbin == fast_flag[h->bit_shift]) { \ in isdnhdlc_decode()
151 h->ffvalue = fast_flag_value[h->bit_shift]; \ in isdnhdlc_decode()
152 h->state = HDLC_FAST_FLAG; \ in isdnhdlc_decode()
153 h->ffbit_shift = h->bit_shift; \ in isdnhdlc_decode()
154 h->bit_shift = 1; \ in isdnhdlc_decode()
156 h->state = HDLC_GET_DATA; \ in isdnhdlc_decode()
157 h->data_received = 0; \ in isdnhdlc_decode()
161 #define handle_abort(h) \ in isdnhdlc_decode() argument
163 h->shift_reg = fast_abort[h->ffbit_shift - 1]; \ in isdnhdlc_decode()
164 h->hdlc_bits1 = h->ffbit_shift - 2; \ in isdnhdlc_decode()
165 if (h->hdlc_bits1 < 0) \ in isdnhdlc_decode()
166 h->hdlc_bits1 = 0; \ in isdnhdlc_decode()
167 h->data_bits = h->ffbit_shift - 1; \ in isdnhdlc_decode()
168 h->state = HDLC_GET_DATA; \ in isdnhdlc_decode()
169 h->data_received = 0; \ in isdnhdlc_decode()