Home
last modified time | relevance | path

Searched refs:reset (Results 76 - 100 of 8167) sorted by relevance

12345678910>>...327

/third_party/musl/porting/liteos_a/user/src/process/
H A Dsystem.c15 sigset_t old, reset; in system() local
31 sigemptyset(&reset); in system()
32 if (oldint.sa_handler != SIG_IGN) sigaddset(&reset, SIGINT); in system()
33 if (oldquit.sa_handler != SIG_IGN) sigaddset(&reset, SIGQUIT); in system()
36 posix_spawnattr_setsigdefault(&attr, &reset); in system()
/third_party/skia/third_party/externals/icu/fuzzers/
H A Dicu_break_iterator_fuzzer.cc23 bi.reset(icu::BreakIterator::createWordInstance(locale, status)); in LLVMFuzzerTestOneInput()
26 bi.reset(icu::BreakIterator::createLineInstance(locale, status)); in LLVMFuzzerTestOneInput()
29 bi.reset(icu::BreakIterator::createCharacterInstance(locale, status)); in LLVMFuzzerTestOneInput()
32 bi.reset(icu::BreakIterator::createSentenceInstance(locale, status)); in LLVMFuzzerTestOneInput()
35 bi.reset(icu::BreakIterator::createTitleInstance(locale, status)); in LLVMFuzzerTestOneInput()
H A Dicu_break_iterator_utf32_fuzzer.cc23 bi.reset(icu::BreakIterator::createWordInstance(locale, status)); in LLVMFuzzerTestOneInput()
26 bi.reset(icu::BreakIterator::createLineInstance(locale, status)); in LLVMFuzzerTestOneInput()
29 bi.reset(icu::BreakIterator::createCharacterInstance(locale, status)); in LLVMFuzzerTestOneInput()
32 bi.reset(icu::BreakIterator::createSentenceInstance(locale, status)); in LLVMFuzzerTestOneInput()
35 bi.reset(icu::BreakIterator::createTitleInstance(locale, status)); in LLVMFuzzerTestOneInput()
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dxmlparser.cpp235 if(mXMLDecl.reset(src).lookingAt(0, errorCode)) { in parseFile()
240 mAttrValue.reset(src); in parseFile()
340 mXMLDecl.reset(src); in parse()
341 mXMLComment.reset(src); in parse()
342 mXMLSP.reset(src); in parse()
343 mXMLDoctype.reset(src); in parse()
344 mXMLPI.reset(src); in parse()
345 mXMLElemStart.reset(src); in parse()
346 mXMLElemEnd.reset(src); in parse()
347 mXMLElemEmpty.reset(sr in parse()
[all...]
/third_party/icu/icu4c/source/tools/toolutil/
H A Dxmlparser.cpp235 if(mXMLDecl.reset(src).lookingAt(0, errorCode)) { in parseFile()
240 mAttrValue.reset(src); in parseFile()
340 mXMLDecl.reset(src); in parse()
341 mXMLComment.reset(src); in parse()
342 mXMLSP.reset(src); in parse()
343 mXMLDoctype.reset(src); in parse()
344 mXMLPI.reset(src); in parse()
345 mXMLElemStart.reset(src); in parse()
346 mXMLElemEnd.reset(src); in parse()
347 mXMLElemEmpty.reset(sr in parse()
[all...]
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Dxmlparser.cpp235 if(mXMLDecl.reset(src).lookingAt(0, errorCode)) { in parseFile()
240 mAttrValue.reset(src); in parseFile()
340 mXMLDecl.reset(src); in parse()
341 mXMLComment.reset(src); in parse()
342 mXMLSP.reset(src); in parse()
343 mXMLDoctype.reset(src); in parse()
344 mXMLPI.reset(src); in parse()
345 mXMLElemStart.reset(src); in parse()
346 mXMLElemEnd.reset(src); in parse()
347 mXMLElemEmpty.reset(sr in parse()
[all...]
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/unittest/animation/
H A Drs_render_transition_effect_test.cpp53 effect.reset(RSRenderTransitionEffect::Unmarshalling(parcel2)); in HWTEST_F()
74 effect.reset(RSTransitionScale::Unmarshalling(parcel2)); in HWTEST_F()
80 effect.reset(RSTransitionScale::Unmarshalling(parcel3)); in HWTEST_F()
101 effect.reset(RSTransitionTranslate::Unmarshalling(parcel2)); in HWTEST_F()
107 effect.reset(RSTransitionTranslate::Unmarshalling(parcel3)); in HWTEST_F()
128 effect.reset(RSTransitionRotate::Unmarshalling(parcel2)); in HWTEST_F()
134 effect.reset(RSTransitionRotate::Unmarshalling(parcel3)); in HWTEST_F()
141 effect.reset(RSTransitionRotate::Unmarshalling(parcel4)); in HWTEST_F()
162 effect.reset(RSTransitionFade::Unmarshalling(parcel2)); in HWTEST_F()
/kernel/linux/linux-5.10/drivers/clk/sunxi/
H A Dclk-sun9i-mmc.c15 #include <linux/reset.h>
17 #include <linux/reset-controller.h>
30 struct reset_control *reset; member
92 .reset = sun9i_mmc_reset_reset,
114 /* one clock/reset pair per word */ in sun9i_a80_mmc_config_clk_probe()
133 data->reset = devm_reset_control_get_exclusive(&pdev->dev, NULL); in sun9i_a80_mmc_config_clk_probe()
134 if (IS_ERR(data->reset)) { in sun9i_a80_mmc_config_clk_probe()
135 dev_err(&pdev->dev, "Could not get reset control\n"); in sun9i_a80_mmc_config_clk_probe()
136 return PTR_ERR(data->reset); in sun9i_a80_mmc_config_clk_probe()
139 ret = reset_control_deassert(data->reset); in sun9i_a80_mmc_config_clk_probe()
[all...]
/kernel/linux/linux-6.6/drivers/clk/sunxi/
H A Dclk-sun9i-mmc.c14 #include <linux/reset.h>
16 #include <linux/reset-controller.h>
29 struct reset_control *reset; member
91 .reset = sun9i_mmc_reset_reset,
114 /* one clock/reset pair per word */ in sun9i_a80_mmc_config_clk_probe()
130 data->reset = devm_reset_control_get_exclusive(&pdev->dev, NULL); in sun9i_a80_mmc_config_clk_probe()
131 if (IS_ERR(data->reset)) { in sun9i_a80_mmc_config_clk_probe()
132 dev_err(&pdev->dev, "Could not get reset control\n"); in sun9i_a80_mmc_config_clk_probe()
133 return PTR_ERR(data->reset); in sun9i_a80_mmc_config_clk_probe()
136 ret = reset_control_deassert(data->reset); in sun9i_a80_mmc_config_clk_probe()
[all...]
/third_party/skia/src/gpu/geometry/
H A DGrShape.h74 ~GrShape() { this->reset(); } in ~GrShape()
152 // These also reset any extracted direction, start, and inverted state from a prior simplified
155 this->reset(Type::kPoint); in setPoint()
159 this->reset(Type::kRect); in setRect()
163 this->reset(Type::kRRect); in setRRect()
167 this->reset(Type::kArc); in setArc()
171 this->reset(Type::kLine); in setLine()
183 // Must also set these since we didn't call reset() like other setX functions. in setPath()
187 void reset() { in reset() function in GrShape
188 this->reset(Typ in reset()
243 void reset(Type type) { reset() function
[all...]
/third_party/rust/crates/codespan/codespan-reporting/src/term/
H A Drenderer.rs185 self.reset()?; in chars()
213 self.reset()?; in render_snippet_start()
298 self.reset()?; in render_snippet_source()
308 self.reset()?; in render_snippet_source()
435 None => self.reset()?, in render_snippet_source()
458 self.reset()?; in render_snippet_source()
465 self.reset()?; in render_snippet_source()
521 self.reset()?; in render_snippet_source()
652 self.reset()?; in render_snippet_note()
721 self.reset() in outer_gutter_number()
980 fn reset(&mut self) -> io::Result<()> { reset() functions
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8664/
H A DLocked.cpp55 reset(); \ in TEST_F()
107 reset(); \ in TEST_F()
165 reset(); \ in TEST_F()
214 reset(); in TEST_F()
222 reset(); in TEST_F()
233 reset(); in TEST_F()
241 reset(); in TEST_F()
252 reset(); in TEST_F()
260 reset(); in TEST_F()
271 reset(); \ in TEST_F()
[all...]
/kernel/linux/linux-5.10/drivers/reset/sti/
H A Dreset-syscfg.h11 #include <linux/reset-controller.h>
15 * reset controller.
19 * @reset: Regmap field description of the channel's reset bit.
24 struct reg_field reset; member
30 .reset = REG_FIELD(_rr, _rb, _rb), \
35 .reset = REG_FIELD(_rr, _rb, _rb), }
38 * Description of a system configuration register based reset controller.
40 * @wait_for_ack: The controller will wait for reset assert and de-assert to
43 * the reset bi
[all...]
/kernel/linux/linux-6.6/drivers/reset/sti/
H A Dreset-syscfg.h11 #include <linux/reset-controller.h>
15 * reset controller.
19 * @reset: Regmap field description of the channel's reset bit.
24 struct reg_field reset; member
30 .reset = REG_FIELD(_rr, _rb, _rb), \
35 .reset = REG_FIELD(_rr, _rb, _rb), }
38 * Description of a system configuration register based reset controller.
40 * @wait_for_ack: The controller will wait for reset assert and de-assert to
43 * the reset bi
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
H A DBPFFrameLowering.cpp35 SavedRegs.reset(BPF::R6); in determineCalleeSaves()
36 SavedRegs.reset(BPF::R7); in determineCalleeSaves()
37 SavedRegs.reset(BPF::R8); in determineCalleeSaves()
38 SavedRegs.reset(BPF::R9); in determineCalleeSaves()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/transaction/
H A Drs_transaction_proxy_test.cpp77 renderThreadClient.reset(); in HWTEST_F()
214 renderServiceClient.reset(); in HWTEST_F()
236 renderServiceClient.reset(); in HWTEST_F()
270 renderServiceClient.reset(); in HWTEST_F()
332 renderServiceClient.reset(); in HWTEST_F()
348 renderServiceClient.reset(); in HWTEST_F()
444 renderServiceClient.reset(); in HWTEST_F()
526 renderThreadClient.reset(); in HWTEST_F()
529 renderServiceClient.reset(); in HWTEST_F()
535 command.reset(); in HWTEST_F()
[all...]
/kernel/linux/linux-5.10/drivers/phy/qualcomm/
H A Dphy-qcom-usb-hs.c12 #include <linux/reset.h>
36 struct reset_control *reset; member
150 if (uphy->reset) { in qcom_usb_hs_phy_power_on()
151 ret = reset_control_reset(uphy->reset); in qcom_usb_hs_phy_power_on()
207 struct reset_control *reset; in qcom_usb_hs_phy_probe() local
247 uphy->reset = reset = devm_reset_control_get(&ulpi->dev, "por"); in qcom_usb_hs_phy_probe()
248 if (IS_ERR(reset)) { in qcom_usb_hs_phy_probe()
249 if (PTR_ERR(reset) == -EPROBE_DEFER) in qcom_usb_hs_phy_probe()
250 return PTR_ERR(reset); in qcom_usb_hs_phy_probe()
[all...]
/kernel/linux/linux-6.6/drivers/phy/qualcomm/
H A Dphy-qcom-usb-hs.c12 #include <linux/reset.h>
36 struct reset_control *reset; member
151 if (uphy->reset) { in qcom_usb_hs_phy_power_on()
152 ret = reset_control_reset(uphy->reset); in qcom_usb_hs_phy_power_on()
208 struct reset_control *reset; in qcom_usb_hs_phy_probe() local
248 uphy->reset = reset = devm_reset_control_get(&ulpi->dev, "por"); in qcom_usb_hs_phy_probe()
249 if (IS_ERR(reset)) { in qcom_usb_hs_phy_probe()
250 if (PTR_ERR(reset) == -EPROBE_DEFER) in qcom_usb_hs_phy_probe()
251 return PTR_ERR(reset); in qcom_usb_hs_phy_probe()
[all...]
/kernel/linux/linux-6.6/drivers/phy/amlogic/
H A Dphy-meson8b-usb2.c15 #include <linux/reset.h>
129 struct reset_control *reset; member
146 if (!IS_ERR_OR_NULL(priv->reset)) { in phy_meson8b_usb2_power_on()
147 ret = reset_control_reset(priv->reset); in phy_meson8b_usb2_power_on()
149 dev_err(&phy->dev, "Failed to trigger USB reset\n"); in phy_meson8b_usb2_power_on()
157 reset_control_rearm(priv->reset); in phy_meson8b_usb2_power_on()
165 reset_control_rearm(priv->reset); in phy_meson8b_usb2_power_on()
178 /* reset the PHY */ in phy_meson8b_usb2_power_on()
204 reset_control_rearm(priv->reset); in phy_meson8b_usb2_power_on()
224 reset_control_rearm(priv->reset); in phy_meson8b_usb2_power_off()
[all...]
/third_party/mesa3d/src/amd/compiler/tests/
H A Dtest_assembler.cpp55 bld.reset(program->create_and_insert_block());
74 bld.reset(program->create_and_insert_block());
83 bld.reset(program->create_and_insert_block());
104 bld.reset(program->create_and_insert_block());
114 bld.reset(program->create_and_insert_block());
142 bld.reset(program->create_and_insert_block());
170 bld.reset(program->create_and_insert_block());
191 bld.reset(program->create_and_insert_block());
194 bld.reset(program->create_and_insert_block());
210 bld.reset(progra
[all...]
/third_party/skia/tools/viewer/
H A DTouchGesture.cpp50 void TouchGesture::FlingState::reset(float sx, float sy) { in reset() function in TouchGesture::FlingState
105 this->reset(); in TouchGesture()
113 fTouches.reset(); in resetTouchState()
115 fLocalM.reset(); in resetTouchState()
121 void TouchGesture::reset() { in reset() function in TouchGesture
122 fGlobalM.reset(); in reset()
128 fLocalM.reset(); in flushLocalM()
283 fFlinger.reset(dx / dur, dy / dur); in touchEnd()
331 fLocalM.reset(); in handleDblTap()
332 fGlobalM.reset(); in handleDblTap()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/AssemblerX8632/
H A DLocked.cpp58 reset(); \ in TEST_F()
109 reset(); \ in TEST_F()
167 reset(); \ in TEST_F()
209 reset(); in TEST_F()
217 reset(); in TEST_F()
227 reset(); in TEST_F()
235 reset(); in TEST_F()
245 reset(); in TEST_F()
253 reset(); in TEST_F()
294 reset(); \ in TEST_F()
[all...]
/foundation/ability/ability_runtime/test/unittest/runtime_test/
H A Djs_runtime_test.cpp102 jsRuntime.reset(); in HWTEST_F()
122 jsRuntime.reset(); in HWTEST_F()
174 runtime.reset(); in HWTEST_F()
191 jsRuntime.reset(); in HWTEST_F()
229 jsRuntime.reset(); in HWTEST_F()
263 jsRuntime.reset(); in HWTEST_F()
282 jsRuntime.reset(); in HWTEST_F()
303 runtime.reset(); in HWTEST_F()
322 jsRuntime.reset(); in HWTEST_F()
341 jsRuntime.reset(); in HWTEST_F()
[all...]
/kernel/linux/linux-5.10/drivers/phy/allwinner/
H A Dphy-sun50i-usb3.c22 #include <linux/reset.h>
57 struct reset_control *reset; member
106 ret = reset_control_deassert(phy->reset); in sun50i_usb3_phy_init()
120 reset_control_assert(phy->reset); in sun50i_usb3_phy_exit()
150 phy->reset = devm_reset_control_get(dev, NULL); in sun50i_usb3_phy_probe()
151 if (IS_ERR(phy->reset)) { in sun50i_usb3_phy_probe()
152 dev_err(dev, "failed to get reset control\n"); in sun50i_usb3_phy_probe()
153 return PTR_ERR(phy->reset); in sun50i_usb3_phy_probe()
/kernel/linux/linux-6.6/drivers/phy/allwinner/
H A Dphy-sun50i-usb3.c23 #include <linux/reset.h>
58 struct reset_control *reset; member
107 ret = reset_control_deassert(phy->reset); in sun50i_usb3_phy_init()
121 reset_control_assert(phy->reset); in sun50i_usb3_phy_exit()
150 phy->reset = devm_reset_control_get(dev, NULL); in sun50i_usb3_phy_probe()
151 if (IS_ERR(phy->reset)) { in sun50i_usb3_phy_probe()
152 dev_err(dev, "failed to get reset control\n"); in sun50i_usb3_phy_probe()
153 return PTR_ERR(phy->reset); in sun50i_usb3_phy_probe()

Completed in 15 milliseconds

12345678910>>...327