Home
last modified time | relevance | path

Searched refs:next_state (Results 1 – 25 of 50) sorted by relevance

12

/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/pexpect/
DFSM.py118 self.next_state = None
131 def add_transition (self, input_symbol, state, action=None, next_state=None): argument
144 if next_state is None:
145 next_state = state
146 self.state_transitions[(input_symbol, state)] = (action, next_state)
148 def add_transition_list (self, list_input_symbols, state, action=None, next_state=None): argument
159 if next_state is None:
160 next_state = state
162 self.add_transition (input_symbol, state, action, next_state)
164 def add_transition_any (self, state, action=None, next_state=None): argument
[all …]
/external/antlr/runtime/Ruby/lib/antlr3/
Ddfa.rb197 next_state = @transition[ state ][ c - @min[ state ] ]
198 if next_state < 0
208 state = next_state
263 next_state = @transition[ state ][ c - @min[ state ] ]
264 if next_state < 0
274 state = next_state
/external/perfetto/src/protozero/filtering/
Dmessage_filter.cc146 StackState next_state{}; in FilterOneByte() local
212 next_state.field_id = token.field_id; in FilterOneByte()
213 next_state.msg_index = filter.nested_msg_index; in FilterOneByte()
214 next_state.in_bytes_limit = submessage_len; in FilterOneByte()
215 next_state.size_field = size_field.first; in FilterOneByte()
216 next_state.size_field_len = size_field.second; in FilterOneByte()
217 next_state.out_bytes_written_at_start = out_written(); in FilterOneByte()
263 stack_.emplace_back(std::move(next_state)); in FilterOneByte()
/external/llvm-project/llvm/test/Transforms/LoopRotate/
Dswitch.ll28 %state = phi i8 [ 2, %start ], [ %next_state, %latch ]
37 %next_state = zext i1 %cmp to i8
69 %state = phi i8 [ %start_state, %start ], [ %next_state, %latch ]
78 %next_state = zext i1 %cmp to i8
110 %state = phi i8 [ 0, %start ], [ %next_state, %latch ]
119 %next_state = zext i1 %cmp to i8
151 %state = phi i8 [ %start_state, %start ], [ %next_state, %latch ]
160 %next_state = zext i1 %cmp to i8
/external/rust/crates/aho-corasick/src/
Dnfa.rs154 pub fn next_state(&self, current: S, input: u8) -> S { in next_state() method
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() method
273 let next = state.next_state(input); in next_state()
327 fn next_state(&self, input: u8) -> S { in next_state() method
328 self.trans.next_state(input) in next_state()
405 fn next_state(&self, input: u8) -> S { in next_state() method
717 let next = self.nfa.state(prev).next_state(b); in build_trie()
850 let next = self.nfa.start().next_state(b); in fill_failure_transitions_standard()
874 while it.nfa().state(fail).next_state(b) == fail_id() { in fill_failure_transitions_standard()
[all …]
Ddfa.rs196 fn next_state(&self, current: S, input: u8) -> S { in next_state() method
255 fn next_state(&self, current: S, input: u8) -> S { in next_state() method
324 fn next_state(&self, current: S, input: u8) -> S { in next_state() method
391 fn next_state(&self, current: S, input: u8) -> S { in next_state() method
477 fn next_state(&self, from: S, byte: u8) -> S { in next_state() method
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()
/external/curl/lib/
Dsmb.c744 enum smb_req_state next_state = SMB_DONE; in smb_request_state() local
783 next_state = SMB_OPEN; in smb_request_state()
791 next_state = SMB_TREE_DISCONNECT; in smb_request_state()
800 next_state = SMB_UPLOAD; in smb_request_state()
807 next_state = SMB_CLOSE; in smb_request_state()
813 next_state = SMB_DOWNLOAD; in smb_request_state()
821 next_state = SMB_CLOSE; in smb_request_state()
839 next_state = SMB_CLOSE; in smb_request_state()
846 next_state = (len < MAX_PAYLOAD_SIZE) ? SMB_CLOSE : SMB_DOWNLOAD; in smb_request_state()
852 next_state = SMB_CLOSE; in smb_request_state()
[all …]
/external/webrtc/pc/
Dsctp_transport.cc81 SctpTransportState next_state; in SetDtlsTransport() local
84 next_state = info_.state(); in SetDtlsTransport()
92 next_state = SctpTransportState::kConnecting; in SetDtlsTransport()
99 UpdateInformation(next_state); in SetDtlsTransport()
/external/libusb/examples/
Ddpfp.c157 static int next_state(void);
310 if (next_state() < 0) in cb_mode_changed()
390 static int next_state(void) in next_state() function
442 if (next_state() < 0) in cb_irq()
450 if (next_state() < 0) in cb_irq()
477 if (next_state() < 0) in cb_img()
510 return next_state(); in init_capture()
/external/bcc/src/cc/frontends/p4/compiler/
DebpfDeparser.py47 for branch_case, next_state in parse_state.branch_to.items():
48 if not next_state:
50 if not isinstance(next_state, p4_parse_state):
52 walk_rec(hlir, next_state, prev_hdr_node, tag_stacks_index.copy())
/external/autotest/server/cros/chaos_lib/
Dchaos_capture_analyzer.py415 return self._get_state(state.next_state)
582 next_state = self._current_state
583 while next_state != self.STATE_INFO_END:
584 if self._does_packet_match_state(next_state, packet):
585 self._step(next_state, packet)
586 self._check_for_ack(next_state, packet)
588 next_state = self._get_next_state(next_state)
/external/rust/crates/regex-automata/src/
Ddfa.rs56 fn next_state(&self, current: Self::ID, input: u8) -> Self::ID; in next_state() method
351 fn next_state(&self, current: Self::ID, input: u8) -> Self::ID { in next_state() method
352 (**self).next_state(current, input) in next_state()
/external/harfbuzz_ng/src/
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()
/external/python/cpython3/Parser/pgen/
Dautomata.py271 next_state = exisisting_state
274 next_state = DFAState(nfa.name, nfa_set, nfa.end)
275 states.append(next_state)
279 state.add_arc(next_state, label)
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ftrace/context_switch/
Dformat15 field:unsigned char next_state; offset:23; size:1; signed:0;
17 …pid, REC->prev_prio, REC->prev_state, REC->next_pid, REC->next_prio, REC->next_state, REC->next_cpu
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ftrace/wakeup/
Dformat15 field:unsigned char next_state; offset:23; size:1; signed:0;
17 …pid, REC->prev_prio, REC->prev_state, REC->next_pid, REC->next_prio, REC->next_state, REC->next_cpu
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/ftrace/wakeup/
Dformat15 field:unsigned char next_state; offset:23; size:1; signed:0;
17 …pid, REC->prev_prio, REC->prev_state, REC->next_pid, REC->next_prio, REC->next_state, REC->next_cpu
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/ftrace/wakeup/
Dformat15 field:unsigned char next_state; offset:23; size:1; signed:0;
17 …pid, REC->prev_prio, REC->prev_state, REC->next_pid, REC->next_prio, REC->next_state, REC->next_cpu
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/ftrace/context_switch/
Dformat15 field:unsigned char next_state; offset:23; size:1; signed:0;
17 …pid, REC->prev_prio, REC->prev_state, REC->next_pid, REC->next_prio, REC->next_state, REC->next_cpu
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/ftrace/context_switch/
Dformat15 field:unsigned char next_state; offset:23; size:1; signed:0;
17 …pid, REC->prev_prio, REC->prev_state, REC->next_pid, REC->next_prio, REC->next_state, REC->next_cpu
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/events/ftrace/context_switch/
Dformat16 field:unsigned char next_state; offset:27; size:1; signed:0;
18 …pid, REC->prev_prio, REC->prev_state, REC->next_pid, REC->next_prio, REC->next_state, REC->next_cpu
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/events/ftrace/wakeup/
Dformat16 field:unsigned char next_state; offset:27; size:1; signed:0;
18 …pid, REC->prev_prio, REC->prev_state, REC->next_pid, REC->next_prio, REC->next_state, REC->next_cpu
/external/llvm-project/clang/test/SemaCXX/
Dconstexpr-turing-cxx2a.cpp42 auto [val, dir, next_state] = tm[state][tape->val]; in run()
45 state = next_state; in run()
/external/blktrace/
Dstrverscmp.c99 static const unsigned int next_state[] = in strverscmp() local
133 state = next_state[state]; in strverscmp()
/external/rust/crates/itertools/src/
Dsources.rs160 let next_state = (self.f)(&self.state); in next() localVariable
161 Some(mem::replace(&mut self.state, next_state)) in next()

12