Lines Matching refs:this
111 struct hw_rramc_st_t *this = &hw_rramc_st[inst]; in nhw_RRAMC_uicr_init() local
112 this->RRAMC_regs = &NRF_RRAMC_regs[inst]; in nhw_RRAMC_uicr_init()
124 this->rram_start_addr = rram_start_addr[inst]; in nhw_RRAMC_uicr_init()
125 this->rram_size = rram_size[inst]; in nhw_RRAMC_uicr_init()
127 nhw_nvm_init_storage(&this->rram_st, &nvmc_args.rram[inst], in nhw_RRAMC_uicr_init()
128 this->rram_size, "RRAM"); in nhw_RRAMC_uicr_init()
130 this->uicr_size = uicr_size[inst]; in nhw_RRAMC_uicr_init()
131 nhw_nvm_init_storage(&this->uicr_st, &nvmc_args.uicr[inst], in nhw_RRAMC_uicr_init()
132 this->uicr_size, "UICR"); in nhw_RRAMC_uicr_init()
134 NRF_UICR_regs_p[inst] = (NRF_UICR_Type *)this->uicr_st.storage; in nhw_RRAMC_uicr_init()
145 struct hw_rramc_st_t *this = &hw_rramc_st[inst]; in nhw_RRAMC_uicr_clean_up() local
146 nhw_nvm_clear_storage(&this->rram_st); in nhw_RRAMC_uicr_clean_up()
147 nhw_nvm_clear_storage(&this->uicr_st); in nhw_RRAMC_uicr_clean_up()
157 struct hw_rramc_st_t *this = &hw_rramc_st[inst]; in nhw_RRAMC_erase_uicr() local
158 (void)memset(this->uicr_st.storage, 0xFF, this->uicr_st.size); in nhw_RRAMC_erase_uicr()
165 struct hw_rramc_st_t *this = &hw_rramc_st[inst]; in nhw_RRAMC_erase_all() local
167 (void)memset(this->rram_st.storage, 0xFF, this->rram_st.size); in nhw_RRAMC_erase_all()