Lines Matching refs:value
232 #define __REV(value) __builtin_bswap32(value) argument
241 #define __REV16(value) __ROR(__REV(value), 16) argument
250 #define __REVSH(value) (int16_t)__builtin_bswap16(value) argument
278 #define __BKPT(value) __ASM volatile ("bkpt "#value) argument
295 __STATIC_FORCEINLINE uint8_t __CLZ(uint32_t value) in __CLZ() argument
306 if (value == 0U) in __CLZ()
310 return __builtin_clz(value); in __CLZ()
425 __STATIC_FORCEINLINE uint32_t __RRX(uint32_t value) in __RRX() argument
429 __ASM volatile ("rrx %0, %1" : __CMSIS_GCC_OUT_REG (result) : __CMSIS_GCC_USE_REG (value) ); in __RRX()
485 __STATIC_FORCEINLINE void __STRBT(uint8_t value, volatile uint8_t *ptr) in __STRBT() argument
487 __ASM volatile ("strbt %1, %0" : "=Q" (*ptr) : "r" ((uint32_t)value) ); in __STRBT()
497 __STATIC_FORCEINLINE void __STRHT(uint16_t value, volatile uint16_t *ptr) in __STRHT() argument
499 __ASM volatile ("strht %1, %0" : "=Q" (*ptr) : "r" ((uint32_t)value) ); in __STRHT()
509 __STATIC_FORCEINLINE void __STRT(uint32_t value, volatile uint32_t *ptr) in __STRT() argument
511 __ASM volatile ("strt %1, %0" : "=Q" (*ptr) : "r" (value) ); in __STRT()
629 __STATIC_FORCEINLINE void __STLB(uint8_t value, volatile uint8_t *ptr) in __STLB() argument
631 __ASM volatile ("stlb %1, %0" : "=Q" (*ptr) : "r" ((uint32_t)value) : "memory" ); in __STLB()
641 __STATIC_FORCEINLINE void __STLH(uint16_t value, volatile uint16_t *ptr) in __STLH() argument
643 __ASM volatile ("stlh %1, %0" : "=Q" (*ptr) : "r" ((uint32_t)value) : "memory" ); in __STLH()
653 __STATIC_FORCEINLINE void __STL(uint32_t value, volatile uint32_t *ptr) in __STL() argument
655 __ASM volatile ("stl %1, %0" : "=Q" (*ptr) : "r" ((uint32_t)value) : "memory" ); in __STL()