| /src/sys/arch/evbppc/nintendo/dev/ |
| hwgpio.c | 47 #define PIN(_num, _name, _caps) \ 54 PIN( 0, "POWER", GPIO_PIN_INPUT), 55 PIN( 1, "SHUTDOWN", GPIO_PIN_OUTPUT), 56 PIN( 2, "FAN", GPIO_PIN_OUTPUT), 57 PIN( 3, "DC_DC", GPIO_PIN_OUTPUT), 58 PIN( 4, "DI_SPIN", GPIO_PIN_OUTPUT), 59 PIN( 5, "SLOT_LED", GPIO_PIN_OUTPUT), 60 PIN( 6, "EJECT_BTN", GPIO_PIN_INPUT), 61 PIN( 7, "SLOT_IN", GPIO_PIN_INPUT), 62 PIN( 8, "SENSOR_BAR", GPIO_PIN_OUTPUT) [all...] |
| /src/external/gpl3/gcc/dist/libgomp/config/gcn/ |
| allocator.c | 112 #define MEMSPACE_ALLOC(MEMSPACE, SIZE, PIN) \ 113 gcn_memspace_alloc (MEMSPACE, ((void)(PIN), (SIZE))) 114 #define MEMSPACE_CALLOC(MEMSPACE, SIZE, PIN) \ 115 gcn_memspace_calloc (MEMSPACE, ((void)(PIN), (SIZE))) 116 #define MEMSPACE_REALLOC(MEMSPACE, ADDR, OLDSIZE, SIZE, OLDPIN, PIN) \ 118 ((void)(PIN), (void)(OLDPIN), (SIZE))) 119 #define MEMSPACE_FREE(MEMSPACE, ADDR, SIZE, PIN) \ 120 gcn_memspace_free (MEMSPACE, ADDR, ((void)(PIN), (SIZE))) 121 #define MEMSPACE_VALIDATE(MEMSPACE, ACCESS, PIN) \ 122 gcn_memspace_validate (MEMSPACE, ((void)(PIN), (ACCESS)) [all...] |
| /src/external/gpl3/gcc/dist/libgomp/config/nvptx/ |
| allocator.c | 126 #define MEMSPACE_ALLOC(MEMSPACE, SIZE, PIN) \ 127 nvptx_memspace_alloc (MEMSPACE, ((void)(PIN), (SIZE))) 128 #define MEMSPACE_CALLOC(MEMSPACE, SIZE, PIN) \ 129 nvptx_memspace_calloc (MEMSPACE, ((void)(PIN), (SIZE))) 130 #define MEMSPACE_REALLOC(MEMSPACE, ADDR, OLDSIZE, SIZE, OLDPIN, PIN) \ 132 ((void)(OLDPIN), (void)(PIN), (SIZE))) 133 #define MEMSPACE_FREE(MEMSPACE, ADDR, SIZE, PIN) \ 134 nvptx_memspace_free (MEMSPACE, ADDR, ((void)(PIN), (SIZE))) 135 #define MEMSPACE_VALIDATE(MEMSPACE, ACCESS, PIN) \ 136 nvptx_memspace_validate (MEMSPACE, ((void)(PIN), (ACCESS)) [all...] |
| /src/external/gpl3/gcc/dist/libgomp/config/linux/ |
| allocator.c | 47 that large allocations don't pin extra pages by being poorly aligned. */ 58 linux_memspace_alloc (omp_memspace_handle_t memspace, size_t size, int pin) 62 if (pin) 74 gomp_debug (0, "libgomp: failed to pin %"PRIu64" bytes of" 77 gomp_debug (0, "libgomp: failed to pin %lu bytes of" 91 linux_memspace_calloc (omp_memspace_handle_t memspace, size_t size, int pin) 93 if (pin) 94 return linux_memspace_alloc (memspace, size, pin); 101 int pin) 105 if (pin) [all...] |
| /src/external/bsd/libfido2/dist/tools/ |
| fido2-unprot.sh | 43 printf "Enter PIN for %s once (ignore further prompts): " "$DEV_PRETTY" 45 IFS= read -r PIN 48 RESIDENT_RPS=$(printf "%s\n" "$PIN" | setsid -w "${FIDO_TOOLS_PREFIX}"fido2-token -L -r "$DEV_PATH" | cut -d' ' -f3) 55 UNPROT_CREDS=$(printf "%s\n" "$PIN" | setsid -w "${FIDO_TOOLS_PREFIX}"fido2-token -L -k "$RESIDENT_RP" "$DEV_PATH" | grep ' uvopt$' | cut -d' ' -f2,3,4)
|
| /src/external/gpl3/gcc/dist/libgomp/ |
| allocator.c | 109 #define MEMSPACE_ALLOC(MEMSPACE, SIZE, PIN) \ 110 (PIN ? NULL : malloc (((void)(MEMSPACE), (SIZE)))) 113 #define MEMSPACE_CALLOC(MEMSPACE, SIZE, PIN) \ 114 (PIN ? NULL : calloc (1, (((void)(MEMSPACE), (SIZE))))) 117 #define MEMSPACE_REALLOC(MEMSPACE, ADDR, OLDSIZE, SIZE, OLDPIN, PIN) \ 118 ((PIN) || (OLDPIN) ? NULL \ 122 #define MEMSPACE_FREE(MEMSPACE, ADDR, SIZE, PIN) \ 123 if (PIN) free (((void)(MEMSPACE), (void)(SIZE), (ADDR))) 126 #define MEMSPACE_VALIDATE(MEMSPACE, ACCESS, PIN) \ 127 (PIN ? 0 : ((void)(MEMSPACE), (void)(ACCESS), 1) [all...] |
| /src/bin/csh/ |
| parse.c | 205 #define PIN 2 430 t->t_dcdr = syn2(p->next, p2, flags | PIN); 581 else if ((flags & PIN) || t->t_dlef)
|
| /src/sys/arch/arm/rockchip/ |
| rk3588_iomux.c | 70 #define PIN(bank, idx) (((bank) * NPINPERBANK) + (idx)) 840 rk3588_iomux_pinname(int pin) 844 int bank = pin / 32; 845 int group = (pin / 8) & 3; 846 int idx = pin & 7; 848 pin, bank, 'A' + group, idx); 854 rk3588_iomux_set_bias(struct rk3588_iomux_softc *sc, int pin, int bias) 872 bus_size_t reg = rk3588_pull_regmap[pin].reg; 873 uint32_t mask = rk3588_pull_regmap[pin].mask; 879 printf("%s: pin=%s bias %s (reg:%08lx -> %08x)\n", __func__ 944 const int pin = PIN(bank, idx); local [all...] |