/src/common/dist/zlib/test/ |
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) function in typeref:typename:local unsigned 489 ret = inflateBack(&strm, pull, Z_NULL, push, Z_NULL); 494 ret = inflateBack(&strm, pull, Z_NULL, push, &strm); 497 ret = inflateBack(&strm, pull, &strm, push, Z_NULL); 563 ret = inflateBack(&strm, pull, Z_NULL, push, Z_NULL); 604 try("5 c0 21 d 0 0 0 80 b0 fe 6d 2f 91 6c", "pull 17", 0);
|
/src/sys/arch/arm/broadcom/ |
bcm2835_gpio.c | 183 * Optional: brcm,function, brcm,pull 193 const u_int *pull = fdtbus_get_prop(phandle, "brcm,pull", &pull_len); local in function:bcm283x_pinctrl_set_config 198 if (!pull && !func) { 199 aprint_error_dev(dev, "one of brcm,pull or brcm,function must " 209 aprint_error_dev(dev, "brcm,pull must have 1 or %d entries", 226 if (pull) { 227 const int value = be32toh(pull[npull == 1 ? 0 : i]);
|
/src/sys/arch/arm/sunxi/ |
sunxi_gpio.c | 264 uint32_t pull; local in function:sunxi_gpio_setpull 271 pull = GPIO_READ(sc, pull_reg); 272 pull &= ~pull_mask; 274 pull |= __SHIFTIN(SUNXI_GPIO_PULL_UP, pull_mask); 276 pull |= __SHIFTIN(SUNXI_GPIO_PULL_DOWN, pull_mask); 278 pull |= __SHIFTIN(SUNXI_GPIO_PULL_DISABLE, pull_mask); 280 device_printf(sc->sc_dev, "P%c%02d pull %08x -> %08x\n", 281 pin_def->port + 'A', pin_def->pin, GPIO_READ(sc, pull_reg), pull); 283 GPIO_WRITE(sc, pull_reg, pull); 733 u_int pull; local in function:sunxi_pinctrl_parse_bias [all...] |