/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hci/ |
D | hci_vendor.c | 19 if (((NRF_FICR->DEVICEADDR[0] != UINT32_MAX) || in hci_vendor_read_static_addr() 35 if ((NRF_FICR->IR[0] != UINT32_MAX) && in hci_vendor_read_static_addr() 36 (NRF_FICR->IR[1] != UINT32_MAX) && in hci_vendor_read_static_addr() 37 (NRF_FICR->IR[2] != UINT32_MAX) && in hci_vendor_read_static_addr() 38 (NRF_FICR->IR[3] != UINT32_MAX)) { in hci_vendor_read_static_addr() 63 if ((NRF_FICR->ER[0] != UINT32_MAX) && in hci_vendor_read_key_hierarchy_roots() 64 (NRF_FICR->ER[1] != UINT32_MAX) && in hci_vendor_read_key_hierarchy_roots() 65 (NRF_FICR->ER[2] != UINT32_MAX) && in hci_vendor_read_key_hierarchy_roots() 66 (NRF_FICR->ER[3] != UINT32_MAX)) { in hci_vendor_read_key_hierarchy_roots()
|
/Zephyr-latest/tests/unit/math_extras/ |
D | tests.inc | 24 zassert_false(u32_add_overflow(0, UINT32_MAX, &result)); 25 zassert_equal(result, UINT32_MAX); 26 zassert_true(u32_add_overflow(1, UINT32_MAX, &result)); 29 zassert_false(u32_add_overflow(UINT32_MAX, 0, &result)); 30 zassert_equal(result, UINT32_MAX); 31 zassert_true(u32_add_overflow(UINT32_MAX, 2, &result)); 42 zassert_false(u32_mul_overflow(UINT32_MAX, 1, &result)); 43 zassert_equal(result, UINT32_MAX); 44 zassert_true(u32_mul_overflow(UINT32_MAX, 2, &result)); 45 zassert_equal(result, UINT32_MAX * 2); [all …]
|
/Zephyr-latest/drivers/watchdog/ |
D | wdt_opentitan.c | 91 const uint64_t max_window = (uint64_t) UINT32_MAX * 1000 / dev_cfg->clk_freq; in ot_aontimer_install_timeout() 130 if (bark_thold > UINT32_MAX) { in ot_aontimer_install_timeout() 131 bark_thold = UINT32_MAX; in ot_aontimer_install_timeout() 133 if (bite_thold > UINT32_MAX) { in ot_aontimer_install_timeout() 134 bite_thold = UINT32_MAX; in ot_aontimer_install_timeout() 142 if (bite_thold > UINT32_MAX) { in ot_aontimer_install_timeout() 143 bite_thold = UINT32_MAX; in ot_aontimer_install_timeout() 149 sys_write32(UINT32_MAX, reg_base + OT_REG_WDOG_BITE_THOLD_OFFSET); in ot_aontimer_install_timeout() 154 sys_write32(UINT32_MAX, reg_base + OT_REG_WDOG_BARK_THOLD_OFFSET); in ot_aontimer_install_timeout()
|
/Zephyr-latest/tests/kernel/timer/cycle64/src/ |
D | main.c | 37 next &= UINT32_MAX; in timeout() 39 next = UINT32_MAX; in timeout()
|
/Zephyr-latest/drivers/spi/ |
D | spi_nrfx_common.h | 13 #define WAKE_PIN_NOT_USED UINT32_MAX
|
/Zephyr-latest/arch/xtensa/core/ |
D | vector_handlers.c | 72 } else if (ps == UINT32_MAX) { in xtensa_is_outside_stack_bounds() 113 if (xtensa_is_outside_stack_bounds((uintptr_t)frame, sizeof(*frame), UINT32_MAX)) { in xtensa_is_frame_pointer_valid() 121 if (xtensa_is_outside_stack_bounds((uintptr_t)bsa, sizeof(*bsa), UINT32_MAX)) { in xtensa_is_frame_pointer_valid() 243 if (xtensa_is_outside_stack_bounds((uintptr_t)bsa, sizeof(*bsa), UINT32_MAX)) { in print_fatal_exception() 395 if (xtensa_is_outside_stack_bounds((uintptr_t)bsa, sizeof(*bsa), UINT32_MAX)) { in xtensa_excint1_c()
|
D | xtensa_backtrace.c | 58 valid = !xtensa_is_outside_stack_bounds(sp, 0, UINT32_MAX); in xtensa_stack_ptr_is_sane() 82 if (xtensa_is_outside_stack_bounds((uintptr_t)frame->sp, 0, UINT32_MAX)) { in xtensa_backtrace_get_next_frame()
|
/Zephyr-latest/ |
D | Kconfig.constants | 18 UINT32_MAX := 4294967295
|
/Zephyr-latest/subsys/net/l2/ppp/ |
D | Kconfig | 16 range 1 $(UINT32_MAX) 23 range 0 $(UINT32_MAX) 31 range 0 $(UINT32_MAX) 39 range 0 $(UINT32_MAX)
|
/Zephyr-latest/samples/net/lwm2m_client/src/ |
D | temperature.c | 45 v = 20.0 + (double)sys_rand32_get() / UINT32_MAX * 5.0; in temp_work_cb()
|
/Zephyr-latest/include/zephyr/linker/ |
D | linker-devnull.h | 39 #define MAX_ADDR UINT32_MAX
|
/Zephyr-latest/tests/bluetooth/mesh/basic/src/ |
D | main.c | 179 net_buf_simple_add_le32(vnd_pub.msg, UINT32_MAX); in bt_ready() 180 net_buf_simple_add_le32(vnd_pub2.msg, UINT32_MAX); in bt_ready()
|
/Zephyr-latest/soc/nordic/common/ |
D | poweroff.c | 70 nrfx_reset_reason_clear(UINT32_MAX); in z_sys_poweroff()
|
/Zephyr-latest/tests/unit/pot/ |
D | log2.c | 27 zassert_equal(31, LOG2(UINT32_MAX)); in ZTEST()
|
D | log2.cpp | 28 zassert_equal(31, LOG2(UINT32_MAX)); in ZTEST()
|
D | log2ceil.c | 27 zassert_equal(32, LOG2CEIL(UINT32_MAX)); in ZTEST()
|
D | log2ceil.cpp | 32 zassert_equal(32, LOG2CEIL(UINT32_MAX)); in ZTEST()
|
D | nhpot.c | 29 zassert_equal(BIT64(32), NHPOT(UINT32_MAX)); in ZTEST()
|
D | nhpot.cpp | 32 zassert_equal(BIT64(32), NHPOT(UINT32_MAX)); in ZTEST()
|
/Zephyr-latest/drivers/sensor/st/qdec_stm32/ |
D | qdec_stm32.c | 123 max_counter_value = UINT32_MAX - (UINT32_MAX % dev_cfg->counts_per_revolution) - 1; in qdec_stm32_initialize()
|
/Zephyr-latest/subsys/sensing/ |
D | sensor_mgmt.c | 51 uint32_t min_interval = UINT32_MAX; in arbitrate_interval() 68 interval = (min_interval == UINT32_MAX ? 0 : min_interval); in arbitrate_interval() 134 uint32_t min_sensitivity = UINT32_MAX; in arbitrate_sensitivity() 154 return (min_sensitivity == UINT32_MAX ? 0 : min_sensitivity); in arbitrate_sensitivity() 475 *sensitivity = UINT32_MAX; in get_sensitivity()
|
/Zephyr-latest/subsys/modem/backends/ |
D | modem_backend_uart_isr.c | 31 size = ring_buf_put_claim(receive_rb, &buffer, UINT32_MAX); in modem_backend_uart_isr_irq_handler_receive_ready() 41 size = ring_buf_put_claim(receive_rb, &buffer, UINT32_MAX); in modem_backend_uart_isr_irq_handler_receive_ready() 77 size = ring_buf_get_claim(&backend->isr.transmit_rb, &buffer, UINT32_MAX); in modem_backend_uart_isr_irq_handler_transmit_ready()
|
/Zephyr-latest/drivers/virtualization/ |
D | virt_ivshmem.h | 38 #define INTX_IRQ_UNUSED UINT32_MAX
|
/Zephyr-latest/drivers/counter/ |
D | timer_tmr_cmsdk_apb.c | 174 .max_top_value = UINT32_MAX, \ 190 .load = UINT32_MAX, \
|
/Zephyr-latest/soc/microchip/mec/mec172x/ |
D | device_power.c | 77 regs->GIRQ22.SRC = UINT32_MAX; in soc_deep_sleep_non_wake_en() 87 regs->GIRQ22.EN_CLR = UINT32_MAX; in soc_deep_sleep_non_wake_dis() 88 regs->GIRQ22.SRC = UINT32_MAX; in soc_deep_sleep_non_wake_dis()
|