HomeSort by relevance Sort by last modified time
    Searched refs:_state (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /external/flatbuffers/tests/FlatBuffers.Test/
Lcg.cs 25 private uint _state; field in class:FlatBuffers.Test.Lcg
29 _state = InitialValue;
34 return (_state = 69069 * _state + 362437);
39 _state = InitialValue;
  /external/wpa_supplicant_8/src/utils/
state_machine.h 47 if (!global || sm->machine ## _state != machine ## _ ## state) { \
52 sm->machine ## _state = machine ## _ ## state;
57 * @_state: State machine state
65 #define SM_ENTRY_M(machine, _state, data) \
66 if (!global || sm->data ## _ ## state != machine ## _ ## _state) { \
69 #machine " entering state " #_state); \
71 sm->data ## _ ## state = machine ## _ ## _state;
76 * @_state: State machine state
83 #define SM_ENTRY_MA(machine, _state, data) \
84 if (!global || sm->data ## _ ## state != machine ## _ ## _state) { \
    [all...]
  /external/toolchain-utils/automation/common/
state_machine.py 25 self._state = initial_state
28 self.timeline.AddEvent(self._state)
31 return self._state
37 return self._state == value
43 return to_state in self.state_machine.get(self._state, [])
47 'Transition from %s to %s not possible' % (self._state, new_state)
49 self._state = new_state
51 self.timeline.AddEvent(self._state)
53 if self._state in self.final_states:
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSState.java 71 private final StateClass _state; field in class:DNSState
75 _state = state;
158 return _state == StateClass.probing;
167 return _state == StateClass.announcing;
176 return _state == StateClass.announced;
185 return _state == StateClass.canceling;
194 return _state == StateClass.canceled;
203 return _state == StateClass.closing;
212 return _state == StateClass.closed;
  /external/lzma/CPP/7zip/Compress/
Lzma2Decoder.cpp 35 Lzma2Dec_Construct(&_state);
43 Lzma2Dec_Free(&_state, &g_Alloc);
52 RINOK(SResToHRESULT(Lzma2Dec_Allocate(&_state, prop[0], &g_Alloc)));
77 Lzma2Dec_Init(&_state);
103 SizeT wrPos = _state.decoder.dicPos;
105 SizeT next = (_state.decoder.dicBufSize - _state.decoder.dicPos < step) ?
106 _state.decoder.dicBufSize :
107 _state.decoder.dicPos + step;
121 SizeT dicPos = _state.decoder.dicPos;
    [all...]
LzmaDecoder.cpp 35 LzmaDec_Construct(&_state);
40 LzmaDec_Free(&_state, &g_Alloc);
62 RINOK(SResToHRESULT(LzmaDec_Allocate(&_state, prop, size, &g_Alloc)));
74 LzmaDec_Init(&_state);
99 SizeT next = (_state.dicBufSize - _state.dicPos < _outBufSize) ? _state.dicBufSize : (_state.dicPos + _outBufSize);
108 SizeT dicPos = _state.dicPos;
125 SRes res = LzmaDec_DecodeToDic(&_state, dicPos + curSize, _inBuf + _inPos, &inSizeProcessed, finishMode, &status);
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSStatefulObject.java 113 protected volatile DNSState _state; field in class:DNSStatefulObject.DefaultImplementation
123 _state = DNSState.PROBING_1;
145 if (this._task == null && this._state == state) {
148 if (this._task == null && this._state == state) {
181 return this._task == task && this._state == state;
198 this._state = state;
222 this.setState(this._state.advance());
243 this.setState(this._state.revert());
316 return this._state.isProbing();
324 return this._state.isAnnouncing()
    [all...]
HostInfo.java 41 private final HostInfoState _state; field in class:HostInfo
123 this._state = new HostInfoState(dns);
265 buf.append(_state);
288 return this._state.getDns();
296 return this._state.advanceState(task);
304 this._state.removeAssociationWithTask(task);
312 return this._state.revertState();
320 this._state.associateWithTask(task, state);
328 return this._state.isAssociatedWithTask(task, state);
336 return this._state.cancelState()
    [all...]
  /external/tpm2/generator/
extract_structures.py 40 self._state = self.ANCHOR
66 if self._state != new_state:
67 self._state = new_state
99 if self._state == self.ANCHOR:
101 elif self._state == self.MAYBE_DONE:
106 elif self._state == self.TABLE_NAME:
108 elif tag == 'p' and self._state == self.TABLE_NAME and not self._title:
111 elif self._state == self.TABLE_NAME and tag == 'table':
125 elif self._state == self.MAYBE_DONE and tag == 'tr':
127 elif self._state == self.SKIP_HEADER and tag == 'tr'
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
fileinput.py 87 _state = None variable
99 global _state
100 if _state and _state._file:
102 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
103 return _state
107 global _state
108 state = _state
109 _state = None
123 if not _state:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
fileinput.py 87 _state = None variable
100 global _state
101 if _state and _state._file:
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
104 return _state
108 global _state
109 state = _state
110 _state = None
124 if not _state:
    [all...]
  /external/python/cpython2/Lib/
fileinput.py 80 _state = None variable
93 global _state
94 if _state and _state._file:
96 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
97 return _state
101 global _state
102 state = _state
103 _state = None
117 if not _state
    [all...]
  /external/python/cpython3/Lib/
fileinput.py 81 _state = None variable
91 global _state
92 if _state and _state._file:
94 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
95 return _state
99 global _state
100 state = _state
101 _state = None
115 if not _state
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
fileinput.py 87 _state = None variable
100 global _state
101 if _state and _state._file:
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
104 return _state
108 global _state
109 state = _state
110 _state = None
124 if not _state
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
fileinput.py 87 _state = None variable
100 global _state
101 if _state and _state._file:
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
104 return _state
108 global _state
109 state = _state
110 _state = None
124 if not _state
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fileinput.py 87 _state = None variable
100 global _state
101 if _state and _state._file:
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
104 return _state
108 global _state
109 state = _state
110 _state = None
124 if not _state
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fileinput.py 87 _state = None variable
100 global _state
101 if _state and _state._file:
103 _state = FileInput(files, inplace, backup, bufsize, mode, openhook)
104 return _state
108 global _state
109 state = _state
110 _state = None
124 if not _state
    [all...]
  /external/autotest/scheduler/
pidfile_monitor.py 50 self._state = drone_manager.PidfileContents()
95 return self._state.process is not None
100 assert self._state.process is not None
101 return self._state.process
110 self._state = drone_manager.PidfileContents()
112 self._state = contents
116 self.on_lost_process(self._state.process)
125 if self._state.process is None:
129 if self._state.exit_status is None:
131 if self._drone_manager.is_process_running(self._state.process)
    [all...]
  /external/python/cpython3/Lib/concurrent/futures/
_base.py 159 f._state not in [CANCELLED_AND_NOTIFIED, FINISHED] for f in fs)
198 if f._state in [CANCELLED_AND_NOTIFIED, FINISHED])
259 if f._state in [CANCELLED_AND_NOTIFIED, FINISHED])
288 self._state = PENDING
303 if self._state == FINISHED:
308 _STATE_TO_DESCRIPTION_MAP[self._state],
314 _STATE_TO_DESCRIPTION_MAP[self._state],
319 _STATE_TO_DESCRIPTION_MAP[self._state])
328 if self._state in [RUNNING, FINISHED]:
331 if self._state in [CANCELLED, CANCELLED_AND_NOTIFIED]
    [all...]
  /external/autotest/client/cros/cellular/wardmodem/state_machines/
network_operator_machine.py 60 self._state['operator_index'] = self._default_operator_index
61 self._state['automatic_registration'] = 'TRUE'
62 self._state['access_technology'] = self._extract_technology(
110 operator_format = self._state['operator_format']
112 operator_index = self._state['operator_index']
114 if operator_index == self._state.INVALID_VALUE:
133 return self.TECHNOLOGY_CODE[self._state['access_technology']]
network_registration_machine.py 53 self._state['registration_change_message_verbosity'] = 0
88 registration_status = self._state['registration_status']
89 access_technology = self._state['access_technology']
90 verbosity = self._state['registration_change_message_verbosity']
91 technology = self._state['access_technology']
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 163 self._state = state
183 if self._state is None:
187 self._state.following = []
188 self._state.errorRecovery = False
189 self._state.lastErrorIndex = -1
190 self._state.syntaxErrors = 0
192 self._state.backtracking = 0
193 if self._state.ruleMemo is not None:
194 self._state.ruleMemo = {}
214 self._state.errorRecovery = Fals
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
dump_state.py 231 self._state = Struct()
232 self._state.scissors = []
233 self._state.viewports = []
234 self._state.vertex_buffers = []
235 self._state.vertex_elements = []
236 self._state.vs = Struct()
237 self._state.gs = Struct()
238 self._state.fs = Struct()
239 self._state.vs.shader = None
240 self._state.gs.shader = Non
    [all...]
  /external/webrtc/webrtc/modules/video_coding/
frame_buffer.cc 23 : _state(kStateEmpty), _nackCount(0), _latestPacketTimeMs(-1) {}
29 _state(rhs._state),
93 if (kStateEmpty == _state) {
200 _state = kStateEmpty;
206 if (_state == state) {
212 assert(_state == kStateEmpty);
218 assert(_state == kStateEmpty || _state == kStateIncomplete ||
219 _state == kStateDecodable)
    [all...]
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_objects.h 133 rbug_shader(void *_state)
135 if (!_state)
137 return (struct rbug_shader *)_state;
173 rbug_shader_unwrap(void *_state)
176 if (!_state)
179 shader = rbug_shader(_state);

Completed in 460 milliseconds

1 2 3 4 5 6