Searched defs:_state (Results 1 - 25 of 33) sorted by relevance

12

/external/flatbuffers/tests/FlatBuffers.Test/
H A DLcg.cs25 private uint _state; field in class:FlatBuffers.Test.Lcg
29 _state = InitialValue;
34 return (_state = 69069 * _state + 362437);
39 _state = InitialValue;
/external/webrtc/webrtc/modules/video_coding/
H A Dframe_buffer.h84 VCMFrameBufferStateEnum _state; // Current state of the frame member in class:webrtc::VCMFrameBuffer
/external/lzma/CPP/7zip/Compress/
H A DLzma2Decoder.h44 CLzma2Dec _state; member in class:NCompress::NLzma2::CDecoder
H A DDeltaFilter.cpp19 Byte _state[DELTA_STATE_SIZE]; member in struct:NCompress::NDelta::CDelta
22 void DeltaInit() { Delta_Init(_state); }
50 Delta_Encode(_state, _delta, data, size);
110 Delta_Decode(_state, _delta, data, size);
H A DLzmaDecoder.h30 CLzmaDec _state; member in class:NCompress::NLzma::CDecoder
/external/mesa3d/src/compiler/nir/
H A Dnir_opt_dce.c55 mark_live_cb(nir_src *src, void *_state) argument
57 struct exec_list *worklist = (struct exec_list *) _state;
H A Dnir_lower_regs_to_ssa.c40 rewrite_src(nir_src *src, void *_state) argument
42 struct regs_to_ssa_state *state = _state;
84 rewrite_dest(nir_dest *dest, void *_state) argument
86 struct regs_to_ssa_state *state = _state;
H A Dnir_opt_copy_propagate.c202 copy_prop_src_cb(nir_src *src, void *_state) argument
204 copy_prop_state *state = (copy_prop_state *) _state;
H A Dnir.c1316 visit_dest_indirect(nir_dest *dest, void *_state) argument
1318 visit_dest_indirect_state *state = (visit_dest_indirect_state *) _state;
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSState.java71 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/mesa3d/src/gallium/drivers/rbug/
H A Drbug_objects.h133 rbug_shader(void *_state) argument
135 if (!_state)
137 return (struct rbug_shader *)_state;
173 rbug_shader_unwrap(void *_state) argument
176 if (!_state)
179 shader = rbug_shader(_state);
H A Drbug_context.c650 const struct pipe_framebuffer_state *_state)
666 if (_state) {
667 memcpy(&unwrapped_state, _state, sizeof(unwrapped_state));
669 rb_pipe->curr.nr_cbufs = _state->nr_cbufs;
670 for(i = 0; i < _state->nr_cbufs; i++) {
671 unwrapped_state.cbufs[i] = rbug_surface_unwrap(_state->cbufs[i]);
672 if (_state->cbufs[i])
673 rb_pipe->curr.cbufs[i] = rbug_resource(_state->cbufs[i]->texture);
675 unwrapped_state.zsbuf = rbug_surface_unwrap(_state->zsbuf);
676 if (_state
649 rbug_set_framebuffer_state(struct pipe_context *_pipe, const struct pipe_framebuffer_state *_state) argument
[all...]
/external/python/cpython2/Lib/
H A Dfileinput.py80 _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/
H A Dfileinput.py81 _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...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSStatefulObject.java113 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
[all...]
H A DHostInfo.java41 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
[all...]
H A DServiceInfoImpl.java64 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);
958 return _state.advanceState(task);
966 return _state.revertState();
974 return _state.cancelState();
982 return this._state.closeState();
990 return this._state.recoverState();
998 _state
[all...]
/external/python/cpython3/Lib/asyncio/
H A Dfutures.py128 _state = _PENDING variable in class:Future
194 if self._state != _PENDING:
196 self._state = _CANCELLED
216 return self._state == _CANCELLED
226 return self._state != _PENDING
235 if self._state == _CANCELLED:
237 if self._state != _FINISHED:
255 if self._state == _CANCELLED:
257 if self._state != _FINISHED:
272 if self._state !
[all...]
/external/python/cpython3/Lib/multiprocessing/
H A Dsynchronize.py380 self._state = 0
393 def _state(self): member in class:Barrier
396 @_state.setter
397 def _state(self, value): member in class:Barrier
/external/libnl/python/netlink/route/
H A Dlink.py425 def _state(self): member in class:Link
464 '{a|_state} <{a|_flags}> {a|_brief}')
/external/curl/lib/
H A Dftp.c98 static void _state(struct connectdata *conn,
100 #define state(x,y) _state(x,y)
102 static void _state(struct connectdata *conn,
105 #define state(x,y) _state(x,y,__LINE__)
770 static void _state(struct connectdata *conn, function
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs53 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
[all...]
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java53 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/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtcp_utility.h464 ParseState _state; member in class:webrtc::RTCPUtility::RTCPParserV2
/external/python/cpython3/Tools/msi/bundle/bootstrap/
H A DPythonBootstrapperApplication.cpp2243 _state = state;
2247 if ((PYBA_STATE_APPLIED <= _state && BOOTSTRAPPER_DISPLAY_FULL > _command.display)) {
2265 DeterminePageId(_state, &newPageId);
2390 if (PYBA_STATE_APPLIED <= _state || PYBA_STATE_HELP == _state) {
2403 if (PYBA_STATE_APPLYING <= _state && PYBA_STATE_APPLIED > _state) {
2469 if (_state != state) {
2479 ::PostMessageW(_hWnd, WM_PYBA_CHANGE_STATE, 0, _state);
2792 DeterminePageId(_state,
3202 PYBA_STATE _state; member in class:PythonBootstrapperApplication
[all...]

Completed in 845 milliseconds

12