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

1 2 3 4 5 6 7 8 9

  /external/qemu/include/migration/
vmstate.h 176 #define vmstate_offset_value(_state, _field, _type) \
177 (offsetof(_state, _field) + \
178 type_check(_type, typeof_field(_state, _field)))
180 #define vmstate_offset_pointer(_state, _field, _type) \
181 (offsetof(_state, _field) + \
182 type_check_pointer(_type, typeof_field(_state, _field)))
184 #define vmstate_offset_array(_state, _field, _type, _num) \
185 (offsetof(_state, _field) + \
186 type_check_array(_type, typeof_field(_state, _field), _num))
188 #define vmstate_offset_2darray(_state, _field, _type, _n1, _n2)
    [all...]
  /external/lzma/CPP/7zip/Compress/
Lzma2Decoder.cpp 31 Lzma2Dec_Construct(&_state);
40 Lzma2Dec_Free(&_state, &g_Alloc);
47 RINOK(SResToHRESULT(Lzma2Dec_Allocate(&_state, prop[0], &g_Alloc)));
68 Lzma2Dec_Init(&_state);
91 SizeT dicPos = _state.decoder.dicPos;
92 SizeT curSize = _state.decoder.dicBufSize - dicPos;
113 SRes res = Lzma2Dec_DecodeToDic(&_state, dicPos + curSize, _inBuf + _inPos, &inSizeProcessed, finishMode, &status);
117 SizeT outSizeProcessed = _state.decoder.dicPos - dicPos;
123 if (res != 0 || _state.decoder.dicPos == _state.decoder.dicBufSize || finished || stopDecoding)
    [all...]
LzmaDecoder.cpp 34 LzmaDec_Construct(&_state);
43 LzmaDec_Free(&_state, &g_Alloc);
65 RINOK(SResToHRESULT(LzmaDec_Allocate(&_state, prop, size, &g_Alloc)));
77 LzmaDec_Init(&_state);
95 SizeT next = (_state.dicBufSize - _state.dicPos < _outBufSize) ? _state.dicBufSize : (_state.dicPos + _outBufSize);
104 SizeT dicPos = _state.dicPos;
121 SRes res = LzmaDec_DecodeToDic(&_state, dicPos + curSize, _inBuf + _inPos, &inSizeProcessed, finishMode, &status);
    [all...]
DeltaFilter.cpp 14 Byte _state[DELTA_STATE_SIZE]; member in struct:CDelta
16 void DeltaInit() { Delta_Init(_state); }
55 Delta_Encode(_state, _delta, data, size);
87 Delta_Decode(_state, _delta, data, size);
Lzma2Decoder.h 30 CLzma2Dec _state; member in class:NCompress::NLzma2::CDecoder
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
CSSFormatter.js 41 this._state = {};
82 this._state.eatWhitespace = true;
83 if (/^property/.test(type) && !this._state.inPropertyValue)
84 this._state.seenProperty = true;
88 if (!this._state.eatWhitespace)
92 this._state.eatWhitespace = false;
97 if (this._state.afterClosingBrace)
99 this._state.afterClosingBrace = false;
103 if (this._state.inPropertyValue)
106 this._state.afterClosingBrace = true
    [all...]
  /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/chromium_org/third_party/webrtc/modules/video_coding/main/source/
frame_buffer.cc 23 _state(kStateEmpty),
35 _state(rhs._state),
95 if (kStateEmpty == _state) {
198 _state = kStateEmpty;
205 if (_state == state) {
211 assert(_state == kStateEmpty);
217 assert(_state == kStateEmpty ||
218 _state == kStateIncomplete ||
219 _state == kStateDecodable)
    [all...]
  /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/jmdns/src/javax/jmdns/impl/
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...]
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...]
  /external/chromium_org/third_party/mesa/src/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);
  /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);
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/heap_snapshot_worker/
HeapSnapshotLoader.js 50 this._state = "find-snapshot-info";
127 switch (this._state) {
134 this._state = "parse-snapshot-info";
144 this._state = "find-nodes";
160 this._state = "parse-nodes";
169 this._state = "find-edges";
186 this._state = "parse-edges";
198 this._state = "find-trace-function-infos";
200 this._state = "find-strings";
217 this._state = "parse-trace-function-infos"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
pool.py 141 self._state = RUN
166 self._worker_handler._state = RUN
175 self._task_handler._state = RUN
183 self._result_handler._state = RUN
242 assert self._state == RUN
249 assert self._state == RUN
256 assert self._state == RUN
274 assert self._state == RUN
292 assert self._state == RUN
301 assert self._state == RU
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
pool.py 141 self._state = RUN
166 self._worker_handler._state = RUN
175 self._task_handler._state = RUN
183 self._result_handler._state = RUN
242 assert self._state == RUN
249 assert self._state == RUN
256 assert self._state == RUN
274 assert self._state == RUN
292 assert self._state == RUN
301 assert self._state == RU
    [all...]
  /external/webrtc/src/system_wrappers/source/
event_posix.cc 49 _state(kDown)
108 _state = kDown;
119 _state = kUp;
134 if (kDown == _state)
167 _state = kDown;
189 if (kUp != _state)
193 _state = kDown;
  /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/qemu/include/block/
block_int.h 244 #define DEFINE_BLOCK_PROPERTIES(_state, _conf) \
245 DEFINE_PROP_DRIVE("drive", _state, _conf.bs), \
246 DEFINE_PROP_UINT16("logical_block_size", _state, \
248 DEFINE_PROP_UINT16("physical_block_size", _state, \
250 DEFINE_PROP_UINT16("min_io_size", _state, _conf.min_io_size, 0), \
251 DEFINE_PROP_UINT32("opt_io_size", _state, _conf.opt_io_size, 0)
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtcp_utility.cc 35 _state(State_TopLevel),
78 switch (_state)
511 _state = State_ReportBlockItem;
566 _state = State_ReportBlockItem;
570 _state = State_TopLevel;
583 _state = State_TopLevel;
654 _state = State_ExtendedJitterItem;
665 _state = State_TopLevel;
687 _state = State_TopLevel;
694 _state = State_SDESChunk
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
regex_nfa.h 202 * @brief struct _State
211 struct _State
222 explicit _State(_OpcodeT __opcode)
226 _State(const _Matcher& __m)
230 _State(_OpcodeT __opcode, unsigned int __s, const _Tagger& __t)
235 _State(_StateIdT __next, _StateIdT __alt)
270 : public _Automaton, public std::vector<_State>
273 typedef _State _StateT;
349 /// Describes a sequence of one or more %_State, its current start
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex_nfa.h 202 * @brief struct _State
211 struct _State
222 explicit _State(_OpcodeT __opcode)
226 _State(const _Matcher& __m)
230 _State(_OpcodeT __opcode, unsigned int __s, const _Tagger& __t)
235 _State(_StateIdT __next, _StateIdT __alt)
270 : public _Automaton, public std::vector<_State>
273 typedef _State _StateT;
349 /// Describes a sequence of one or more %_State, its current start
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
regex_nfa.h 202 * @brief struct _State
211 struct _State
222 explicit _State(_OpcodeT __opcode)
226 _State(const _Matcher& __m)
230 _State(_OpcodeT __opcode, unsigned int __s, const _Tagger& __t)
235 _State(_StateIdT __next, _StateIdT __alt)
270 : public _Automaton, public std::vector<_State>
273 typedef _State _StateT;
349 /// Describes a sequence of one or more %_State, its current start

Completed in 968 milliseconds

1 2 3 4 5 6 7 8 9