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

1 2 3 4 5 6 7

  /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/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/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...]
ServiceInfoImpl.java 64 private final ServiceInfoState _state; field in class:ServiceInfoImpl
95 if (this._state.isAnnounced()) {
199 this._state = new ServiceInfoState(this);
233 this._state = new ServiceInfoState(this);
    [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);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HeapSnapshotLoader.js 49 this._state = "find-snapshot-info";
120 switch (this._state) {
127 this._state = "parse-snapshot-info";
135 this._state = "find-nodes";
150 this._state = "parse-nodes";
156 this._state = "find-edges";
172 this._state = "parse-edges";
179 this._state = "find-strings";
190 this._state = "accumulate-strings";
  /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...]
  /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/
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)
  /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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
future 860 typedef __future_base::_State_base _State;
863 template<typename, typename> friend class _State::_Setter;
865 shared_ptr<_State> _M_future;
870 : _M_future(std::make_shared<_State>()),
881 : _M_future(std::allocate_shared<_State>(__a)),
919 auto __setter = _State::__setter(this, __r);
926 auto __setter = _State::__setter(this, std::move(__r));
933 auto __setter = _State::__setter(__p, this);
952 typedef __future_base::_State_base _State;
955 template<typename, typename> friend class _State::_Setter
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
future 860 typedef __future_base::_State_base _State;
863 template<typename, typename> friend class _State::_Setter;
865 shared_ptr<_State> _M_future;
870 : _M_future(std::make_shared<_State>()),
881 : _M_future(std::allocate_shared<_State>(__a)),
919 auto __setter = _State::__setter(this, __r);
926 auto __setter = _State::__setter(this, std::move(__r));
933 auto __setter = _State::__setter(__p, this);
952 typedef __future_base::_State_base _State;
955 template<typename, typename> friend class _State::_Setter
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
future 860 typedef __future_base::_State_base _State;
863 template<typename, typename> friend class _State::_Setter;
865 shared_ptr<_State> _M_future;
870 : _M_future(std::make_shared<_State>()),
881 : _M_future(std::allocate_shared<_State>(__a)),
919 auto __setter = _State::__setter(this, __r);
926 auto __setter = _State::__setter(this, std::move(__r));
933 auto __setter = _State::__setter(__p, this);
952 typedef __future_base::_State_base _State;
955 template<typename, typename> friend class _State::_Setter
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
future 860 typedef __future_base::_State_base _State;
863 template<typename, typename> friend class _State::_Setter;
865 shared_ptr<_State> _M_future;
870 : _M_future(std::make_shared<_State>()),
881 : _M_future(std::allocate_shared<_State>(__a)),
919 auto __setter = _State::__setter(this, __r);
926 auto __setter = _State::__setter(this, std::move(__r));
933 auto __setter = _State::__setter(__p, this);
952 typedef __future_base::_State_base _State;
955 template<typename, typename> friend class _State::_Setter
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 53 int _state = Base.StateInit(); field in class:Encoder
59 _state = Base.StateInit();
604 _optimum[0].State = _state;
608 _optimum[1].Price = SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isMatch[(_state << Base.kNumPosStatesBitsMax) + posState]) +
609 _literalEncoder.GetSubCoder(position, _previousByte).GetPrice(!Base.StateIsCharState(_state), matchByte, currentByte);
612 int matchPrice = SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(_state << Base.kNumPosStatesBitsMax) + posState]);
613 int repMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[_state]);
617 int shortRepPrice = repMatchPrice + GetRepLen1Price(_state, posState);
650 int price = repMatchPrice + GetPureRepPrice(i, _state, posState);
666 int normalMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRep[_state]);
    [all...]

Completed in 997 milliseconds

1 2 3 4 5 6 7