/device/soc/st/stm32f4xx/sdk/Drivers/STM32F4xx_HAL_Driver/Src/ |
D | stm32f4xx_hal_gpio.c | 166 uint32_t position; in HAL_GPIO_Init() local 177 for(position = 0U; position < GPIO_NUMBER; position++) in HAL_GPIO_Init() 180 ioposition = 0x01U << position; in HAL_GPIO_Init() 195 temp &= ~(GPIO_OSPEEDER_OSPEEDR0 << (position * 2U)); in HAL_GPIO_Init() 196 temp |= (GPIO_Init->Speed << (position * 2U)); in HAL_GPIO_Init() 201 temp &= ~(GPIO_OTYPER_OT_0 << position) ; in HAL_GPIO_Init() 202 temp |= (((GPIO_Init->Mode & OUTPUT_TYPE) >> OUTPUT_TYPE_Pos) << position); in HAL_GPIO_Init() 213 temp &= ~(GPIO_PUPDR_PUPDR0 << (position * 2U)); in HAL_GPIO_Init() 214 temp |= ((GPIO_Init->Pull) << (position * 2U)); in HAL_GPIO_Init() 224 temp = GPIOx->AFR[position >> 3U]; in HAL_GPIO_Init() [all …]
|
/device/soc/st/common/platform/stm32mp1xx_hal/STM32MP1xx_HAL_Driver/Src/ |
D | stm32mp1xx_hal_gpio.c | 168 uint32_t position; in HAL_GPIO_Init() local 183 for(position = 0; position < GPIO_NUMBER; position++) in HAL_GPIO_Init() 186 ioposition = ((uint32_t)0x01) << position; in HAL_GPIO_Init() 197 temp = GPIOx->AFR[position >> 3]; in HAL_GPIO_Init() 198 temp &= ~((uint32_t)0xF << ((uint32_t)(position & (uint32_t)0x07) * 4)) ; in HAL_GPIO_Init() 199 temp |= ((uint32_t)(GPIO_Init->Alternate) << (((uint32_t)position & (uint32_t)0x07) * 4)); in HAL_GPIO_Init() 200 GPIOx->AFR[position >> 3] = temp; in HAL_GPIO_Init() 205 temp &= ~(GPIO_MODER_MODER0 << (position * 2)); in HAL_GPIO_Init() 206 temp |= ((GPIO_Init->Mode & GPIO_MODE) << (position * 2)); in HAL_GPIO_Init() 215 temp &= ~(GPIO_OSPEEDR_OSPEEDR0 << (position * 2)); in HAL_GPIO_Init() [all …]
|
/device/board/bearpi/bearpi_hm_nano/app/B5_basic_i2c_nfc/nfc/ |
D | nfc.c | 7 bool storeUrihttp(RecordPosEnu position, uint8_t *http) in storeUrihttp() argument 10 prepareUrihttp(&data, position, http); in storeUrihttp() 14 bool storeText(RecordPosEnu position, uint8_t *text) in storeText() argument 17 prepareText(&data, position, text); in storeText()
|
D | nfc.h | 14 bool storeUrihttp(RecordPosEnu position, uint8_t *http); 24 bool storeText(RecordPosEnu position, uint8_t *text);
|
/device/board/bearpi/bearpi_hm_nano/app/B5_basic_i2c_nfc/nfc/ndef/rtd/ |
D | rtdText.c | 14 void prepareText(NDEFDataStr *data, RecordPosEnu position, uint8_t *text) in prepareText() argument 16 data->ndefPosition = position; in prepareText()
|
D | rtdUri.c | 14 void prepareUrihttp(NDEFDataStr *data, RecordPosEnu position, uint8_t *text) in prepareUrihttp() argument 16 data->ndefPosition = position; in prepareUrihttp()
|
D | rtdText.h | 27 void prepareText(NDEFDataStr *data, RecordPosEnu position, uint8_t *text);
|
D | rtdUri.h | 60 void prepareUrihttp(NDEFDataStr *data, RecordPosEnu position, uint8_t *text);
|
/device/soc/rockchip/rk3588/kernel/drivers/media/i2c/ |
D | dw9763.c | 174 unsigned int position = 0; in dw9763_set_pos() local 178 position = dev_vcm->start_current; in dw9763_set_pos() 180 position = dev_vcm->start_current + in dw9763_set_pos() 183 if (position > DW9763_MAX_REG) in dw9763_set_pos() 184 position = DW9763_MAX_REG; in dw9763_set_pos() 186 dev_vcm->current_lens_pos = position; in dw9763_set_pos() 188 ret = dw9763_write_reg(client, DW9763_DATAM_REG, position & 0x3ff, 2); in dw9763_set_pos() 192 dev_dbg(&client->dev, "@@@@@@@@ %s: get position %d\n", __func__, position); in dw9763_set_pos()
|
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/net/wireless/xr829/umac/ |
D | vht.c | 562 if (!memcmp(mgmt->u.action.u.vht_group_notif.position, in ieee80211_process_mu_groups() 563 bss_conf->mu_group.position, WLAN_USER_POSITION_LEN) && in ieee80211_process_mu_groups() 571 memcpy(bss_conf->mu_group.position, in ieee80211_process_mu_groups() 572 mgmt->u.action.u.vht_group_notif.position, in ieee80211_process_mu_groups() 579 const u8 *membership, const u8 *position) in mac80211_update_mu_groups() argument 587 memcpy(bss_conf->mu_group.position, position, WLAN_USER_POSITION_LEN); in mac80211_update_mu_groups()
|
/device/soc/hpmicro/sdk/hpm_sdk/boards/openocd/soc/ |
D | hpm6750-dual-core.cfg | 11 target create $_TARGET0 riscv -chain-position $_CHIP.cpu -coreid 0 54 target create $_TARGET1 riscv -chain-position $_CHIP.cpu -coreid 1
|
D | hpm6750-single-core.cfg | 9 target create $_TARGET0 riscv -chain-position $_CHIP.cpu -coreid 0
|
D | hpm6360.cfg | 9 target create $_TARGET0 riscv -chain-position $_CHIP.cpu -coreid 0
|
/device/soc/rockchip/common/hardware/display/src/display_device/ |
D | hdi_layer.cpp | 191 int32_t position = y * handle.width + x; in SetPixel() local 192 if ((position * pixelBytes) > handle.size) { in SetPixel() 195 uint32_t *pixel = reinterpret_cast<uint32_t *>(handle.virAddr) + position; in SetPixel()
|
/device/soc/allwinner/t507/hardware/display/src/display_device/ |
D | hdi_layer.cpp | 194 int32_t position = y * handle.width + x; in SetPixel() local 195 if ((position * pixelBytes) > handle.size) { in SetPixel() 198 uint32_t *pixel = reinterpret_cast<uint32_t *>(handle.virAddr) + position; in SetPixel()
|
/device/soc/hisilicon/common/hal/display/source/display_device/src/core/ |
D | hdi_layer.cpp | 194 int32_t position = y * handle.width + x; in SetPixel() local 195 if ((position * pixelBytes) > handle.size) { in SetPixel() 198 uint32_t *pixel = reinterpret_cast<uint32_t *>(handle.virAddr) + position; in SetPixel()
|
/device/soc/nxp/hardware/display/src/display_device/core/ |
D | hdi_layer.cpp | 197 int32_t position = y * handle.width + x; in SetPixel() local 198 if ((position * pixelBytes) > handle.size) { in SetPixel() 201 uint32_t *pixel = reinterpret_cast<uint32_t *>(handle.virAddr) + position; in SetPixel()
|
/device/soc/rockchip/rk3399/hardware/display/src/display_device/ |
D | hdi_layer.cpp | 185 int32_t position = y * handle.width + x; in SetPixel() local 186 if ((position * pixelBytes) > handle.size) { in SetPixel() 189 uint32_t *pixel = reinterpret_cast<uint32_t *>(handle.virAddr) + position; in SetPixel()
|
/device/soc/amlogic/a311d/hardware/display/src/display_device/ |
D | hdi_layer.cpp | 206 int32_t position = y * handle.width + x; in SetPixel() local 207 if ((position * pixelBytes) > handle.size) { in SetPixel() 210 uint32_t *pixel = reinterpret_cast<uint32_t *>(handle.virAddr) + position; in SetPixel()
|
/device/soc/rockchip/rk3568/hardware/display/src/display_device/ |
D | hdi_layer.cpp | 250 int32_t position = y * handle.width + x; in SetPixel() local 251 if ((position * pixelBytes) > handle.size) { in SetPixel() 254 uint32_t *pixel = reinterpret_cast<uint32_t *>(handle.virAddr) + position; in SetPixel()
|
/device/soc/rockchip/rk3588/hardware/display/src/display_device/ |
D | hdi_layer.cpp | 250 int32_t position = y * handle.width + x; in SetPixel() local 251 if ((position * pixelBytes) > handle.size) { in SetPixel() 254 uint32_t *pixel = reinterpret_cast<uint32_t *>(handle.virAddr) + position; in SetPixel()
|
/device/soc/rockchip/rk3566/hardware/display/src/display_device/ |
D | hdi_layer.cpp | 250 int32_t position = y * handle.width + x; in SetPixel() local 251 if ((position * pixelBytes) > handle.size) { in SetPixel() 254 uint32_t *pixel = reinterpret_cast<uint32_t *>(handle.virAddr) + position; in SetPixel()
|
/device/board/unionman/unionpi_tiger/kernel/drivers/isp/drivers/subdev/sensor/inc/api/ |
D | acamera_lens_api.h | 62 void ( *move )( void *ctx, uint16_t position );
|
/device/board/unionman/unionpi_tiger/kernel/drivers/isp/drivers/v4l2_dev/inc/api/ |
D | acamera_lens_api.h | 62 void ( *move )( void *ctx, uint16_t position );
|
/device/board/unionman/unionpi_tiger/kernel/drivers/isp/drivers/subdev/iq/inc/api/ |
D | acamera_lens_api.h | 62 void ( *move )( void *ctx, uint16_t position );
|