| /external/platform/nrfx/drivers/include/ |
| A D | nrfx_nvmc.h | 64 nrfx_err_t nrfx_nvmc_page_erase(uint32_t address); 100 nrfx_err_t nrfx_nvmc_page_partial_erase_init(uint32_t address, uint32_t duration_ms); 141 bool nrfx_nvmc_byte_writable_check(uint32_t address, uint8_t value); 155 void nrfx_nvmc_byte_write(uint32_t address, uint8_t value); 172 bool nrfx_nvmc_halfword_writable_check(uint32_t address, uint16_t value); 186 void nrfx_nvmc_halfword_write(uint32_t address, uint16_t value); 203 bool nrfx_nvmc_word_writable_check(uint32_t address, uint32_t value); 217 void nrfx_nvmc_word_write(uint32_t address, uint32_t value); 232 void nrfx_nvmc_bytes_write(uint32_t address, void const * src, uint32_t num_bytes); 247 void nrfx_nvmc_words_write(uint32_t address, void const * src, uint32_t num_words); [all …]
|
| A D | nrfx_twi.h | 137 uint8_t address; ///< Slave address. member 149 .address = (addr), \ 160 .address = (addr), \ 171 .address = (addr), \ 182 .address = (addr), \
|
| A D | nrfx_twim.h | 149 uint8_t address; ///< Slave address. member 161 .address = (addr), \ 172 .address = (addr), \ 183 .address = (addr), \ 194 .address = (addr), \
|
| /external/platform/cc13xx/cc13xxware/driverlib/ |
| A D | rf_mailbox.h | 315 #define NEW_OVERRIDE_SEGMENT(address) (((((uintptr_t)(address)) & 0x03FFFFFC) << 6) | 0x000F | \ argument 316 (((((uintptr_t)(address) >> 24) == 0x20) ? 0x01 : \ 317 (((uintptr_t)(address) >> 24) == 0x21) ? 0x02 : \ 318 (((uintptr_t)(address) >> 24) == 0xA0) ? 0x03 : \ 319 (((uintptr_t)(address) >> 24) == 0x00) ? 0x04 : \ 320 (((uintptr_t)(address) >> 24) == 0x10) ? 0x05 : \ 321 (((uintptr_t)(address) >> 24) == 0x11) ? 0x06 : \ 322 (((uintptr_t)(address) >> 24) == 0x40) ? 0x07 : \ 323 (((uintptr_t)(address) >> 24) == 0x50) ? 0x08 : \
|
| /external/platform/nrfx/hal/ |
| A D | nrf_acl.h | 73 uint32_t address, 113 uint32_t address, in nrf_acl_region_set() argument 118 NRFX_ASSERT(address % nrf_ficr_codepagesize_get(NRF_FICR) == 0); in nrf_acl_region_set() 123 p_reg->ACL[region_id].ADDR = address; in nrf_acl_region_set()
|
| A D | nrf_twi.h | 281 NRF_STATIC_INLINE void nrf_twi_address_set(NRF_TWI_Type * p_reg, uint8_t address); 432 NRF_STATIC_INLINE void nrf_twi_address_set(NRF_TWI_Type * p_reg, uint8_t address) in nrf_twi_address_set() argument 434 p_reg->ADDRESS = address; in nrf_twi_address_set()
|
| A D | nrf_twim.h | 340 uint8_t address); 566 uint8_t address) in nrf_twim_address_set() argument 568 p_reg->ADDRESS = address; in nrf_twim_address_set()
|
| A D | nrf_radio.h | 630 NRF_STATIC_INLINE void nrf_radio_base0_set(NRF_RADIO_Type * p_reg, uint32_t address); 647 NRF_STATIC_INLINE void nrf_radio_base1_set(NRF_RADIO_Type * p_reg, uint32_t address); 1254 NRF_STATIC_INLINE void nrf_radio_base0_set(NRF_RADIO_Type * p_reg, uint32_t address) in nrf_radio_base0_set() argument 1256 p_reg->BASE0 = address; in nrf_radio_base0_set() 1264 NRF_STATIC_INLINE void nrf_radio_base1_set(NRF_RADIO_Type * p_reg, uint32_t address) in nrf_radio_base1_set() argument 1266 p_reg->BASE1 = address; in nrf_radio_base1_set()
|
| /external/platform/lpc15xx/lpcopen/periph_i2cs_interrupt/example/ |
| A D | readme.dox | 44 * - <START> <ADDR><W> Write 16-bit address <STOP><br> 45 …* - <START> <ADDR><W> Write 16-bit address <REPEAT START><R> READ READ ... READ <STOP> (unbound re… 46 * - <START> <ADDR><W> Write 16-bit address WRITE WRITE ... WRITE <STOP> (unbound write)<br> 48 * Note: Slave address is 0x28.<br> 51 * requests or sends data. If the end of emulated EEPROM is reached, the EEPROM address 53 * 16-bit address will use the last incremented address.<br>
|
| /external/platform/stm32f0xx/STM32F0xx_HAL_Driver/ |
| A D | stm32f0xx_hal_flash_ex.c | 178 uint32_t address = 0U; in HAL_FLASHEx_Erase() local 217 for(address = pEraseInit->PageAddress; in HAL_FLASHEx_Erase() 218 address < ((pEraseInit->NbPages * FLASH_PAGE_SIZE) + pEraseInit->PageAddress); in HAL_FLASHEx_Erase() 219 address += FLASH_PAGE_SIZE) in HAL_FLASHEx_Erase() 221 FLASH_PageErase(address); in HAL_FLASHEx_Erase() 232 *PageError = address; in HAL_FLASHEx_Erase()
|
| A D | stm32f0xx_hal_pcd.c | 628 HAL_StatusTypeDef HAL_PCD_SetAddress(PCD_HandleTypeDef *hpcd, uint8_t address) in HAL_PCD_SetAddress() argument 632 if(address == 0U) in HAL_PCD_SetAddress() 639 hpcd->USB_Address = address; in HAL_PCD_SetAddress()
|
| /external/platform/pico/rp2_common/pico_i2c_slave/ |
| A D | i2c_slave.c | 56 void i2c_slave_init(i2c_inst_t *i2c, uint8_t address, i2c_slave_handler_t handler) { in i2c_slave_init() argument 67 i2c_set_slave_mode(i2c, true, address); in i2c_slave_init()
|
| /external/platform/nrfx/mdk/ |
| A D | iar_startup_nrf51.s | 25 ; The vector table is normally located at address 0. 29 ; table register (VTOR) is initialized to this address if != 0. 125 NRF_POWER_RAMON_ADDRESS EQU 0x40000524 ; NRF_POWER->RAMON address 126 NRF_POWER_RAMONB_ADDRESS EQU 0x40000554 ; NRF_POWER->RAMONB address
|
| A D | arm_startup_nrf51.s | 128 NRF_POWER_RAMON_ADDRESS EQU 0x40000524 ; NRF_POWER->RAMON address 129 NRF_POWER_RAMONB_ADDRESS EQU 0x40000554 ; NRF_POWER->RAMONB address
|
| A D | iar_startup_nrf52805.s | 25 ; The vector table is normally located at address 0. 29 ; table register (VTOR) is initialized to this address if != 0.
|
| A D | iar_startup_nrf5340_network.s | 25 ; The vector table is normally located at address 0. 29 ; table register (VTOR) is initialized to this address if != 0.
|
| A D | iar_startup_nrf52811.s | 25 ; The vector table is normally located at address 0. 29 ; table register (VTOR) is initialized to this address if != 0.
|
| A D | iar_startup_nrf52820.s | 25 ; The vector table is normally located at address 0. 29 ; table register (VTOR) is initialized to this address if != 0.
|
| A D | iar_startup_nrf52.s | 25 ; The vector table is normally located at address 0. 29 ; table register (VTOR) is initialized to this address if != 0.
|
| /external/platform/pico/rp2_common/pico_i2c_slave/include/pico/ |
| A D | i2c_slave.h | 62 void i2c_slave_init(i2c_inst_t *i2c, uint8_t address, i2c_slave_handler_t handler);
|
| /external/lib/fdt/include/ |
| A D | fdt.h | 32 fdt64_t address; member
|
| A D | libfdt.h | 454 int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size); 1611 int fdt_add_mem_rsv(void *fdt, uint64_t address, uint64_t size);
|
| /external/lib/fdt/ |
| A D | fdt_rw.c | 155 int fdt_add_mem_rsv(void *fdt, uint64_t address, uint64_t size) in fdt_add_mem_rsv() argument 167 re->address = cpu_to_fdt64(address); in fdt_add_mem_rsv()
|
| A D | fdt_ro.c | 175 int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size) in fdt_get_mem_rsv() argument 184 *address = fdt64_ld_(&re->address); in fdt_get_mem_rsv()
|
| /external/platform/pico/common/pico_binary_info/include/pico/binary_info/ |
| A D | structure.h | 100 uint32_t address; member
|