Lines Matching refs:fstate
107 ctx->fstate = NGHTTP2_HUFF_ACCEPTED;
114 nghttp2_huff_decode node = {ctx->fstate, 0};
122 t = &huff_decode_table[t->fstate & 0x1ff][c >> 4];
123 if (t->fstate & NGHTTP2_HUFF_SYM) {
127 t = &huff_decode_table[t->fstate & 0x1ff][c & 0xf];
128 if (t->fstate & NGHTTP2_HUFF_SYM) {
133 ctx->fstate = t->fstate;
135 if (final && !(ctx->fstate & NGHTTP2_HUFF_ACCEPTED)) {
143 return ctx->fstate == 0x100;