/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_qpack_huffman.c | 82 ctx->fstate = NGHTTP3_QPACK_HUFFMAN_ACCEPTED; in nghttp3_qpack_huffman_decode_context_init() 91 nghttp3_qpack_huffman_decode_node node = {ctx->fstate, 0}; in nghttp3_qpack_huffman_decode() 99 t = &qpack_huffman_decode_table[t->fstate & 0x1ff][c >> 4]; in nghttp3_qpack_huffman_decode() 100 if (t->fstate & NGHTTP3_QPACK_HUFFMAN_SYM) { in nghttp3_qpack_huffman_decode() 104 t = &qpack_huffman_decode_table[t->fstate & 0x1ff][c & 0xf]; in nghttp3_qpack_huffman_decode() 105 if (t->fstate & NGHTTP3_QPACK_HUFFMAN_SYM) { in nghttp3_qpack_huffman_decode() 110 ctx->fstate = t->fstate; in nghttp3_qpack_huffman_decode() 112 if (fin && !(ctx->fstate & NGHTTP3_QPACK_HUFFMAN_ACCEPTED)) { in nghttp3_qpack_huffman_decode() 121 return ctx->fstate in nghttp3_qpack_huffman_decode_failure_state() [all...] |
H A D | nghttp3_qpack_huffman.h | 58 /* fstate is the current huffman decoding state, which is actually 65 uint16_t fstate; member 71 /* fstate is the current huffman decoding state. */ 72 uint16_t fstate; member
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/common/ |
H A D | power_state_machine.h | 84 PowerState(const std::string &name, PowerStateMachine &psm, PowerDevice &pd, utility::StateMachine::State &fstate) in PowerState() argument 85 : State(name, psm, fstate), pd_(pd){}; in PowerState() 146 * @param fstate Father State. 149 PowerActiveActivingState(PowerStateMachine &psm, PowerDevice &pd, utility::StateMachine::State &fstate) in PowerActiveActivingState() argument 150 : PowerState(ACTIV_ACTIVING_STATE, psm, pd, fstate){}; in PowerActiveActivingState() 170 * @param fstate Father State. 173 PowerActiveSniffingState(PowerStateMachine &psm, PowerDevice &pd, utility::StateMachine::State &fstate) in PowerActiveSniffingState() argument 174 : PowerState(ACTIV_SNIFFING_STATE, psm, pd, fstate){}; in PowerActiveSniffingState() 216 * @param fstate Father State. 219 PowerSniffActivingState(PowerStateMachine &psm, PowerDevice &pd, utility::StateMachine::State &fstate) in PowerSniffActivingState() argument 243 PowerSniffSniffingState(PowerStateMachine &psm, PowerDevice &pd, utility::StateMachine::State &fstate) PowerSniffSniffingState() argument [all...] |
/third_party/nghttp2/lib/ |
H A D | nghttp2_hd_huffman.c | 107 ctx->fstate = NGHTTP2_HUFF_ACCEPTED; in nghttp2_hd_huff_decode_context_init() 114 nghttp2_huff_decode node = {ctx->fstate, 0}; in nghttp2_hd_huff_decode() 122 t = &huff_decode_table[t->fstate & 0x1ff][c >> 4]; in nghttp2_hd_huff_decode() 123 if (t->fstate & NGHTTP2_HUFF_SYM) { in nghttp2_hd_huff_decode() 127 t = &huff_decode_table[t->fstate & 0x1ff][c & 0xf]; in nghttp2_hd_huff_decode() 128 if (t->fstate & NGHTTP2_HUFF_SYM) { in nghttp2_hd_huff_decode() 133 ctx->fstate = t->fstate; in nghttp2_hd_huff_decode() 135 if (final && !(ctx->fstate & NGHTTP2_HUFF_ACCEPTED)) { in nghttp2_hd_huff_decode() 143 return ctx->fstate in nghttp2_hd_huff_decode_failure_state() [all...] |
H A D | nghttp2_hd_huffman.h | 43 /* fstate is the current huffman decoding state, which is actually 50 uint16_t fstate; member 58 /* fstate is the current huffman decoding state. */ 59 uint16_t fstate; member
|
/third_party/node/deps/nghttp2/lib/ |
H A D | nghttp2_hd_huffman.c | 107 ctx->fstate = NGHTTP2_HUFF_ACCEPTED; in nghttp2_hd_huff_decode_context_init() 114 nghttp2_huff_decode node = {ctx->fstate, 0}; in nghttp2_hd_huff_decode() 122 t = &huff_decode_table[t->fstate & 0x1ff][c >> 4]; in nghttp2_hd_huff_decode() 123 if (t->fstate & NGHTTP2_HUFF_SYM) { in nghttp2_hd_huff_decode() 127 t = &huff_decode_table[t->fstate & 0x1ff][c & 0xf]; in nghttp2_hd_huff_decode() 128 if (t->fstate & NGHTTP2_HUFF_SYM) { in nghttp2_hd_huff_decode() 133 ctx->fstate = t->fstate; in nghttp2_hd_huff_decode() 135 if (final && !(ctx->fstate & NGHTTP2_HUFF_ACCEPTED)) { in nghttp2_hd_huff_decode() 143 return ctx->fstate in nghttp2_hd_huff_decode_failure_state() [all...] |
H A D | nghttp2_hd_huffman.h | 43 /* fstate is the current huffman decoding state, which is actually 50 uint16_t fstate; member 58 /* fstate is the current huffman decoding state. */ 59 uint16_t fstate; member
|
/third_party/ffmpeg/libavcodec/ |
H A D | psymodel.c | 97 struct FFIIRFilterState **fstate; member 123 ctx->fstate = av_calloc(avctx->ch_layout.nb_channels, sizeof(ctx->fstate[0])); in ff_psy_preprocess_init() 124 if (!ctx->fstate) { in ff_psy_preprocess_init() 130 ctx->fstate[i] = ff_iir_filter_init_state(FILT_ORDER); in ff_psy_preprocess_init() 145 if (ctx->fstate) { in ff_psy_preprocess() 147 iir->filter_flt(ctx->fcoeffs, ctx->fstate[ch], frame_size, in ff_psy_preprocess() 156 if (ctx->fstate) in ff_psy_preprocess_end() 158 ff_iir_filter_free_statep(&ctx->fstate[i]); in ff_psy_preprocess_end() 159 av_freep(&ctx->fstate); in ff_psy_preprocess_end() [all...] |
/third_party/ffmpeg/libavcodec/tests/ |
H A D | iirfilter.c | 33 struct FFIIRFilterState *fstate = NULL; in main() local 41 fstate = ff_iir_filter_init_state(FILT_ORDER); in main() 46 ff_iir_filter(fcoeffs, fstate, SIZE, x, 1, y, 1); in main() 52 ff_iir_filter_free_statep(&fstate); in main()
|