/third_party/skia/experimental/tools/ |
H A D | android_skp_capture.sh | 86 adb pull "$remote_path" "$local_path" 88 printf "something went wrong with `adb pull`."
|
/kernel/linux/linux-5.10/drivers/pinctrl/freescale/ |
H A D | pinctrl-mxs.c | 84 ret = of_property_read_u32(np, "fsl,pull-up", &val); in mxs_dt_node_to_map() 260 u8 ma, vol, pull, bank, shift; in mxs_pinconf_group_set() local 271 pull = CONFIG_TO_PULL(config); in mxs_pinconf_group_set() 296 /* pull */ in mxs_pinconf_group_set() 298 reg = d->base + d->soc->regs->pull; in mxs_pinconf_group_set() 301 if (pull) in mxs_pinconf_group_set()
|
/kernel/linux/linux-6.6/drivers/pinctrl/freescale/ |
H A D | pinctrl-mxs.c | 87 ret = of_property_read_u32(np, "fsl,pull-up", &val); in mxs_dt_node_to_map() 263 u8 ma, vol, pull, bank, shift; in mxs_pinconf_group_set() local 274 pull = PIN_CONFIG_TO_PULL(config); in mxs_pinconf_group_set() 299 /* pull */ in mxs_pinconf_group_set() 301 reg = d->base + d->soc->regs->pull; in mxs_pinconf_group_set() 304 if (pull) in mxs_pinconf_group_set()
|
/kernel/linux/linux-5.10/drivers/pinctrl/bcm/ |
H A D | pinctrl-bcm2835.c | 768 struct device_node *np, u32 pin, u32 pull, in bcm2835_pctl_dt_node_to_map_pull() 774 if (pull > 2) { in bcm2835_pctl_dt_node_to_map_pull() 775 dev_err(pc->dev, "%pOF: invalid brcm,pull %d\n", np, pull); in bcm2835_pctl_dt_node_to_map_pull() 782 configs[0] = pinconf_to_config_packed(BCM2835_PINCONF_PARAM_PULL, pull); in bcm2835_pctl_dt_node_to_map_pull() 802 u32 pin, func, pull; in bcm2835_pctl_dt_node_to_map() local 817 pulls = of_find_property(np, "brcm,pull", NULL); in bcm2835_pctl_dt_node_to_map() 821 "%pOF: neither brcm,function nor brcm,pull specified\n", in bcm2835_pctl_dt_node_to_map() 839 "%pOF: brcm,pull must have 1 or %d entries\n", in bcm2835_pctl_dt_node_to_map() 876 err = of_property_read_u32_index(np, "brcm,pull", in bcm2835_pctl_dt_node_to_map() 767 bcm2835_pctl_dt_node_to_map_pull(struct bcm2835_pinctrl *pc, struct device_node *np, u32 pin, u32 pull, struct pinctrl_map **maps) bcm2835_pctl_dt_node_to_map_pull() argument [all...] |
/kernel/linux/linux-6.6/drivers/pinctrl/bcm/ |
H A D | pinctrl-bcm2835.c | 787 struct device_node *np, u32 pin, u32 pull, in bcm2835_pctl_dt_node_to_map_pull() 793 if (pull > 2) { in bcm2835_pctl_dt_node_to_map_pull() 794 dev_err(pc->dev, "%pOF: invalid brcm,pull %d\n", np, pull); in bcm2835_pctl_dt_node_to_map_pull() 801 configs[0] = pinconf_to_config_packed(BCM2835_PINCONF_PARAM_PULL, pull); in bcm2835_pctl_dt_node_to_map_pull() 821 u32 pin, func, pull; in bcm2835_pctl_dt_node_to_map() local 836 pulls = of_find_property(np, "brcm,pull", NULL); in bcm2835_pctl_dt_node_to_map() 840 "%pOF: neither brcm,function nor brcm,pull specified\n", in bcm2835_pctl_dt_node_to_map() 858 "%pOF: brcm,pull must have 1 or %d entries\n", in bcm2835_pctl_dt_node_to_map() 895 err = of_property_read_u32_index(np, "brcm,pull", in bcm2835_pctl_dt_node_to_map() 786 bcm2835_pctl_dt_node_to_map_pull(struct bcm2835_pinctrl *pc, struct device_node *np, u32 pin, u32 pull, struct pinctrl_map **maps) bcm2835_pctl_dt_node_to_map_pull() argument [all...] |
/kernel/linux/linux-5.10/drivers/pinctrl/intel/ |
H A D | pinctrl-lynxpoint.c | 171 #define GPIWP_MASK GENMASK(1, 0) /* weak pull options */ 173 #define GPIWP_DOWN 1 /* weak pull down */ 174 #define GPIWP_UP 2 /* weak pull up */ 498 u32 value, pull; in lp_pin_config_get() local 505 pull = value & GPIWP_MASK; in lp_pin_config_get() 509 if (pull) in lp_pin_config_get() 513 if (pull != GPIWP_DOWN) in lp_pin_config_get() 519 if (pull != GPIWP_UP) in lp_pin_config_get()
|
H A D | pinctrl-cherryview.c | 981 u32 ctrl0, pull; in chv_config_set_pull() local 996 /* For 1k there is only pull up */ in chv_config_set_pull() 997 pull = CHV_PADCTRL0_TERM_1K << CHV_PADCTRL0_TERM_SHIFT; in chv_config_set_pull() 1000 pull = CHV_PADCTRL0_TERM_5K << CHV_PADCTRL0_TERM_SHIFT; in chv_config_set_pull() 1003 pull = CHV_PADCTRL0_TERM_20K << CHV_PADCTRL0_TERM_SHIFT; in chv_config_set_pull() 1010 ctrl0 |= CHV_PADCTRL0_TERM_UP | pull; in chv_config_set_pull() 1018 pull = CHV_PADCTRL0_TERM_5K << CHV_PADCTRL0_TERM_SHIFT; in chv_config_set_pull() 1021 pull = CHV_PADCTRL0_TERM_20K << CHV_PADCTRL0_TERM_SHIFT; in chv_config_set_pull() 1028 ctrl0 |= pull; in chv_config_set_pull()
|
/kernel/linux/linux-5.10/drivers/pinctrl/renesas/ |
H A D | pinctrl-rzn1.c | 491 u32 pull, drive, l1mux; in rzn1_pinconf_get() local 500 pull = (l1 >> RZN1_L1_PIN_PULL) & 0x3; in rzn1_pinconf_get() 505 if (pull != RZN1_L1_PIN_PULL_UP) in rzn1_pinconf_get() 509 if (pull != RZN1_L1_PIN_PULL_DOWN) in rzn1_pinconf_get() 513 if (pull != RZN1_L1_PIN_PULL_NONE) in rzn1_pinconf_get() 559 dev_dbg(ipctl->dev, "set pin %d pull up\n", pin); in rzn1_pinconf_set() 564 dev_dbg(ipctl->dev, "set pin %d pull down\n", pin); in rzn1_pinconf_set()
|
/kernel/linux/linux-6.6/drivers/pinctrl/renesas/ |
H A D | pinctrl-rzn1.c | 495 u32 pull, drive, l1mux; in rzn1_pinconf_get() local 504 pull = (l1 >> RZN1_L1_PIN_PULL) & 0x3; in rzn1_pinconf_get() 509 if (pull != RZN1_L1_PIN_PULL_UP) in rzn1_pinconf_get() 513 if (pull != RZN1_L1_PIN_PULL_DOWN) in rzn1_pinconf_get() 517 if (pull != RZN1_L1_PIN_PULL_NONE) in rzn1_pinconf_get() 563 dev_dbg(ipctl->dev, "set pin %d pull up\n", pin); in rzn1_pinconf_set() 568 dev_dbg(ipctl->dev, "set pin %d pull down\n", pin); in rzn1_pinconf_set()
|
/kernel/linux/linux-6.6/drivers/pinctrl/intel/ |
H A D | pinctrl-lynxpoint.c | 173 #define GPIWP_MASK GENMASK(1, 0) /* weak pull options */ 175 #define GPIWP_DOWN 1 /* weak pull down */ 176 #define GPIWP_UP 2 /* weak pull up */ 429 u32 value, pull; in lp_pin_config_get() local 436 pull = value & GPIWP_MASK; in lp_pin_config_get() 440 if (pull != GPIWP_NONE) in lp_pin_config_get() 445 if (pull != GPIWP_DOWN) in lp_pin_config_get() 451 if (pull != GPIWP_UP) in lp_pin_config_get()
|
H A D | pinctrl-cherryview.c | 933 u32 ctrl0, pull; in chv_config_set_pull() local 948 /* For 1k there is only pull up */ in chv_config_set_pull() 949 pull = CHV_PADCTRL0_TERM_1K << CHV_PADCTRL0_TERM_SHIFT; in chv_config_set_pull() 952 pull = CHV_PADCTRL0_TERM_5K << CHV_PADCTRL0_TERM_SHIFT; in chv_config_set_pull() 955 pull = CHV_PADCTRL0_TERM_20K << CHV_PADCTRL0_TERM_SHIFT; in chv_config_set_pull() 962 ctrl0 |= CHV_PADCTRL0_TERM_UP | pull; in chv_config_set_pull() 970 pull = CHV_PADCTRL0_TERM_5K << CHV_PADCTRL0_TERM_SHIFT; in chv_config_set_pull() 973 pull = CHV_PADCTRL0_TERM_20K << CHV_PADCTRL0_TERM_SHIFT; in chv_config_set_pull() 980 ctrl0 |= pull; in chv_config_set_pull()
|
/kernel/linux/linux-5.10/drivers/gpio/ |
H A D | gpio-mockup.c | 44 int pull; member 189 chip->lines[offset].pull = value; in gpio_mockup_apply_pull() 257 __gpio_mockup_set(chip, offset, chip->lines[offset].pull); in gpio_mockup_free() 322 * line's file changes the current *pull*. Default pull for mockup lines is 329 * the corresponding debugfs file will change the pull to down but the 331 * - line requested in input mode always reports the same value as its pull
|
/kernel/linux/linux-6.6/drivers/gpio/ |
H A D | gpio-mockup.c | 46 int pull; member 188 chip->lines[offset].pull = value; in gpio_mockup_apply_pull() 256 __gpio_mockup_set(chip, offset, chip->lines[offset].pull); in gpio_mockup_free() 321 * line's file changes the current *pull*. Default pull for mockup lines is 328 * the corresponding debugfs file will change the pull to down but the 330 * - line requested in input mode always reports the same value as its pull
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/dec/ |
H A D | DecoderJNI.java | 88 public ByteBuffer pull() { in pull() method in DecoderJNI.Wrapper
|
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm/crypto/bn/ |
H A D | s390x-mont.S | 5 lgf %r1,96(%r15) # pull %r1 28 lg %r6,0(%r6) # pull n0
|
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm_avx2/crypto/bn/ |
H A D | s390x-mont.S | 5 lgf %r1,96(%r15) # pull %r1 28 lg %r6,0(%r6) # pull n0
|
/third_party/node/deps/openssl/config/archs/linux64-s390x/asm_avx2/crypto/bn/ |
H A D | s390x-mont.S | 5 lgf %r1,164(%r15) # pull %r1 28 lg %r6,0(%r6) # pull n0
|
/third_party/node/deps/openssl/config/archs/linux64-s390x/asm/crypto/bn/ |
H A D | s390x-mont.S | 5 lgf %r1,164(%r15) # pull %r1 28 lg %r6,0(%r6) # pull n0
|
/third_party/node/deps/openssl/openssl/crypto/bn/asm/ |
H A D | armv4-mont.pl | 257 ldr $rp,[$_rp] @ pull rp 537 vld1.32 {$Bi},[sp,:64] @ pull smashed b[8*i+0] 565 vld1.32 {$Ni},[$bnptr,:64]! @ pull smashed m[8*i+0] 578 vld1.32 {$Bi},[$bnptr,:64]! @ pull smashed b[8*i+$i] 594 vld1.32 {$Ni},[$bnptr,:64]! @ pull smashed m[8*i+$i] 609 vld1.32 {$Bi},[sp,:64] @ pull smashed b[8*i+0]
|
/third_party/openssl/crypto/bn/asm/ |
H A D | armv4-mont.pl | 257 ldr $rp,[$_rp] @ pull rp 537 vld1.32 {$Bi},[sp,:64] @ pull smashed b[8*i+0] 565 vld1.32 {$Ni},[$bnptr,:64]! @ pull smashed m[8*i+0] 578 vld1.32 {$Bi},[$bnptr,:64]! @ pull smashed b[8*i+$i] 594 vld1.32 {$Ni},[$bnptr,:64]! @ pull smashed m[8*i+$i] 609 vld1.32 {$Bi},[sp,:64] @ pull smashed b[8*i+0]
|
/third_party/libbpf/ci/managers/ |
H A D | debian.sh | 37 docker pull debian:$DEBIAN_RELEASE
|
/third_party/libcoap/examples/riot/ |
H A D | Makefile | 24 git pull --unshallow > /dev/null 2>&1 ; \
|
/third_party/mesa3d/.gitlab-ci/container/debian/ |
H A D | x86_test-vk.sh | 123 git fetch origin pull/"$__prnum"/head:pr
|
/third_party/skia/platform_tools/android/bin/ |
H A D | android_perf | 71 $ADB pull /data/local/tmp/perf.data $PERF_TMP_DIR/perf.data
|
/kernel/linux/linux-5.10/drivers/pinctrl/sunxi/ |
H A D | pinctrl-sunxi.c | 164 return of_find_property(node, "bias-pull-up", NULL) || in sunxi_pctrl_has_bias_prop() 165 of_find_property(node, "bias-pull-down", NULL) || in sunxi_pctrl_has_bias_prop() 167 of_find_property(node, "allwinner,pull", NULL); in sunxi_pctrl_has_bias_prop() 181 if (of_find_property(node, "bias-pull-up", NULL)) in sunxi_pctrl_parse_bias_prop() 184 if (of_find_property(node, "bias-pull-down", NULL)) in sunxi_pctrl_parse_bias_prop() 191 if (of_property_read_u32(node, "allwinner,pull", &val)) in sunxi_pctrl_parse_bias_prop() 305 int pull = sunxi_pctrl_parse_bias_prop(node); in sunxi_pctrl_build_pin_config() local 307 if (pull < 0) { in sunxi_pctrl_build_pin_config() 308 ret = pull; in sunxi_pctrl_build_pin_config() 312 if (pull ! in sunxi_pctrl_build_pin_config() [all...] |