Home
last modified time | relevance | path

Searched refs:buf_within_nocache (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/drivers/spi/
Dspi_ll_stm32.c930 bool buf_within_nocache = false; in buf_in_nocache() local
934 buf_within_nocache = (buf >= ((uintptr_t)_nocache_ram_start)) && in buf_in_nocache()
936 if (buf_within_nocache) { in buf_in_nocache()
942 buf_within_nocache = mem_attr_check_buf( in buf_in_nocache()
945 return buf_within_nocache; in buf_in_nocache()
/Zephyr-latest/drivers/adc/
Dadc_stm32.c277 bool buf_within_nocache = false; in buf_in_nocache() local
280 buf_within_nocache = (buf >= ((uintptr_t)_nocache_ram_start)) && in buf_in_nocache()
282 if (buf_within_nocache) { in buf_in_nocache()
287 buf_within_nocache = mem_attr_check_buf( in buf_in_nocache()
290 return buf_within_nocache; in buf_in_nocache()
/Zephyr-latest/drivers/serial/
Duart_stm32.c1323 bool buf_within_nocache = false; in buf_in_nocache() local
1326 buf_within_nocache = (buf >= ((uintptr_t)_nocache_ram_start)) && in buf_in_nocache()
1328 if (buf_within_nocache) { in buf_in_nocache()
1333 buf_within_nocache = mem_attr_check_buf( in buf_in_nocache()
1335 if (buf_within_nocache) { in buf_in_nocache()
1339 buf_within_nocache = (buf >= ((uintptr_t)__rodata_region_start)) && in buf_in_nocache()
1342 return buf_within_nocache; in buf_in_nocache()