Home
last modified time | relevance | path

Searched refs:current_state (Results 1 – 25 of 32) sorted by relevance

12

/third_party/node/deps/v8/src/heap/
Dlocal-heap.cc177 ThreadState current_state = ThreadState::Running(); in ParkSlowPath() local
178 if (state_.CompareExchangeStrong(current_state, ThreadState::Parked())) in ParkSlowPath()
182 DCHECK(current_state.IsRunning()); in ParkSlowPath()
185 DCHECK(current_state.IsSafepointRequested() || in ParkSlowPath()
186 current_state.IsCollectionRequested()); in ParkSlowPath()
188 if (current_state.IsSafepointRequested()) { in ParkSlowPath()
196 if (current_state.IsCollectionRequested()) { in ParkSlowPath()
202 DCHECK(!current_state.IsSafepointRequested()); in ParkSlowPath()
204 if (state_.CompareExchangeStrong(current_state, in ParkSlowPath()
205 current_state.SetParked())) { in ParkSlowPath()
[all …]
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_resource_state.cpp162 const d3d12_subresource_state *current_state) in resource_state_if_promoted() argument
171 if (current_state->state == D3D12_RESOURCE_STATE_COMMON) in resource_state_if_promoted()
176 if (current_state->is_promoted && in resource_state_if_promoted()
177 (current_state->state & D3D12_RESOURCE_STATE_GENERIC_READ) != D3D12_RESOURCE_STATE_COMMON) in resource_state_if_promoted()
179 return desired_state | current_state->state; in resource_state_if_promoted()
291 transition_required(D3D12_RESOURCE_STATES current_state, D3D12_RESOURCE_STATES *destination_state) in transition_required() argument
294 if (current_state == *destination_state) { in transition_required()
298 …if (current_state == D3D12_RESOURCE_STATE_COMMON || *destination_state == D3D12_RESOURCE_STATE_COM… in transition_required()
303 if ((current_state & *destination_state) == *destination_state) { in transition_required()
304 *destination_state = current_state; in transition_required()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/
Dlow_level_hash.cc46 uint64_t current_state = seed ^ salt[0]; in LowLevelHash() local
52 uint64_t duplicated_state = current_state; in LowLevelHash()
64 uint64_t cs0 = Mix(a ^ salt[1], b ^ current_state); in LowLevelHash()
65 uint64_t cs1 = Mix(c ^ salt[2], d ^ current_state); in LowLevelHash()
66 current_state = (cs0 ^ cs1); in LowLevelHash()
76 current_state = current_state ^ duplicated_state; in LowLevelHash()
85 current_state = Mix(a ^ salt[1], b ^ current_state); in LowLevelHash()
116 uint64_t w = Mix(a ^ salt[1], b ^ current_state); in LowLevelHash()
/third_party/node/deps/v8/src/init/
Dv8.cc59 V8StartupState current_state = v8_startup_state_; in AdvanceStartupState() local
60 CHECK_NE(current_state, V8StartupState::kPlatformDisposed); in AdvanceStartupState()
62 static_cast<V8StartupState>(static_cast<int>(current_state) + 1); in AdvanceStartupState()
73 static_cast<int>(current_state), static_cast<int>(next_state)); in AdvanceStartupState()
75 if (!v8_startup_state_.compare_exchange_strong(current_state, next_state)) { in AdvanceStartupState()
79 static_cast<int>(current_state), in AdvanceStartupState()
/third_party/pcre2/pcre2/src/
Dpcre2_dfa_match.c746 stateblock *current_state = active_states + i; in internal_dfa_match() local
750 int state_offset = current_state->offset; in internal_dfa_match()
761 if (current_state->data > 0) in internal_dfa_match()
763 ADD_NEW_DATA(state_offset, current_state->count, in internal_dfa_match()
764 current_state->data - 1); in internal_dfa_match()
770 current_state->offset = state_offset = -state_offset; in internal_dfa_match()
781 active_states[j].count == current_state->count) in internal_dfa_match()
1280 count = current_state->count; /* Already matched */ in internal_dfa_match()
1370 count = current_state->count; /* Number already matched */ in internal_dfa_match()
1399 count = current_state->count; /* Number already matched */ in internal_dfa_match()
[all …]
/third_party/ltp/testcases/kernel/device-drivers/pci/tpci_kernel/
Dltp_tpci.c164 if (dev->current_state == PCI_D3hot || in pci_disable()
165 dev->current_state == PCI_D3cold) { in pci_disable()
168 pci_power_name(dev->current_state)); in pci_disable()
174 pci_power_name(dev->current_state)); in pci_disable()
/third_party/mesa3d/src/gallium/drivers/r300/
Dr300_state.c907 struct pipe_framebuffer_state *current_state = r300->fb_state.state; in r300_set_framebuffer_state() local
926 if (current_state->zsbuf && r300->zmask_in_use && !r300->locked_zbuffer) { in r300_set_framebuffer_state()
929 if (!pipe_surface_equal(current_state->zsbuf, state->zsbuf)) { in r300_set_framebuffer_state()
936 pipe_surface_reference(&r300->locked_zbuffer, current_state->zsbuf); in r300_set_framebuffer_state()
955 if (!!current_state->zsbuf != !!state->zsbuf) { in r300_set_framebuffer_state()
962 while (current_state->nr_cbufs && !current_state->cbufs[current_state->nr_cbufs-1]) in r300_set_framebuffer_state()
963 current_state->nr_cbufs--; in r300_set_framebuffer_state()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/play/
Dgstplay.c160 GstState target_state, current_state; member
888 self->current_state = GST_STATE_NULL; in ready_timeout_cb()
935 self->current_state = GST_STATE_NULL; in on_error()
1121 && self->current_state >= GST_STATE_PAUSED) { in buffering_cb()
1272 self->current_state = new_state; in state_changed_cb()
2578 self->current_state = GST_STATE_NULL; in gst_play_main()
2607 self->current_state = GST_STATE_NULL; in gst_play_main()
2713 if (self->current_state < GST_STATE_PAUSED) in gst_play_play_internal()
2716 if (self->current_state >= GST_STATE_PAUSED && !self->is_eos in gst_play_play_internal()
2788 if (self->current_state < GST_STATE_PAUSED) in gst_play_pause_internal()
[all …]
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/transcoder/
Dgsttranscoder.c84 GstState target_state, current_state; member
674 self->current_state = new_state; in state_changed_cb()
823 self->current_state = GST_STATE_NULL; in gst_transcoder_main()
840 self->current_state = GST_STATE_NULL; in gst_transcoder_main()
/third_party/rust/crates/regex/src/
Ddfa.rs1150 current_state: Option<&mut StatePtr>, in cached_state()
1169 && !self.clear_cache_and_save(current_state) in cached_state()
1254 current_state: Option<&mut StatePtr>, in clear_cache_and_save()
1260 match current_state { in clear_cache_and_save()
/third_party/gstreamer/gstreamer/gst/
Dgstelement.h245 #define GST_STATE(elem) (GST_ELEMENT_CAST(elem)->current_state)
767 GstState current_state; member
/third_party/gstreamer/gstplugins_base/gst-libs/gst/pbutils/
Dgstdiscoverer.c123 GstState current_state; member
359 dc->priv->current_state = GST_STATE_NULL; in gst_discoverer_init()
1628 && dc->priv->target_state == dc->priv->current_state; in handle_message()
1642 dc->priv->current_state = new; in handle_message()
1646 && dc->priv->target_state == dc->priv->current_state; in handle_message()
1976 dc->priv->current_state = GST_STATE_NULL; in discoverer_cleanup()
/third_party/gstreamer/gstreamer/libs/gst/helpers/
Dgst_gdb.py960 current_state = self.val["current_state"]
961 s = "state: %s" % element_state_to_name(current_state)
964 if state > 0 and state != current_state:
/third_party/node/src/
Dnode_api.cc456 unsigned char current_state = dispatch_state.fetch_or(kDispatchPending); in Send() local
457 if ((current_state & kDispatchRunning) == kDispatchRunning) { in Send()
/third_party/mesa3d/src/imagination/vulkan/pds/
Dpvr_pds.h375 bool current_state; member
Dpvr_pds.c1044 if (vertex_stream->current_state) { in pvr_pds_vertex_shader()
1083 if (vertex_stream->current_state) { in pvr_pds_vertex_shader()
/third_party/gstreamer/gstplugins_bad/ext/avtp/
Dgstavtpcvfpay.c751 if (GST_ELEMENT (avtpcvfpay)->current_state == GST_STATE_PLAYING) { in gst_avtp_cvf_pay_sink_event()
/third_party/node/deps/v8/src/wasm/
Dwasm-code-manager.cc2371 TieringState current_state; in RecompileForTiering() local
2374 current_state = tiering_state_; in RecompileForTiering()
2387 RecompileNativeModule(this, current_state); in RecompileForTiering()
/third_party/toybox/kconfig/
Dlex.zconf.c_shipped675 static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
1567 * next_state = yy_try_NUL_trans( current_state );
/third_party/gstreamer/gstreamer/gst/parse/
Dlex.priv_gst_parse_yy.c554 static yy_state_type yy_try_NUL_trans ( yy_state_type current_state , yyscan_t yyscanner);
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/
Dpreprocessor_lex_autogen.cpp567 static yy_state_type yy_try_NUL_trans(yy_state_type current_state, yyscan_t yyscanner);
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/preprocessor/
DTokenizer.cpp719 static yy_state_type yy_try_NUL_trans ( yy_state_type current_state , yyscan_t yyscanner);
/third_party/gstreamer/gstplugins_good/gst/matroska/
Dmatroska-demux.c2537 GstMatroskaReadState current_state; in gst_matroska_demux_search_pos() local
2553 current_state = demux->common.state; in gst_matroska_demux_search_pos()
2554 g_return_val_if_fail (current_state == GST_MATROSKA_READ_STATE_DATA, NULL); in gst_matroska_demux_search_pos()
2763 demux->common.state = current_state; in gst_matroska_demux_search_pos()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
Dglslang_lex.cpp504 static yy_state_type yy_try_NUL_trans ( yy_state_type current_state , yyscan_t yyscanner);
/third_party/gstreamer/gstplugins_bad/sys/dvb/
Dgstdvbsrc.c1164 if (GST_ELEMENT (dvbsrc)->current_state > GST_STATE_READY) { in gst_dvbsrc_set_pids()

12