Home
last modified time | relevance | path

Searched refs:new_val (Results 1 – 2 of 2) sorted by relevance

/rk3399_ARM-atf/plat/arm/board/tc/
H A Dnv_counter_test.c21 uint32_t new_val; in nv_counter_test() local
46 status = rse_platform_nv_counter_read(id, sizeof(new_val), (uint8_t *)&new_val); in nv_counter_test()
53 if (old_val + 1 != new_val) { in nv_counter_test()
55 old_val, new_val); in nv_counter_test()
/rk3399_ARM-atf/drivers/nxp/ddr/s32cc/
H A Dddr_utils.c34 int64_t new_val; in update_bf() local
37 new_val = (int64_t)bf_val + delta; in update_bf()
40 if ((new_val < 0) || (new_val > (int64_t)mask)) { in update_bf()
44 *v = (*v & ~(mask << pos)) | ((uint32_t)new_val << pos); in update_bf()