/third_party/libcoap/examples/contiki/ |
H A D | Makefile | 11 (cd ${CONTIKI} ; git pull --tags 2> /dev/null ; git checkout ${WITH_CONTIKI_NG_BRANCH}) 20 git pull --tags 2> /dev/null ; \
|
/kernel/linux/linux-5.10/drivers/staging/rtl8188eu/hal/ |
H A D | rtl8188eu_xmit.c | 161 int pull = 0; in update_txdesc() local 174 pull = 1; in update_txdesc() 193 if ((pull) && (pxmitframe->pkt_offset > 0)) in update_txdesc() 326 return pull; in update_txdesc() 334 int t, sz, w_sz, pull = 0; in rtw_dump_xframe() local 365 pull = update_txdesc(pxmitframe, mem_addr, sz, false); in rtw_dump_xframe() 367 if (pull) { in rtw_dump_xframe() 368 mem_addr += PACKET_OFFSET_SZ; /* pull txdesc head */ in rtw_dump_xframe()
|
/third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/skeletons/ |
H A D | yacc.c | 23 # Check the value of %define api.push-pull. 24 b4_percent_define_default([[api.push-pull]], [[pull]]) 25 b4_percent_define_check_values([[[[api.push-pull]], 26 [[pull]], [[push]], [[both]]]]) 27 b4_define_flag_if([pull]) m4_define([b4_pull_flag], [[1]]) 29 m4_case(b4_percent_define_get([[api.push-pull]]), 30 [pull], [m4_define([b4_push_flag], [[0]])], 242 # (including in pull mode).
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | ASTMetadataHLSL.cpp | 408 PullGradient pull(&metadataList, i, callDag); in CreateASTMetadataHLSL() 409 pull.traverse(callDag.getRecordFromIndex(i).node); in CreateASTMetadataHLSL() 413 // these loops. The same way computing gradient usage is a "pull" process, in CreateASTMetadataHLSL() 418 // First compute which loops are discontinuous (no specific order) and pull in CreateASTMetadataHLSL() 422 PullComputeDiscontinuousAndGradientLoops pull(&metadataList, i, callDag); in CreateASTMetadataHLSL() 423 pull.traverse(callDag.getRecordFromIndex(i).node); in CreateASTMetadataHLSL()
|
/kernel/linux/linux-5.10/arch/arm/mach-omap1/ |
H A D | mux.c | 73 * description mux mode mux pull pull pull pu_pd pu dbg 337 pull_orig = 0, pull = 0; in omap1_cfg_reg() local 362 /* Check for pull up or pull down selection on 1610 */ in omap1_cfg_reg() 372 /* Use pull up */ in omap1_cfg_reg() 377 /* Use pull down */ in omap1_cfg_reg() 385 /* Check for an associated pull down register */ in omap1_cfg_reg() 394 /* Low bit = pull enable in omap1_cfg_reg() [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/gpio/ |
H A D | gpio-sim.sh | 155 local SYSFS_PATH="/sys/devices/platform/$DEVNAME/$CHIPNAME/sim_gpio$OFFSET/pull" 157 echo $PULL > $SYSFS_PATH || fail "Unable to set line pull in sysfs" 160 # Load the gpio-sim module. This will pull in configfs if needed too. 328 sysfs_set_pull chip bank 0 pull-up 330 test "$?" = "1" || fail "pull set incorrectly" 331 sysfs_set_pull chip bank 0 pull-down 333 test "$?" = "0" || fail "pull set incorrectly" 343 SYSFS_PATH=/sys/devices/platform/$DEVNAME/$CHIPNAME/sim_gpio0/pull 344 test `cat $SYSFS_PATH` = "pull-down" || fail "reading the pull faile [all...] |
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_vec4_visitor.cpp | 728 * Emits the instructions needed to perform a pull constant load. before_block 742 vec4_instruction *pull; in emit_pull_constant_load_reg() local 749 pull = MOV(grf_offset, offset_reg); in emit_pull_constant_load_reg() 752 emit_before(before_block, before_inst, pull); in emit_pull_constant_load_reg() 754 emit(pull); in emit_pull_constant_load_reg() 756 pull = new(mem_ctx) vec4_instruction(VS_OPCODE_PULL_CONSTANT_LOAD_GFX7, in emit_pull_constant_load_reg() 760 pull->mlen = 1; in emit_pull_constant_load_reg() 762 pull = new(mem_ctx) vec4_instruction(VS_OPCODE_PULL_CONSTANT_LOAD, in emit_pull_constant_load_reg() 766 pull->base_mrf = FIRST_PULL_LOAD_MRF(devinfo->ver) + 1; in emit_pull_constant_load_reg() 767 pull in emit_pull_constant_load_reg() [all...] |
/kernel/linux/linux-6.6/arch/arm/mach-s3c/ |
H A D | gpio-samsung.c | 41 unsigned int off, samsung_gpio_pull_t pull) in samsung_gpio_setpull_updown() 49 pup |= pull << shift; in samsung_gpio_setpull_updown() 856 unsigned int cfg, samsung_gpio_pull_t pull) in s3c_gpio_cfgall_range() 861 s3c_gpio_setpull(start, pull); in s3c_gpio_cfgall_range() 871 int s3c_gpio_setpull(unsigned int pin, samsung_gpio_pull_t pull) in s3c_gpio_setpull() argument 883 ret = samsung_gpio_do_setpull(chip, offset, pull); in s3c_gpio_setpull() 40 samsung_gpio_setpull_updown(struct samsung_gpio_chip *chip, unsigned int off, samsung_gpio_pull_t pull) samsung_gpio_setpull_updown() argument 855 s3c_gpio_cfgall_range(unsigned int start, unsigned int nr, unsigned int cfg, samsung_gpio_pull_t pull) s3c_gpio_cfgall_range() argument
|
/kernel/linux/linux-5.10/drivers/pinctrl/intel/ |
H A D | pinctrl-baytrail.c | 905 u32 conf, pull, val, debounce; in byt_pin_config_get() local 910 pull = conf & BYT_PULL_ASSIGN_MASK; in byt_pin_config_get() 916 if (pull) in byt_pin_config_get() 921 if ((val & BYT_INPUT_EN) || pull != BYT_PULL_ASSIGN_DOWN) in byt_pin_config_get() 929 if ((val & BYT_INPUT_EN) || pull != BYT_PULL_ASSIGN_UP) in byt_pin_config_get() 1238 const char *pull = NULL; in byt_gpio_dbg_show() local 1278 pull = "up"; in byt_gpio_dbg_show() 1281 pull = "down"; in byt_gpio_dbg_show() 1313 if (pull && pull_str) in byt_gpio_dbg_show() 1314 seq_printf(s, " %-4s %-3s", pull, pull_st in byt_gpio_dbg_show() [all...] |
/kernel/linux/linux-6.6/drivers/pinctrl/intel/ |
H A D | pinctrl-baytrail.c | 844 u32 conf, pull, val, debounce; in byt_pin_config_get() local 849 pull = conf & BYT_PULL_ASSIGN_MASK; in byt_pin_config_get() 855 if (pull) in byt_pin_config_get() 860 if ((val & BYT_INPUT_EN) || pull != BYT_PULL_ASSIGN_DOWN) in byt_pin_config_get() 868 if ((val & BYT_INPUT_EN) || pull != BYT_PULL_ASSIGN_UP) in byt_pin_config_get() 1178 const char *pull = NULL; in byt_gpio_dbg_show() local 1213 pull = "up"; in byt_gpio_dbg_show() 1216 pull = "down"; in byt_gpio_dbg_show() 1248 if (pull && pull_str) in byt_gpio_dbg_show() 1249 seq_printf(s, " %-4s %-3s", pull, pull_st in byt_gpio_dbg_show() [all...] |
/kernel/linux/linux-5.10/drivers/pinctrl/nomadik/ |
H A D | pinctrl-nomadik.c | 51 * bit 16..18 - SLPM pull up/down state 61 * pull up/down = disabled 66 * SLPM pull = same as normal 188 #define PIN_CFG_INPUT(num, alt, pull) \ 190 (PIN_NUM(num) | PIN_##alt | PIN_INPUT_##pull)) 315 unsigned offset, enum nmk_gpio_pull pull) in __nmk_gpio_set_pull() 320 if (pull == NMK_GPIO_PULL_NONE) { in __nmk_gpio_set_pull() 329 if (pull == NMK_GPIO_PULL_UP) { in __nmk_gpio_set_pull() 332 } else if (pull == NMK_GPIO_PULL_DOWN) { in __nmk_gpio_set_pull() 923 bool pull; in nmk_gpio_dbg_show_one() local 314 __nmk_gpio_set_pull(struct nmk_gpio_chip *nmk_chip, unsigned offset, enum nmk_gpio_pull pull) __nmk_gpio_set_pull() argument 1702 int pull, slpm, output, val, i; nmk_pin_config_set() local [all...] |
/kernel/linux/linux-6.6/drivers/pinctrl/nomadik/ |
H A D | pinctrl-nomadik.c | 55 * bit 16..18 - SLPM pull up/down state 65 * pull up/down = disabled 70 * SLPM pull = same as normal 192 #define PIN_CFG_INPUT(num, alt, pull) \ 194 (PIN_NUM(num) | PIN_##alt | PIN_INPUT_##pull)) 318 unsigned offset, enum nmk_gpio_pull pull) in __nmk_gpio_set_pull() 323 if (pull == NMK_GPIO_PULL_NONE) { in __nmk_gpio_set_pull() 332 if (pull == NMK_GPIO_PULL_UP) { in __nmk_gpio_set_pull() 335 } else if (pull == NMK_GPIO_PULL_DOWN) { in __nmk_gpio_set_pull() 923 bool pull; in nmk_gpio_dbg_show_one() local 317 __nmk_gpio_set_pull(struct nmk_gpio_chip *nmk_chip, unsigned offset, enum nmk_gpio_pull pull) __nmk_gpio_set_pull() argument 1711 int pull, slpm, output, val, i; nmk_pin_config_set() local [all...] |
/third_party/jerryscript/targets/mbedos5/jerryscript-mbed/jerryscript-mbed-drivers/source/ |
H A D | InterruptIn-js.cpp | 194 int pull = jerry_get_number_value(args[0]); in DECLARE_CLASS_FUNCTION() local 195 native_ptr->mode((PinMode)pull); in DECLARE_CLASS_FUNCTION()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/enc/ |
H A D | Encoder.java | 126 buffer = encoder.pull(); in encode() 176 ByteBuffer buffer = encoder.pull(); in compress()
|
H A D | EncoderJNI.java | 87 ByteBuffer pull() { in pull() method in EncoderJNI.Wrapper
|
/third_party/skia/third_party/externals/zlib/contrib/tests/ |
H A D | infcover.cc | 15 /* get definition of internal structure so we can mess with it (see pull()), 469 local unsigned pull(void *desc, unsigned char **buf) in pull() function 510 ret = inflateBack(&strm, pull, Z_NULL, push, Z_NULL); in cover_back() 515 ret = inflateBack(&strm, pull, Z_NULL, push, &strm); in cover_back() 518 ret = inflateBack(&strm, pull, &strm, push, Z_NULL); in cover_back() 584 ret = inflateBack(&strm, pull, Z_NULL, push, Z_NULL); 625 try("5 c0 21 d 0 0 0 80 b0 fe 6d 2f 91 6c", "pull 17", 0); in cover_inflate()
|
/third_party/zlib/test/ |
H A D | infcover.c | 14 /* get definition of internal structure so we can mess with it (see pull()), 447 local unsigned pull(void *desc, unsigned char **buf) in pull() function 489 ret = inflateBack(&strm, pull, Z_NULL, push, Z_NULL); in cover_back() 494 ret = inflateBack(&strm, pull, Z_NULL, push, &strm); in cover_back() 497 ret = inflateBack(&strm, pull, &strm, push, Z_NULL); in cover_back() 563 ret = inflateBack(&strm, pull, Z_NULL, push, Z_NULL); in try() 604 try("5 c0 21 d 0 0 0 80 b0 fe 6d 2f 91 6c", "pull 17", 0); in cover_inflate()
|
/kernel/linux/linux-6.6/drivers/gpio/ |
H A D | gpio-sim.c | 38 #define GPIO_SIM_NUM_ATTRS 3 /* value, pull and sentinel */ 242 [0] = "pull-down", 243 [1] = "pull-up", 252 int pull; in gpio_sim_sysfs_pull_show() local 255 pull = !!test_bit(line_attr->offset, chip->pull_map); in gpio_sim_sysfs_pull_show() 257 return sysfs_emit(buf, "%s\n", gpio_sim_sysfs_pull_strings[pull]); in gpio_sim_sysfs_pull_show() 266 int ret, pull; in gpio_sim_sysfs_pull_store() local 268 pull = sysfs_match_string(gpio_sim_sysfs_pull_strings, buf); in gpio_sim_sysfs_pull_store() 269 if (pull < 0) in gpio_sim_sysfs_pull_store() 270 return pull; in gpio_sim_sysfs_pull_store() [all...] |
/kernel/linux/linux-5.10/drivers/pinctrl/freescale/ |
H A D | pinctrl-mxs.h | 35 * pull-up: 6..5 (2) 68 u16 pull; member
|
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.h | 35 * pull-up: 6..5 (2) 68 u16 pull; member
|
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()
|
/third_party/mesa3d/.gitlab-ci/fossils/ |
H A D | fossils.sh | 38 local output=$(git lfs pull -I "$fossil" 2>&1)
|
/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/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...] |