Home
last modified time | relevance | path

Searched refs:next_state (Results 1 - 22 of 22) sorted by relevance

/third_party/rust/crates/aho-corasick/src/
H A Dnfa.rs154 pub fn next_state(&self, current: S, input: u8) -> S { in next_state() functions
155 self.states[current.to_usize()].next_state(input) in next_state()
265 fn next_state(&self, mut current: S, input: u8) -> S { in next_state() functions
273 let next = state.next_state(input); in next_state()
316 fn next_state(&self, input: u8) -> S { in next_state() functions
317 self.trans.next_state(input) in next_state()
394 fn next_state(&self, input: u8) -> S { in next_state() functions
702 let next = self.nfa.state(prev).next_state(b); in build_trie()
919 while it.nfa().state(fail).next_state(b) == fail_id() { in fill_failure_transitions()
922 fail = it.nfa().state(fail).next_state( in fill_failure_transitions()
[all...]
H A Ddfa.rs196 fn next_state(&self, current: S, input: u8) -> S { in next_state() functions
255 fn next_state(&self, current: S, input: u8) -> S { in next_state() functions
324 fn next_state(&self, current: S, input: u8) -> S { in next_state() functions
391 fn next_state(&self, current: S, input: u8) -> S { in next_state() functions
477 fn next_state(&self, from: S, byte: u8) -> S { in next_state() functions
705 return dfa.next_state(current, input); in nfa_next_state_memoized()
707 let next = nfa.next_state(current, input); in nfa_next_state_memoized()
H A Dautomaton.rs162 fn next_state(&self, current: Self::ID, input: u8) -> Self::ID; in next_state() functions
164 /// Like next_state, but debug_asserts that the underlying
167 let next = self.next_state(current, input); in next_state_no_fail()
231 // CORRECTNESS: next_state is correct for all possible u8 values, in standard_find_at_imp()
235 // value of next_state, which is guaranteed to be correct. in standard_find_at_imp()
321 // CORRECTNESS: next_state is correct for all possible u8 values, in leftmost_find_at_imp()
325 // value of next_state, which is guaranteed to be correct. in leftmost_find_at_imp()
436 // CORRECTNESS: next_state is correct for all possible u8 values, in leftmost_find_at_no_state_imp()
440 // value of next_state, which is guaranteed to be correct. in leftmost_find_at_no_state_imp()
/third_party/curl/lib/
H A Dsmb.c947 enum smb_req_state next_state = SMB_DONE; in smb_request_state() local
991 next_state = SMB_OPEN; in smb_request_state()
999 next_state = SMB_TREE_DISCONNECT; in smb_request_state()
1008 next_state = SMB_UPLOAD; in smb_request_state()
1014 next_state = SMB_CLOSE; in smb_request_state()
1020 next_state = SMB_DOWNLOAD; in smb_request_state()
1028 next_state = SMB_CLOSE; in smb_request_state()
1046 next_state = SMB_CLOSE; in smb_request_state()
1051 next_state = (len < MAX_PAYLOAD_SIZE) ? SMB_CLOSE : SMB_DOWNLOAD; in smb_request_state()
1057 next_state in smb_request_state()
[all...]
/third_party/lwip/src/apps/smtp/
H A Dsmtp.c1270 enum smtp_session_state next_state; in smtp_process() local
1282 next_state = s->state; in smtp_process()
1327 next_state = smtp_prepare_helo(s, &tx_buf_len, pcb); in smtp_process()
1335 next_state = smtp_prepare_auth_or_mail(s, &tx_buf_len); in smtp_process()
1344 next_state = smtp_prepare_mail(s, &tx_buf_len); in smtp_process()
1353 next_state = smtp_prepare_auth_login_uname(s, &tx_buf_len); in smtp_process()
1362 next_state = smtp_prepare_auth_login_pass(s, &tx_buf_len); in smtp_process()
1371 next_state = smtp_prepare_rcpt(s, &tx_buf_len); in smtp_process()
1380 next_state = SMTP_DATA; in smtp_process()
1387 next_state in smtp_process()
[all...]
/third_party/node/deps/v8/src/init/
H A Dv8.cc61 V8StartupState next_state = in AdvanceStartupState() local
63 if (next_state != expected_next_state) { in AdvanceStartupState()
73 static_cast<int>(current_state), static_cast<int>(next_state)); in AdvanceStartupState()
75 if (!v8_startup_state_.compare_exchange_strong(current_state, next_state)) { in AdvanceStartupState()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-shape-complex-thai.cc184 thai_above_state_t next_state; member
211 thai_below_state_t next_state; member
249 above_state = above_edge.next_state; in do_thai_pua_shaping()
250 below_state = below_edge.next_state; in do_thai_pua_shaping()
H A Dhb-aat-layout-common.hh760 const int next_state = machine.new_state (entry.newState); in drive() local
803 next_state == StateTableT::STATE_START_OF_TEXT in drive()
815 next_state == machine.new_state (wouldbe_entry->newState) in drive()
831 state = next_state; in drive()
H A Dhb-ot-shape-complex-arabic.cc136 uint16_t next_state; member
304 state = entry->next_state; in arabic_joining()
328 state = entry->next_state; in arabic_joining()
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Dpostprocessor.c523 * @param next_state state to which we should advance the post processor
534 enum PP_State next_state, enum PP_State next_dash_state) in find_boundary()
571 pp->state = next_state; in find_boundary()
625 * by an empty line), transition into next_state.
630 * @param next_state state to which the post processor should
638 size_t *ioffptr, enum PP_State next_state) in process_multipart_headers()
658 pp->state = next_state; in process_multipart_headers()
692 * @param next_state what state to go into after the
705 enum PP_State next_state, in process_value_to_boundary()
744 pp->state = next_state; in process_value_to_boundary()
530 find_boundary(struct MHD_PostProcessor *pp, const char *boundary, size_t blen, size_t *ioffptr, enum PP_State next_state, enum PP_State next_dash_state) find_boundary() argument
637 process_multipart_headers(struct MHD_PostProcessor *pp, size_t *ioffptr, enum PP_State next_state) process_multipart_headers() argument
701 process_value_to_boundary(struct MHD_PostProcessor *pp, size_t *ioffptr, const char *boundary, size_t blen, enum PP_State next_state, enum PP_State next_dash_state) process_value_to_boundary() argument
[all...]
H A Dconnection.c1740 * If so, transition into "next_state".
1743 * @param next_state the next state to transition to
1748 enum MHD_CONNECTION_STATE next_state)
1755 connection->state = next_state;
1747 check_write_done(struct MHD_Connection *connection, enum MHD_CONNECTION_STATE next_state) global() argument
/third_party/ffmpeg/libavcodec/
H A Djpeg2000_parser.c173 uint32_t next_state = (buf[i + m->skip_bytes] << 8) | buf[i + m->skip_bytes + 1]; in find_frame_end() local
174 if (info_marker(next_state)) { in find_frame_end()
/third_party/musl/porting/liteos_m/kernel/src/regex/
H A Dregexec.c741 tre_tnfa_transition_t *next_state; in tre_tnfa_run_backtrack() local
821 next_state = NULL; in tre_tnfa_run_backtrack()
834 if (next_state == NULL) in tre_tnfa_run_backtrack()
837 next_state = trans_i->state; in tre_tnfa_run_backtrack()
861 if (next_state != NULL) in tre_tnfa_run_backtrack()
864 state = next_state; in tre_tnfa_run_backtrack()
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/
H A Dregexec.c741 tre_tnfa_transition_t *next_state; in tre_tnfa_run_backtrack() local
821 next_state = NULL; in tre_tnfa_run_backtrack()
834 if (next_state == NULL) in tre_tnfa_run_backtrack()
837 next_state = trans_i->state; in tre_tnfa_run_backtrack()
861 if (next_state != NULL) in tre_tnfa_run_backtrack()
864 state = next_state; in tre_tnfa_run_backtrack()
/third_party/musl/porting/uniproton/kernel/src/regex/
H A Dregexec.c741 tre_tnfa_transition_t *next_state; in tre_tnfa_run_backtrack() local
821 next_state = NULL; in tre_tnfa_run_backtrack()
834 if (next_state == NULL) in tre_tnfa_run_backtrack()
837 next_state = trans_i->state; in tre_tnfa_run_backtrack()
861 if (next_state != NULL) in tre_tnfa_run_backtrack()
864 state = next_state; in tre_tnfa_run_backtrack()
/third_party/musl/src/regex/
H A Dregexec.c741 tre_tnfa_transition_t *next_state; in tre_tnfa_run_backtrack() local
821 next_state = NULL; in tre_tnfa_run_backtrack()
834 if (next_state == NULL) in tre_tnfa_run_backtrack()
837 next_state = trans_i->state; in tre_tnfa_run_backtrack()
861 if (next_state != NULL) in tre_tnfa_run_backtrack()
864 state = next_state; in tre_tnfa_run_backtrack()
/third_party/rust/crates/regex/src/
H A Ddfa.rs708 next_si = match self.next_state(qcur, qnext, prev_si, byte) { in exec_at()
732 prev_si = match self.next_state(qcur, qnext, prev_si, Byte::eof()) { in exec_at()
813 next_si = match self.next_state(qcur, qnext, prev_si, byte) { in exec_at_reverse()
834 prev_si = match self.next_state(qcur, qnext, prev_si, Byte::eof()) { in exec_at_reverse()
1343 fn next_state( in next_state() functions
/third_party/node/deps/v8/src/codegen/
H A Dcompiler.h266 V8_WARN_UNUSED_RESULT Status UpdateState(Status status, State next_state) { in UpdateState() argument
269 state_ = next_state; in UpdateState()
/third_party/NuttX/drivers/usbdev/gadget/
H A Df_mass_storage.c1254 fmass_task_state next_state; in fmass_set_next_command() local
1296 next_state = FMASS_TASK_REQ_DATA_PHASE; in fmass_set_next_command()
1300 next_state = FMASS_TASK_REQ_STATUS_PHASE; in fmass_set_next_command()
1302 fmass_task_change_state(fmass, next_state); in fmass_set_next_command()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dmesh_mpm.c520 enum mesh_plink_state next_state) in mesh_mpm_plink_open()
529 wpa_mesh_set_plink_state(wpa_s, sta, next_state); in mesh_mpm_plink_open()
519 mesh_mpm_plink_open(struct wpa_supplicant *wpa_s, struct sta_info *sta, enum mesh_plink_state next_state) mesh_mpm_plink_open() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dmesh_mpm.c528 enum mesh_plink_state next_state) in mesh_mpm_plink_open()
537 wpa_mesh_set_plink_state(wpa_s, sta, next_state); in mesh_mpm_plink_open()
527 mesh_mpm_plink_open(struct wpa_supplicant *wpa_s, struct sta_info *sta, enum mesh_plink_state next_state) mesh_mpm_plink_open() argument
/third_party/mesa3d/src/intel/vulkan/
H A DgenX_cmd_buffer.c1580 struct anv_state next_state = gfx->att_states; in anv_cmd_buffer_init_attachments() local
1581 next_state.alloc_size = isl_dev->ss.size; in anv_cmd_buffer_init_attachments()
1583 gfx->null_surface_state = next_state; in anv_cmd_buffer_init_attachments()
1584 next_state.offset += ss_stride; in anv_cmd_buffer_init_attachments()
1585 next_state.map += ss_stride; in anv_cmd_buffer_init_attachments()
1590 .surface_state.state = next_state, in anv_cmd_buffer_init_attachments()
1592 next_state.offset += ss_stride; in anv_cmd_buffer_init_attachments()
1593 next_state.map += ss_stride; in anv_cmd_buffer_init_attachments()

Completed in 38 milliseconds