Home
last modified time | relevance | path

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

/cmsis-dsp-latest/Include/dsp/
Dnone.h68 uint32_t mask = 0x80000000U; in __CLZ() local
70 while ((data & mask) == 0U) in __CLZ()
73 mask = mask >> 1U; in __CLZ()
/cmsis-dsp-latest/dsppp/Include/dsppp/
Dfixed_point.hpp37 uint32_t mask = 0x80000000U; in __CLZ() local
39 while ((data & mask) == 0U) in __CLZ()
42 mask = mask >> 1U; in __CLZ()
/cmsis-dsp-latest/Testing/TestScripts/
DCodeGen.py27 def decodeHex(hexstr,bits,mask): argument
28 value = int(hexstr,16) & mask