Home
last modified time | relevance | path

Searched refs:pull (Results 1 - 25 of 181) sorted by relevance

12345678

/kernel/linux/linux-5.10/arch/arm/mach-s3c/
H A Dgpio-cfg-helpers.h36 unsigned int off, samsung_gpio_pull_t pull) in samsung_gpio_do_setpull()
38 return (chip->config->set_pull)(chip, off, pull); in samsung_gpio_do_setpull()
59 * @param: pull: The pull mode being requested.
62 * bit configuring the presence of a pull-up resistor.
65 unsigned int off, samsung_gpio_pull_t pull);
71 * @param: pull: The pull mode being requested
74 * bit configuring the presence of a pull-down resistor.
77 unsigned int off, samsung_gpio_pull_t pull);
35 samsung_gpio_do_setpull(struct samsung_gpio_chip *chip, unsigned int off, samsung_gpio_pull_t pull) samsung_gpio_do_setpull() argument
[all...]
H A Dgpio-samsung.c41 unsigned int off, samsung_gpio_pull_t pull) in samsung_gpio_setpull_updown()
49 pup |= pull << shift; in samsung_gpio_setpull_updown()
69 unsigned int off, samsung_gpio_pull_t pull) in s3c2443_gpio_setpull()
71 switch (pull) { in s3c2443_gpio_setpull()
73 pull = 0x01; in s3c2443_gpio_setpull()
76 pull = 0x00; in s3c2443_gpio_setpull()
79 pull = 0x02; in s3c2443_gpio_setpull()
82 return samsung_gpio_setpull_updown(chip, off, pull); in s3c2443_gpio_setpull()
88 samsung_gpio_pull_t pull; in s3c2443_gpio_getpull() local
90 pull in s3c2443_gpio_getpull()
40 samsung_gpio_setpull_updown(struct samsung_gpio_chip *chip, unsigned int off, samsung_gpio_pull_t pull) samsung_gpio_setpull_updown() argument
68 s3c2443_gpio_setpull(struct samsung_gpio_chip *chip, unsigned int off, samsung_gpio_pull_t pull) s3c2443_gpio_setpull() argument
108 s3c24xx_gpio_setpull_1(struct samsung_gpio_chip *chip, unsigned int off, samsung_gpio_pull_t pull, samsung_gpio_pull_t updown) s3c24xx_gpio_setpull_1() argument
143 s3c24xx_gpio_setpull_1up(struct samsung_gpio_chip *chip, unsigned int off, samsung_gpio_pull_t pull) s3c24xx_gpio_setpull_1up() argument
155 s3c24xx_gpio_setpull_1down(struct samsung_gpio_chip *chip, unsigned int off, samsung_gpio_pull_t pull) s3c24xx_gpio_setpull_1down() argument
1235 s3c_gpio_cfgall_range(unsigned int start, unsigned int nr, unsigned int cfg, samsung_gpio_pull_t pull) s3c_gpio_cfgall_range() argument
1270 s3c_gpio_setpull(unsigned int pin, samsung_gpio_pull_t pull) s3c_gpio_setpull() argument
[all...]
H A Dgpio-cfg.h13 * changing the pull-{up,down} configurations.
33 * @get_pull: Read the current pull configuration for the GPIO
34 * @set_pull: Set the current pull configuration for the GPIO
54 samsung_gpio_pull_t pull);
121 /* Define values for the pull-{up,down} available for each gpio pin.
123 * These values control the state of the weak pull-{up,down} resistors
133 * s3c_gpio_setpull() - set the state of a gpio pin pull resistor
134 * @pin: The pin number to configure the pull resistor.
135 * @pull: The configuration for the pull resisto
[all...]
/third_party/node/test/fixtures/wpt/streams/readable-byte-streams/
H A Dgeneral.any.js56 pull() {
67 assert_true(startCalledBeforePull, 'start should be called before pull');
71 }, 'ReadableStream with byte source: Construct and expect start and pull being called');
89 pull() {
109 }, 'ReadableStream with byte source: No automatic pull call if start doesn\'t finish');
118 pull: t.unreached_func('pull() should not be called'),
180 pull: t.unreached_func('pull() should not be called'),
196 pull
[all...]
/third_party/node/test/fixtures/wpt/streams/readable-streams/
H A Dasync-iterator.any.js63 pull(c) {
77 }, 'Async-iterating a pull source');
99 pull(c) {
113 }, 'Async-iterating a pull source with undefined values');
118 pull(c) {
132 assert_array_equals(s.events, ['pull']);
136 assert_array_equals(s.events, ['pull', 'pull']);
140 assert_array_equals(s.events, ['pull', 'pull', 'pul
[all...]
H A Dbad-underlying-sources.any.js39 get pull() {
44 }, 'Underlying source: throwing pull getter (initial pull)');
51 pull() {
58 }, 'Underlying source: throwing pull method (initial pull)');
67 get pull() {
88 }, 'Underlying source pull: throwing getter (second pull does not result in a second get)');
96 pull(
[all...]
/kernel/linux/linux-5.10/drivers/gpio/
H A Dgpio-wm831x.c163 const char *label, *pull, *powerdomain; in wm831x_gpio_dbg_show() local
187 pull = "nopull"; in wm831x_gpio_dbg_show()
190 pull = "pulldown"; in wm831x_gpio_dbg_show()
193 pull = "pullup"; in wm831x_gpio_dbg_show()
196 pull = "INVALID PULL"; in wm831x_gpio_dbg_show()
234 pull, in wm831x_gpio_dbg_show()
237 reg & WM831X_GPN_OD ? "open-drain" : "push-pull", in wm831x_gpio_dbg_show()
/kernel/linux/linux-6.6/drivers/gpio/
H A Dgpio-wm831x.c163 const char *label, *pull, *powerdomain; in wm831x_gpio_dbg_show() local
187 pull = "nopull"; in wm831x_gpio_dbg_show()
190 pull = "pulldown"; in wm831x_gpio_dbg_show()
193 pull = "pullup"; in wm831x_gpio_dbg_show()
196 pull = "INVALID PULL"; in wm831x_gpio_dbg_show()
234 pull, in wm831x_gpio_dbg_show()
237 reg & WM831X_GPN_OD ? "open-drain" : "push-pull", in wm831x_gpio_dbg_show()
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/aots/
H A Dupdate.py12 pull = False variable
15 pull = True variable
17 if pull or 'pull' in sys.argv:
18 subprocess.run ([git, 'pull'], cwd='aots', check=True)
/kernel/linux/linux-6.6/arch/arm/mach-s3c/
H A Dgpio-cfg.h13 * changing the pull-{up,down} configurations.
33 * @get_pull: Read the current pull configuration for the GPIO
34 * @set_pull: Set the current pull configuration for the GPIO
54 samsung_gpio_pull_t pull);
110 /* Define values for the pull-{up,down} available for each gpio pin.
112 * These values control the state of the weak pull-{up,down} resistors
122 * s3c_gpio_setpull() - set the state of a gpio pin pull resistor
123 * @pin: The pin number to configure the pull resistor.
124 * @pull: The configuration for the pull resisto
[all...]
H A Dgpio-cfg-helpers.h30 unsigned int off, samsung_gpio_pull_t pull) in samsung_gpio_do_setpull()
32 return (chip->config->set_pull)(chip, off, pull); in samsung_gpio_do_setpull()
29 samsung_gpio_do_setpull(struct samsung_gpio_chip *chip, unsigned int off, samsung_gpio_pull_t pull) samsung_gpio_do_setpull() argument
/kernel/linux/linux-6.6/drivers/pinctrl/qcom/
H A Dpinctrl-lpass-lpi.c152 int pull; in lpi_config_get() local
157 pull = FIELD_GET(LPI_GPIO_PULL_MASK, ctl_reg); in lpi_config_get()
161 if (pull == LPI_GPIO_BIAS_DISABLE) in lpi_config_get()
165 if (pull == LPI_GPIO_PULL_DOWN) in lpi_config_get()
169 if (pull == LPI_GPIO_KEEPER) in lpi_config_get()
173 if (pull == LPI_GPIO_PULL_UP) in lpi_config_get()
340 int pull; in lpi_gpio_dbg_show_one() local
344 "no pull", in lpi_gpio_dbg_show_one()
345 "pull down", in lpi_gpio_dbg_show_one()
347 "pull u in lpi_gpio_dbg_show_one()
[all...]
/kernel/linux/linux-5.10/drivers/pinctrl/vt8500/
H A Dpinctrl-wmt.c236 u32 pin, u32 pull, in wmt_pctl_dt_node_to_map_pull()
243 if (pull > 2) { in wmt_pctl_dt_node_to_map_pull()
244 dev_err(data->dev, "invalid wm,pull %d\n", pull); in wmt_pctl_dt_node_to_map_pull()
258 switch (pull) { in wmt_pctl_dt_node_to_map_pull()
270 dev_err(data->dev, "invalid pull state %d - disabling\n", pull); in wmt_pctl_dt_node_to_map_pull()
302 u32 pin, func, pull; in wmt_pctl_dt_node_to_map() local
314 pulls = of_find_property(np, "wm,pull", NULL); in wmt_pctl_dt_node_to_map()
317 dev_err(data->dev, "neither wm,function nor wm,pull specifie in wmt_pctl_dt_node_to_map()
234 wmt_pctl_dt_node_to_map_pull(struct wmt_pinctrl_data *data, struct device_node *np, u32 pin, u32 pull, struct pinctrl_map **maps) wmt_pctl_dt_node_to_map_pull() argument
[all...]
/kernel/linux/linux-6.6/drivers/pinctrl/vt8500/
H A Dpinctrl-wmt.c236 u32 pin, u32 pull, in wmt_pctl_dt_node_to_map_pull()
243 if (pull > 2) { in wmt_pctl_dt_node_to_map_pull()
244 dev_err(data->dev, "invalid wm,pull %d\n", pull); in wmt_pctl_dt_node_to_map_pull()
258 switch (pull) { in wmt_pctl_dt_node_to_map_pull()
270 dev_err(data->dev, "invalid pull state %d - disabling\n", pull); in wmt_pctl_dt_node_to_map_pull()
302 u32 pin, func, pull; in wmt_pctl_dt_node_to_map() local
314 pulls = of_find_property(np, "wm,pull", NULL); in wmt_pctl_dt_node_to_map()
317 dev_err(data->dev, "neither wm,function nor wm,pull specifie in wmt_pctl_dt_node_to_map()
234 wmt_pctl_dt_node_to_map_pull(struct wmt_pinctrl_data *data, struct device_node *np, u32 pin, u32 pull, struct pinctrl_map **maps) wmt_pctl_dt_node_to_map_pull() argument
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/crypto/bn/
H A Darmv4-mont.S156 ldr r2,[r0,#12*4] @ pull rp
599 vld1.32 {d28},[sp,:64] @ pull smashed b[8*i+0]
624 vld1.32 {d29},[r10,:64]! @ pull smashed m[8*i+0]
634 vld1.32 {d28},[r10,:64]! @ pull smashed b[8*i+1]
647 vld1.32 {d29},[r10,:64]! @ pull smashed m[8*i+1]
656 vld1.32 {d28},[r10,:64]! @ pull smashed b[8*i+2]
669 vld1.32 {d29},[r10,:64]! @ pull smashed m[8*i+2]
678 vld1.32 {d28},[r10,:64]! @ pull smashed b[8*i+3]
691 vld1.32 {d29},[r10,:64]! @ pull smashed m[8*i+3]
700 vld1.32 {d28},[r10,:64]! @ pull smashe
[all...]
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/crypto/bn/
H A Darmv4-mont.S156 ldr r2,[r0,#12*4] @ pull rp
599 vld1.32 {d28},[sp,:64] @ pull smashed b[8*i+0]
624 vld1.32 {d29},[r10,:64]! @ pull smashed m[8*i+0]
634 vld1.32 {d28},[r10,:64]! @ pull smashed b[8*i+1]
647 vld1.32 {d29},[r10,:64]! @ pull smashed m[8*i+1]
656 vld1.32 {d28},[r10,:64]! @ pull smashed b[8*i+2]
669 vld1.32 {d29},[r10,:64]! @ pull smashed m[8*i+2]
678 vld1.32 {d28},[r10,:64]! @ pull smashed b[8*i+3]
691 vld1.32 {d29},[r10,:64]! @ pull smashed m[8*i+3]
700 vld1.32 {d28},[r10,:64]! @ pull smashe
[all...]
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/dec/
H A DDecoder.java83 buffer = decoder.pull(); in decode()
101 buffer = decoder.pull(); in decode()
152 ByteBuffer buffer = decoder.pull(); in decompress()
/third_party/node/test/parallel/
H A Dtest-whatwg-readablestream.js119 pull: common.mustCall((controller) => {
133 pull: common.mustCall(async (controller) => {
147 pull: common.mustNotCall(),
160 pull: common.mustNotCall(),
173 pull: common.mustCall(async (controller) => {
702 pull() { throw error; }
845 pull(controller) {
874 pull: common.mustCall(),
889 pull: common.mustCall(),
911 pull
[all...]
/kernel/linux/linux-5.10/arch/arm/plat-pxa/
H A Dmfp.c171 int pin, af, drv, lpm, edge, pull; in mfp_config() local
181 pull = MFP_PULL(c); in mfp_config()
183 /* run-mode pull settings will conflict with MFPR bits of in mfp_config()
185 * individually if pull != MFP_PULL_NONE in mfp_config()
189 if (likely(pull == MFP_PULL_NONE)) { in mfp_config()
194 p->mfpr_run = tmp | mfpr_pull[pull]; in mfp_config()
/kernel/linux/linux-5.10/drivers/mfd/
H A Dwm8350-gpio.c184 int pol, int pull, int invert, int debounce) in wm8350_gpio_config()
186 /* make sure we never pull up and down at the same time */ in wm8350_gpio_config()
187 if (pull == WM8350_GPIO_PULL_NONE) { in wm8350_gpio_config()
192 } else if (pull == WM8350_GPIO_PULL_UP) { in wm8350_gpio_config()
197 } else if (pull == WM8350_GPIO_PULL_DOWN) { in wm8350_gpio_config()
183 wm8350_gpio_config(struct wm8350 *wm8350, int gpio, int dir, int func, int pol, int pull, int invert, int debounce) wm8350_gpio_config() argument
/kernel/linux/linux-6.6/drivers/mfd/
H A Dwm8350-gpio.c184 int pol, int pull, int invert, int debounce) in wm8350_gpio_config()
186 /* make sure we never pull up and down at the same time */ in wm8350_gpio_config()
187 if (pull == WM8350_GPIO_PULL_NONE) { in wm8350_gpio_config()
192 } else if (pull == WM8350_GPIO_PULL_UP) { in wm8350_gpio_config()
197 } else if (pull == WM8350_GPIO_PULL_DOWN) { in wm8350_gpio_config()
183 wm8350_gpio_config(struct wm8350 *wm8350, int gpio, int dir, int func, int pol, int pull, int invert, int debounce) wm8350_gpio_config() argument
/kernel/linux/linux-6.6/drivers/soc/pxa/
H A Dmfp.c171 int pin, af, drv, lpm, edge, pull; in mfp_config() local
181 pull = MFP_PULL(c); in mfp_config()
183 /* run-mode pull settings will conflict with MFPR bits of in mfp_config()
185 * individually if pull != MFP_PULL_NONE in mfp_config()
189 if (likely(pull == MFP_PULL_NONE)) { in mfp_config()
194 p->mfpr_run = tmp | mfpr_pull[pull]; in mfp_config()
/kernel/linux/linux-6.6/tools/testing/selftests/gpio/
H A Dgpio-mockup.sh133 pull-down)
136 pull-up)
200 # Setting the mockup pull using the userspace interface bias settings is
223 set_line input pull-up
229 set_line input pull-down
/third_party/node/test/fixtures/wpt/streams/piping/
H A Dabort.any.js15 pull(controller) {
21 // To stop pull() being called immediately when the stream is created, we need to set highWaterMark to 0.
188 pull(controller) {
218 pull(controller) {
267 pull(controller) {
284 pull(controller) {
365 pull(controller) {
385 assert_array_equals(rs.events, ['pull'], 'cancel should not have been called');
391 pull(c) {
/kernel/linux/linux-6.6/arch/arm/mach-omap1/
H A Dmux.c27 * description mux mode mux pull pull pull pu_pd pu dbg
291 pull_orig = 0, pull = 0; in omap1_cfg_reg() local
316 /* Check for pull up or pull down selection on 1610 */ in omap1_cfg_reg()
326 /* Use pull up */ in omap1_cfg_reg()
331 /* Use pull down */ in omap1_cfg_reg()
339 /* Check for an associated pull down register */ in omap1_cfg_reg()
348 /* Low bit = pull enable in omap1_cfg_reg()
[all...]

Completed in 12 milliseconds

12345678