Home
last modified time | relevance | path

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

/Zephyr-Core-3.6.0/include/zephyr/sys/
Dutil.h425 int64_t sign_ext; in arithmetic_shift_right() local
432 sign_ext = (value >> 63) & 1; in arithmetic_shift_right()
435 sign_ext = -sign_ext; in arithmetic_shift_right()
438 return (value >> shift) | (sign_ext << (64 - shift)); in arithmetic_shift_right()