HomeSort by relevance Sort by last modified time
    Searched defs:_state (Results 1 - 23 of 23) sorted by null

  /external/lzma/CPP/7zip/Compress/
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
LzmaDecoder.h 29 CLzmaDec _state; member in class:NCompress::NLzma::CDecoder
  /external/webrtc/src/system_wrappers/source/
event_posix.h 62 State _state; member in class:webrtc::EventPosix
  /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...]
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/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;
  /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/stlport/stlport/stl/
type_traits.h 595 int _state; member in class:_TpWithState
  /ndk/sources/cxx-stl/stlport/stlport/stl/
type_traits.h 595 int _state; member in class:_TpWithState
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
type_traits.h 595 int _state; member in class:_TpWithState
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
type_traits.h 595 int _state; member in class:_TpWithState
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
type_traits.h 595 int _state; member in class:_TpWithState
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
type_traits.h 595 int _state; member in class:_TpWithState
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
type_traits.h 595 int _state; member in class:_TpWithState
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 53 Base.State _state = new Base.State(); field in class:SevenZip.Compression.LZMA.Encoder
59 _state.Init();
604 _optimum[0].State = _state;
608 _optimum[1].Price = _isMatch[(_state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice0() +
609 _literalEncoder.GetSubCoder(position, _previousByte).GetPrice(!_state.IsCharState(), matchByte, currentByte);
612 UInt32 matchPrice = _isMatch[(_state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice1();
613 UInt32 repMatchPrice = matchPrice + _isRep[_state.Index].GetPrice1();
617 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(_state, posState);
650 UInt32 price = repMatchPrice + GetPureRepPrice(i, _state, posState);
666 UInt32 normalMatchPrice = matchPrice + _isRep[_state.Index].GetPrice0();
    [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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 749 milliseconds